vérification sélection taux ; traitement absence signature
FossilOrigin-Name: 47d1b79ff0bdacfe44b328e6b5d537a04e91093f5d7f116f8a77384d5756483e
This commit is contained in:
parent
6d49553ed1
commit
33bb577b34
|
@ -51,6 +51,9 @@
|
|||
<div id="div_taux_reduc" class="tous hidden">
|
||||
<h2>Choisir le taux de réduction</h2>
|
||||
<fieldset>
|
||||
{if $nbTaux == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
||||
{else}
|
||||
{foreach from=$plugin_config->reduction item="reduc"}
|
||||
{if $reduc->valeur == 1}
|
||||
<span class="radio-btn">
|
||||
|
@ -65,6 +68,7 @@
|
|||
</span>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{/if}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
|
@ -78,6 +82,9 @@
|
|||
<div id="liste_activites_tarifs" class="activites hidden">
|
||||
<h2>Choisir les activités et tarifs concernés par les reçus ainsi que le taux de réduction</h2>
|
||||
<fieldset>
|
||||
{if $nbTaux == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
||||
{else}
|
||||
<table class="list">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -133,6 +140,7 @@
|
|||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{/if}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -20,11 +20,10 @@ $totalPersonnes = cumulerVersements($versementsSelectionnes);
|
|||
// générer les reçus
|
||||
$nomAsso = Utils::getNomAsso();
|
||||
$adresseAsso = Utils::getAdresseAsso();
|
||||
|
||||
$signature =
|
||||
(null !== $plugin->getConfig('signature')) ?
|
||||
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||
\Garradin\WWW_URL . "plugin/recusfiscaux/default_signature.png";
|
||||
"";
|
||||
|
||||
// articles du CGI
|
||||
$articlesCGI = array();
|
||||
|
|
|
@ -18,11 +18,10 @@ foreach ($lesLignes as $ligne) {
|
|||
// générer les reçus
|
||||
$nomAsso = Utils::getNomAsso();
|
||||
$adresseAsso = Utils::getAdresseAsso();
|
||||
|
||||
$signature =
|
||||
(null !== $plugin->getConfig('signature')) ?
|
||||
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||
\Garradin\WWW_URL . "plugin/recusfiscaux/default_signature.png";
|
||||
"";
|
||||
|
||||
// articles du CGI
|
||||
$articlesCGI = array();
|
||||
|
|
Loading…
Reference in New Issue