瀏覽代碼

[backend] Distributions : bouton permettant de payer toutes les commandes

refactoring
Guillaume 4 年之前
父節點
當前提交
73aef86eb1
共有 3 個文件被更改,包括 34 次插入1 次删除
  1. +23
    -1
      backend/controllers/CronController.php
  2. +1
    -0
      backend/views/distribution/index.php
  3. +10
    -0
      backend/web/js/vuejs/distribution-index.js

+ 23
- 1
backend/controllers/CronController.php 查看文件

@@ -72,7 +72,12 @@ class CronController extends BackendController
[
'allow' => true,
'roles' => ['?'],
]
],
[
'actions' => ['pay-orders'],
'allow' => true,
'roles' => ['@']
],
],
],
];
@@ -110,6 +115,23 @@ class CronController extends BackendController

}

public function actionPayOrders($date)
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;

if(strlen($date)) {
$this->actionProcessOrders('64ac0bdab7e9f5e48c4d991ec5201d57', $date) ;
}

return [
'return' => 'success',
'alert' => [
'type' => 'success',
'message' => 'Commandes payées.'
]
] ;
}

/**
* Routine quotidienne concernant les commandes : paiement et envoi d'un
* récap aux producteurs.

+ 1
- 0
backend/views/distribution/index.php 查看文件

@@ -259,6 +259,7 @@ $this->setPageTitle('Distributions') ;
<button v-if="tillerIsSynchro" id="btn-tiller" class="btn btn-success btn-xs" disabled><span class="glyphicon glyphicon-refresh"></span> Synchronisé avec Tiller</button>
<button v-else id="btn-tiller" class="btn btn-xs btn-default" @click="synchroTiller"><span class="glyphicon glyphicon-refresh"></span> Synchroniser avec Tiller</button>
</template>
<button v-if="producer.credit" id="btn-pay-orders" class="btn btn-default btn-xs" @click="payOrders"><span class="glyphicon glyphicon-euro"></span> Payer les commandes</button>
<button id="btn-add-order" @click="openModalFormOrderCreate" class="btn btn-xs btn-primary"><span class="glyphicon glyphicon-plus"></span> Ajouter une commande</button>
</div>
<div class="left">

+ 10
- 0
backend/web/js/vuejs/distribution-index.js 查看文件

@@ -506,6 +506,16 @@ var app = new Vue({
},
deliveryNoteExist: function(idPointSale) {
return typeof this.deliveryNotes[this.idActivePointSale] != 'undefined' ;
},
payOrders: function() {
var app = this ;
axios.get(UrlManager.getBaseUrlAbsolute()+"cron/pay-orders",{params: {
date: app.getDate()
}})
.then(function(response) {
appAlerts.alertResponse(response) ;
app.init(app.idActivePointSale) ;
}) ;
}
},
});

Loading…
取消
儲存