109 lines
3.7 KiB
PHP
109 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace Garradin;
|
|
|
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
|
|
|
// vérifier si l'année a bien été sélectionnée au préalable
|
|
$_SESSION['annee_recu'] = f('annee_recu');
|
|
if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
|
|
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
|
}
|
|
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
|
|
|
|
// champs pour le nom et prénom
|
|
$confNoms = Utils::getChampsNom($config, $plugin);
|
|
uasort($confNoms, function ($a, $b)
|
|
{
|
|
return $a->position - $b->position;
|
|
});
|
|
$champsNom = array();
|
|
foreach ($confNoms as $nom => $champ)
|
|
{
|
|
if ($champ->position != 0) { $champsNom[] = $nom; }
|
|
}
|
|
|
|
// versements par personne
|
|
$_SESSION['lesVersements'] = Utils::getVersementsPersonnes($_SESSION['annee_recu'],
|
|
$champsNom);
|
|
|
|
// membres donateurs
|
|
$_SESSION['membresDonateurs'] = Utils::getDonateurs($_SESSION['annee_recu'],
|
|
$champsNom);
|
|
// ------------------------------------------------------------------------
|
|
// fonctions pour l'affichage
|
|
|
|
// Afficher les informations d'une personne
|
|
$tpl->register_function('afficher_debut_personne', function ($params)
|
|
{
|
|
$versement = $params['versement'];
|
|
$idUser = $versement->idUser;
|
|
$personne = $_SESSION['membresDonateurs'][$idUser];
|
|
$idVersement = $versement->idUser;
|
|
$out = '<details class="personne" open="open">
|
|
<summary class="personne">';
|
|
$out .= sprintf('<h4 class="personne">Versements de %s : <span id="total_%s">0,00 €</span></h4>',
|
|
$personne->nomPrenom,
|
|
$idVersement);
|
|
$out .= '</summary>';
|
|
$out .= sprintf('
|
|
<fieldset class="versements" id="versements_%s">',
|
|
$idVersement);
|
|
$out .= sprintf('
|
|
<input type="checkbox" id="check_%s"',
|
|
$idVersement);
|
|
$out .= sprintf(' onclick="cocherDecocherPersonne(check_%s, total_%s)" />',
|
|
$idVersement,
|
|
$idVersement);
|
|
$out .= sprintf('
|
|
<label for="check_%s">Cliquer pour cocher toutes les lignes</label>',
|
|
$idVersement);
|
|
$out .= '<br />
|
|
<hr>';
|
|
return $out;
|
|
});
|
|
|
|
// afficher un versement
|
|
$tpl->register_function('afficher_versement', function ($params)
|
|
{
|
|
$versement = $params['versement'];
|
|
$rang = $params['rang'];
|
|
$idVersement = $versement->idUser;
|
|
$out = '<div class="';
|
|
$out .= ($rang%2==0) ? 'pair">' : 'impair">';
|
|
$out .= sprintf('
|
|
<input type="checkbox"
|
|
class="check_%s"
|
|
id="check_%s_%s"
|
|
name="selected[]"
|
|
value="%s"
|
|
onclick="cocherDecocherVersement(check_%s_%s, total_%s)" />',
|
|
$idVersement,
|
|
$idVersement, $rang,
|
|
$rang,
|
|
$idVersement, $rang, $idVersement
|
|
);
|
|
$out .= sprintf('
|
|
<label for="check_%s_%s"></label>',
|
|
$idVersement, $rang
|
|
);
|
|
$out .= sprintf('
|
|
<span class="montant">%.2f</span>',
|
|
$versement->versement/100
|
|
);
|
|
$out .= sprintf('
|
|
<span>%s</span>
|
|
</div>',
|
|
date_format(date_create($versement->date),"d/m/Y"));
|
|
return $out;
|
|
});
|
|
// ------------------------------------------------------------------------
|
|
|
|
// préparation de l'affichage
|
|
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
|
$tpl->assign('plugin_css', ['style.css']);
|
|
|
|
// envoyer au template
|
|
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');
|