Compare commits
No commits in common. "674157c925ec2b0402a841f0680290169821a58e" and "e75c56b7366f50e4f0f07569c897e6a299ab87a8" have entirely different histories.
674157c925
...
e75c56b736
@ -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,6 +9,8 @@
|
|||||||
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">
|
||||||
@ -116,6 +118,7 @@
|
|||||||
</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" target="_dialog" id="versements_activites">
|
<form method="post" 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" target="_dialog" id="versements_personnes">
|
<form method="post" 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,10 +9,6 @@ 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,7 +67,6 @@ $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