From 7ca3306c6f8122d4e6687ab1fea68acd04fb95ac Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Tue, 3 Jan 2023 01:19:38 +0100 Subject: [PATCH] Fix: cacher quantite illimite dans les contenants --- templates/actor/commerce-inventaire-item.html | 5 +++-- templates/actor/commerce-inventaire.html | 9 +++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/templates/actor/commerce-inventaire-item.html b/templates/actor/commerce-inventaire-item.html index 09a281c4..ce23067e 100644 --- a/templates/actor/commerce-inventaire-item.html +++ b/templates/actor/commerce-inventaire-item.html @@ -12,7 +12,8 @@ {{item.name}} - {{#unless @root.system.illimite}} + {{log 'item-inventaire' this}} + {{#unless item.parent.system.illimite}} {{#unless (or (eq item.type 'service') (and (eq item.type 'conteneur') (not vide)))}} {{#if @root.options.isOwner}} @@ -35,7 +36,7 @@ {{#if @root.options.isOwner}} - {{#if (or @root.system.illimite (ne item.system.quantite 0))}} + {{#if (or item.parent.system.illimite (ne item.system.quantite 0))}} {{/if}} {{/if}} diff --git a/templates/actor/commerce-inventaire.html b/templates/actor/commerce-inventaire.html index 0cff801e..934560f8 100644 --- a/templates/actor/commerce-inventaire.html +++ b/templates/actor/commerce-inventaire.html @@ -5,7 +5,7 @@ Tout vider {{/if}} - {{#unless @root.system.illimite}} + {{#unless system.illimite}} {{#if calc.surEncombrementMessage}}{{calc.surEncombrementMessage}} ‐{{/if}} Encombrement: {{numberFormat calc.encTotal decimals=2}} {{#if (regle-optionnelle 'afficher-prix-joueurs')}} @@ -16,7 +16,7 @@