From b19bc68d22da052d4aa99442a04417445277450e Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Mon, 14 Jun 2021 23:46:57 +0200 Subject: [PATCH] Fix: Bouton prendre/acheter selon prix --- templates/chat-vente-item.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/chat-vente-item.html b/templates/chat-vente-item.html index 04ef2f24..c4774436 100644 --- a/templates/chat-vente-item.html +++ b/templates/chat-vente-item.html @@ -17,7 +17,7 @@ {{#if (gt tailleLot 1)}} Lots de: {{tailleLot}}
{{/if}} - {{#if prixLot}} + {{#if (ne prixLot 0)}} Prix {{#if (gt tailleLot 1)}}du lot {{else}}unitaire{{/if}}: {{prixLot}} Sols
{{/if}} @@ -31,6 +31,6 @@ data-quantiteNbLots="{{quantiteNbLots}}" data-quantiteIllimite="{{#if quantiteIllimite}}true{{else}}false{{/if}}" data-prixLot="{{prixLot}}"> - {{#if prixLot}}Acheter{{else}}Prendre{{/if}} + {{#if (eq prixLot 0)}}Prendre{{else}}Acheter{{/if}}