|
|
@@ -376,7 +376,7 @@ $producer = GlobalParam::getCurrentProducer() ; |
|
|
|
</div> |
|
|
|
|
|
|
|
<template v-if="!checkCreditLimit(order) && pointSaleActive.credit_functioning == 'mandatory'"> |
|
|
|
<div class="alert alert-danger">Vous devez <a href="<?= Yii::$app->urlManager->createUrl(['credit/add']) ?>">recharger votre crédit</a> ou supprimer des produits. Votre producteur n'autorise pas un crédit inférieur à <strong>{{ formatPrice(creditLimit) }}</strong>.</div> |
|
|
|
<div class="alert alert-danger">Vous devez <a href="<?= Yii::$app->urlManager->createUrl(['credit/add']) ?>">recharger votre crédit</a> ou supprimer des produits. Votre producteur n'autorise pas un crédit inférieur à <strong>{{ formatPrice(producer.credit_limit) }}</strong>.</div> |
|
|
|
|
|
|
|
<div class="block-actions"> |
|
|
|
<a class="btn btn-primary" href="<?= Yii::$app->urlManager->createUrl(['site/index']) ?>">Retour à l'accueil</a> |
|
|
@@ -393,7 +393,7 @@ $producer = GlobalParam::getCurrentProducer() ; |
|
|
|
<span v-if="checkCreditLimit(order)">{{ priceTotal(true) }} seront débités</span> |
|
|
|
<span v-else> |
|
|
|
{{ formatPrice(user.credit) }} seront débités. (Limite de crédit à {{ formatPrice(producer.credit_limit) }})<br /> |
|
|
|
Restera {{ formatPrice(priceTotal() - credit) }} à régler. |
|
|
|
Restera {{ formatPrice(priceTotal() - user.credit) }} à régler. |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
<template v-else-if="order != null && order.amount_paid > 0 && order.amount_paid < priceTotal()"> |