Explorar el Código

[backend] Distribution : correction bug ajout commande (paramètre meanPayment non défini)

refactoring
Guillaume Bourgeois hace 4 años
padre
commit
663949e6cd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      backend/controllers/OrderController.php

+ 2
- 2
backend/controllers/OrderController.php Ver fichero

@@ -810,7 +810,7 @@ class OrderController extends BackendController
* @param string $processCredit
*/
public function actionAjaxCreate(
$date, $idPointSale, $idUser, $username, $meanPayment, $products, $comment, $processCredit = 0)
$date, $idPointSale, $idUser, $username, $meanPayment = '', $products, $comment, $processCredit = 0)
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
@@ -891,7 +891,7 @@ class OrderController extends BackendController
* @param string $comment
*/
public function actionAjaxUpdate(
$date, $idOrder, $idPointSale, $idUser, $username, $meanPayment, $products, $comment = '', $processCredit = 0)
$date, $idOrder, $idPointSale, $idUser, $username, $meanPayment = '', $products, $comment = '', $processCredit = 0)
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;

Cargando…
Cancelar
Guardar