The mandate has been created.
The mandate has been submitted to the banks, and should become active in a few days, unless the bank declines the request.
The mandate has been successfully set up by the customer's bank.
| /* bling.js */ | |
| window.$ = document.querySelectorAll.bind(document) | |
| Node.prototype.on = window.on = function (name, fn) { | |
| this.addEventListener(name, fn) | |
| } | |
| NodeList.prototype.__proto__ = Array.prototype |
| <?php | |
| // Get everyone's "last subscription invoice" for people who've paid in the last year | |
| $sql = "SELECT i1.vatrate, i1.username | |
| FROM invoices i1 | |
| LEFT JOIN invoices i2 ON (i1.username = i2.username AND i1.id < i2.id) | |
| WHERE i2.id IS NULL | |
| AND i1.datestamp > '2014-04-01' | |
| AND i1.type IN ('sub','subpayment','upgrade','resubscription') | |
| ORDER BY i1.vatrate DESC"; |
| -[ ] test |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |