Compare commits
4 Commits
e75c56b736
...
674157c925
Author | SHA1 | Date | |
---|---|---|---|
|
674157c925 | ||
|
2b2c2ebcc9 | ||
|
f524ebdc0f | ||
|
e6470bd2e9 |
@ -4,7 +4,7 @@
|
|||||||
<nav class="acc-year">
|
<nav class="acc-year">
|
||||||
<h4>Année fiscale sélectionnée :</h4>
|
<h4>Année fiscale sélectionnée :</h4>
|
||||||
<h3>{$annee_recu}</h3>
|
<h3>{$annee_recu}</h3>
|
||||||
<footer>{linkbutton label="Changer d'année fiscale" href="%s/choix_annee.php?from=%s"|args:PLUGIN_URL,rawurlencode($self_url) shape="settings"}</footer>
|
<footer>{linkbutton label="Changer d'année fiscale" href="%s/choix_annee.php?from=%s"|args:$plugin_url,rawurlencode($self_url) shape="settings"}</footer>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<form id="formulaire_saisie" method="post" action="action.php">
|
<form id="formulaire_saisie" method="post" action="action.php">
|
||||||
|
@ -9,8 +9,6 @@
|
|||||||
if ($numero_sequentiel) { $numero_courant = $numero_sequentiel; }
|
if ($numero_sequentiel) { $numero_courant = $numero_sequentiel; }
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="global" onload="changerStyle(this.document)">
|
|
||||||
|
|
||||||
{* Itération sur les personnes *}
|
{* Itération sur les personnes *}
|
||||||
{foreach from=$totalPersonnes key="idPersonne" item="personne"}
|
{foreach from=$totalPersonnes key="idPersonne" item="personne"}
|
||||||
<div class="previs_recu">
|
<div class="previs_recu">
|
||||||
@ -118,7 +116,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/foreach} {* Itération sur les personnes *}
|
{/foreach} {* Itération sur les personnes *}
|
||||||
<div>
|
|
||||||
|
|
||||||
{* scripts divers *}
|
{* scripts divers *}
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<form method="post" id="versements_activites">
|
<form method="post" target="_dialog" id="versements_activites">
|
||||||
|
|
||||||
{* Itération sur les versements *}
|
{* Itération sur les versements *}
|
||||||
{foreach from=$lesVersements key="rang" item="versement"}
|
{foreach from=$lesVersements key="rang" item="versement"}
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<form method="post" id="versements_personnes">
|
<form method="post" target="_dialog" id="versements_personnes">
|
||||||
|
|
||||||
{* Itération sur les personnes *}
|
{* Itération sur les personnes *}
|
||||||
{foreach from=$lesVersements key="rang" item="versement"}
|
{foreach from=$lesVersements key="rang" item="versement"}
|
||||||
|
@ -9,6 +9,10 @@ use Garradin\UserTemplate\UserTemplate;
|
|||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
|
// forcer mode dialog pour ouvrir le squelette des reçus dans un nouvel onglet
|
||||||
|
// à combiner avec target="_blank" ou target="_dialog" dans le fichier tpl
|
||||||
|
$_GET['_dialog'] = true;
|
||||||
|
|
||||||
// signature
|
// signature
|
||||||
$signature =
|
$signature =
|
||||||
(null !== $plugin->getConfig('signature')) ?
|
(null !== $plugin->getConfig('signature')) ?
|
||||||
|
@ -67,6 +67,7 @@ $tpl->assign('plugin_config', $plugin->getConfig());
|
|||||||
$tpl->assign('nbTaux', $nbTaux);
|
$tpl->assign('nbTaux', $nbTaux);
|
||||||
$tpl->assign('nbChamps', $nbChamps);
|
$tpl->assign('nbChamps', $nbChamps);
|
||||||
$tpl->assign('plugin_css', ['style.css']);
|
$tpl->assign('plugin_css', ['style.css']);
|
||||||
|
$tpl->assign('plugin_url', \Garradin\Utils::plugin_url());
|
||||||
|
|
||||||
// envoyer au template
|
// envoyer au template
|
||||||
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
||||||
|
Loading…
Reference in New Issue
Block a user