diff --git a/templates/_nav.tpl b/templates/_nav.tpl index e6bcc22..ed9bae6 100644 --- a/templates/_nav.tpl +++ b/templates/_nav.tpl @@ -4,8 +4,8 @@ diff --git a/templates/activites.tpl b/templates/activites.tpl deleted file mode 100644 index fd5f96c..0000000 --- a/templates/activites.tpl +++ /dev/null @@ -1,31 +0,0 @@ - -{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="activites"} - -

Liste des activités, cotisations et comptes associés

- - - - - - - - - - - - - {foreach from=$activitesTarifsComptes item="activite"} - - - - - - - - - {/foreach} - -
NomDescriptionTarifDescriptionN° CompteNom Compte
{$activite.label}{$activite.descService}{$activite.tarif}{$activite.descTarif}{$activite.numero_cpt}{$activite.nom_cpt}
- - -{include file="admin/_foot.tpl"} \ No newline at end of file diff --git a/templates/index.tpl b/templates/index.tpl index b6ef82b..884569c 100644 --- a/templates/index.tpl +++ b/templates/index.tpl @@ -1,54 +1,31 @@ {include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"} -

Liste des versements totaux par personne

- -
- - {* Itération sur les perssonnes *} - - +

Liste des activités, cotisations et comptes associés

+
+ + + + + + + + + + + + {foreach from=$activitesTarifsComptes item="activite"} - - - - - - - + + + + + + - - - {foreach from=$lesVersementsTotaux item="versement"} - - - - - - - - - - {/foreach} - -
NomDescriptionTarifDescriptionN° CompteNom Compte
- - - IdNom PrénomMontantAdresseVilleCode postal{$activite.label}{$activite.descService}{$activite.tarif}{$activite.descTarif}{$activite.numero_cpt}{$activite.nom_cpt}
- {input - type="checkbox" - name="selected[]" - value=$versement.id} - {$versement.id}{$versement.nom}{$versement.montant|raw|money}{$versement.adresse}{$versement.ville}{$versement.codePostal}
- - -
- -{* scripts pour cases à cocher *} - + {/foreach} + + {include file="admin/_foot.tpl"} \ No newline at end of file diff --git a/templates/personne.tpl b/templates/personne.tpl new file mode 100644 index 0000000..8bf6c49 --- /dev/null +++ b/templates/personne.tpl @@ -0,0 +1,54 @@ + +{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="personne"} + +

Liste des versements totaux par personne

+ +
+ + {* Itération sur les perssonnes *} + + + + + + + + + + + + + + {foreach from=$lesVersementsTotaux item="versement"} + + + + + + + + + + {/foreach} + +
+ + + IdNom PrénomMontantAdresseVilleCode postal
+ {input + type="checkbox" + name="selected[]" + value=$versement.id} + {$versement.id}{$versement.nom}{$versement.montant|raw|money}{$versement.adresse}{$versement.ville}{$versement.codePostal}
+ + +
+ +{* scripts pour cases à cocher *} + + + +{include file="admin/_foot.tpl"} \ No newline at end of file diff --git a/www/admin/activites.php b/www/admin/activites.php deleted file mode 100644 index a3b3619..0000000 --- a/www/admin/activites.php +++ /dev/null @@ -1,14 +0,0 @@ -assign('activitesTarifsComptes', $activitesTarifsComptes); - -// envoyer au template -$tpl->display(PLUGIN_ROOT . '/templates/activites.tpl'); diff --git a/www/admin/index.php b/www/admin/index.php index e5aa044..f2302ac 100644 --- a/www/admin/index.php +++ b/www/admin/index.php @@ -4,12 +4,11 @@ namespace Garradin; use Garradin\Plugin\RecusFiscaux\Services; -// liste du total des versements par personne -$_SESSION['lesVersementsTotaux'] = Services::getVersementsTotaux("2021"); +// liste des activités, cotisations et comptes associés +$activitesTarifsComptes = Services::getActivitesTarifsEtComptes(); // préparation de l'affichage -$tpl->assign('lesVersementsTotaux', $_SESSION['lesVersementsTotaux']); -$tpl->assign('plugin_css', ['style.css']); +$tpl->assign('activitesTarifsComptes', $activitesTarifsComptes); // envoyer au template $tpl->display(PLUGIN_ROOT . '/templates/index.tpl'); diff --git a/www/admin/personne.php b/www/admin/personne.php new file mode 100644 index 0000000..04452c5 --- /dev/null +++ b/www/admin/personne.php @@ -0,0 +1,15 @@ +assign('lesVersementsTotaux', $_SESSION['lesVersementsTotaux']); +$tpl->assign('plugin_css', ['style.css']); + +// envoyer au template +$tpl->display(PLUGIN_ROOT . '/templates/personne.tpl');