1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
This commit is contained in:
Sylvain 2021-03-30 16:57:09 +02:00
parent 83cfa710e1
commit 1d42fa8781

View File

@ -1082,7 +1082,7 @@ Application.Controllers.controller('AvoirModalController', ['$scope', '$uibModal
* Kind of constructor: these actions will be realized first when the controller is loaded
*/
const initialize = function () {
// if the invoice was payed with stripe, allow to refund through stripe
// if the invoice was paid with stripe, allow refunding through stripe
Invoice.get({ id: invoice.id }, function (data) {
$scope.invoice = data;
// default : all elements of the invoice are refund
@ -1316,7 +1316,7 @@ Application.Controllers.controller('AccountingExportModalController', ['$scope',
* Kind of constructor: these actions will be realized first when the controller is loaded
*/
const initialize = function () {
// if the invoice was payed with stripe, allow to refund through stripe
// Get info about the very first invoice on the system
Invoice.first(function (data) {
$scope.firstInvoice = data.date;
$scope.exportTarget.startDate = data.date;