Bladeren bron

[Adminsitration] Distributions : info remboursement commandes lors de la désactivation d'une distribution #1058

feature/souke
Guillaume Bourgeois 1 jaar geleden
bovenliggende
commit
ec917126e1
1 gewijzigde bestanden met toevoegingen van 27 en 2 verwijderingen
  1. +27
    -2
      backend/web/js/vuejs/distribution-index.js

+ 27
- 2
backend/web/js/vuejs/distribution-index.js Bestand weergeven

@@ -322,26 +322,51 @@ var app = new Vue({
},
activeDistribution: function(event) {
var app = this ;
var active = parseInt(event.currentTarget.getAttribute('data-active'));

axios.get("ajax-process-active-distribution",{params: {
idDistribution: this.distribution.id,
active: event.currentTarget.getAttribute('data-active')
active: active
}})
.then(function(response) {
app.init() ;
app.alertsActiveDistribution(active, 'Distribution');
}) ;
},
activeWeekDistribution: function(event) {
var app = this ;
var active = parseInt(event.currentTarget.getAttribute('data-active'));

axios.get("ajax-process-active-week-distribution",{params: {
date: this.date.getFullYear() + '-'
+ ('0' + (this.date.getMonth() +1)).slice(-2) + '-'
+ ('0' + this.date.getDate()).slice(-2),
active: event.currentTarget.getAttribute('data-active')
active: active
}})
.then(function(response) {
app.init() ;
app.alertsActiveDistribution(active, 'Semaine de distribution');
}) ;
},
alertsActiveDistribution: function(active, label) {
if(!active) {
appAlerts.alert(
'success',
label+' désactivée.',
) ;
appAlerts.alert(
'info',
'Pensez à bien rembourser les clients qui auraient passé commande en utilisant leur crédit.',
6000
);
}
else {
appAlerts.alert(
'success',
label+' activée.',
) ;
}
},
pointSaleClick: function(event) {
this.setIdActivePointSale(event.currentTarget.getAttribute('data-id-point-sale')) ;
},

Laden…
Annuleren
Opslaan