Browse Source

[Espace producteur] Commande : problème paiement avec crédit (montant commande incorrecte) #1075

feature/souke
Guillaume Bourgeois 1 year ago
parent
commit
e8a292f8e7
3 changed files with 5 additions and 3 deletions
  1. +1
    -1
      backend/controllers/DistributionController.php
  2. +3
    -1
      producer/views/order/order.php
  3. +1
    -1
      producer/web/js/vuejs/order-order.js

+ 1
- 1
backend/controllers/DistributionController.php View File

{ {
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON; \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$userManager = $this->getUserManager(); $userManager = $this->getUserManager();
$user = $userManager->findOneUserById($idUser); $user = $userManager->findOneUserById($idUser);
$idFavoritePointSale = 0; $idFavoritePointSale = 0;



+ 3
- 1
producer/views/order/order.php View File

<template v-if="producer.online_payment == 1"><a href="<?= \Yii::$app->urlManager->createUrl(['credit/add']) ?>">recharger votre crédit</a></template> <template v-if="producer.online_payment == 1"><a href="<?= \Yii::$app->urlManager->createUrl(['credit/add']) ?>">recharger votre crédit</a></template>
<template v-else>recharger votre crédit</template> auprès de votre producteur ou supprimer des produits.</span> <template v-else>recharger votre crédit</template> auprès de votre producteur ou supprimer des produits.</span>
Votre producteur n'autorise pas un crédit inférieur Votre producteur n'autorise pas un crédit inférieur
à <strong>{{ formatPrice(producer.credit_limit) }}</strong>.</div>
à <strong>{{ formatPrice(producer.credit_limit) }}</strong>.
/ {{ priceTotal() }}
</div>
<div class="block-actions"> <div class="block-actions">
<a class="btn btn-primary" href="<?= \Yii::$app->urlManager->createUrl(['site/index']) ?>">Retour à l'accueil</a> <a class="btn btn-primary" href="<?= \Yii::$app->urlManager->createUrl(['site/index']) ?>">Retour à l'accueil</a>
</div> </div>

+ 1
- 1
producer/web/js/vuejs/order-order.js View File

return this.formatPrice(price) ; return this.formatPrice(price) ;
} }
else { else {
return price ;
return numberDecimals(price, 2) ;
} }
}, },
productHasPrice: function(product) { productHasPrice: function(product) {

Loading…
Cancel
Save