simplification affichage

FossilOrigin-Name: 442ad95644cd0884b83bfeefd06cc54b77cbce877b564ee96ba0ea4748aa8591
This commit is contained in:
engel 2022-04-27 13:56:04 +00:00
parent c51bc9a97f
commit 55d2ce0cbb
3 changed files with 5 additions and 7 deletions

View File

@ -101,8 +101,8 @@
de configuration</h3 {/if} {if $nbTaux > 0 && $nbChamps > 0} <table class="list"> de configuration</h3 {/if} {if $nbTaux > 0 && $nbChamps > 0} <table class="list">
<thead> <thead>
<tr> <tr>
<th>Cocher</th>
<th>Activité et Tarif</th> <th>Activité et Tarif</th>
<th>Cocher</th>
<th>Taux de réduction</th> <th>Taux de réduction</th>
<th>Caractéristiques activité</th> <th>Caractéristiques activité</th>
<th>N° et Compte</th> <th>N° et Compte</th>
@ -111,6 +111,9 @@
<tbody> <tbody>
{foreach from=$activitesTarifsComptes item="activite"} {foreach from=$activitesTarifsComptes item="activite"}
<tr> <tr>
<td>
<span>{$activite.titreActivite} - {$activite.titreTarif}</span>
</td>
<td> <td>
{if $nbTarifs == 1} {if $nbTarifs == 1}
{input {input
@ -127,9 +130,6 @@
} }
{/if} {/if}
</td> </td>
<td>
<span>{$activite.titreActivite} - {$activite.titreTarif}</span>
</td>
<td> <td>
{foreach from=$plugin_config->reduction item="reduc"} {foreach from=$plugin_config->reduction item="reduc"}
{if $reduc->valeur == 1} {if $reduc->valeur == 1}

View File

@ -18,7 +18,7 @@
{* Itération sur les personnes *} {* Itération sur les personnes *}
<?php $rang = 0; ?> <?php $rang = 0; ?>
{foreach from=$lesVersements key="i" item="versement"} {foreach from=$lesVersements item="versement"}
{if $rang == 0} {if $rang == 0}
{* 1ère personne *} {* 1ère personne *}
<?php <?php

View File

@ -89,8 +89,6 @@ $tpl->register_function('afficher_debut_personne', function ($params)
$out .= sprintf(' $out .= sprintf('
<fieldset class="versements" id="versements_%s">', <fieldset class="versements" id="versements_%s">',
$idVersement); $idVersement);
// $out .= '<br />
// <hr>';
return $out; return $out;
}); });