diff --git a/app/controller/perso.php b/app/controller/perso.php index 5d1c8992b782d4bd76b2f4f739f212f4acff76b7..977db78e4c2421c6a3b1f6d8312ae92f8dbaced1 100644 --- a/app/controller/perso.php +++ b/app/controller/perso.php @@ -30,6 +30,7 @@ class Perso extends Controller $this->get_contreparties($f3); $this->get_dons($f3); $this->get_recurrents($f3); + $this->compute_history($f3); if ($f3->exists('GET.validate')) { $f3->set('modal_counterparts', '1'); $f3->clear('GET.validate'); @@ -84,6 +85,16 @@ class Perso extends Controller $f3->set('dons_recurrents', $dons); } + public function compute_history($f3) + { + $history = array(); + $history = array_merge($f3->get('dons'), $f3->get('dons_recurrents')); + usort($history, function ($a, $b) { + return strtotime($a['datec']) - strtotime($b['datec']); + }); + $f3->set('historique', $history); + } + public function login($f3, $args) { $f3->set('form_visible', 'login'); diff --git a/app/view/user/perso.html b/app/view/user/perso.html index 496af242f516dec3eda739a1aad066e6b31aa465..68c1e2db1bc09cf38ddd3187f71bd0edcac52299 100644 --- a/app/view/user/perso.html +++ b/app/view/user/perso.html @@ -141,7 +141,7 @@ <th>{{ _("Récurent") }}</th> <th>{{ _("Piplome") }}</th> </tr> - <repeat group="{{ @dons_recurrents }}" value="{{ @don }}"> + <repeat group="{{ @historique }}" value="{{ @don }}"> <tr> <td>{{ @don.datec }}</td> <td>{{ @don.somme }}</td> @@ -156,22 +156,6 @@ </td> </tr> </repeat> - <repeat group="{{ @dons }}" value="{{ @don }}"> - <tr> - <td>{{ @don.datec }}</td> - <td>{{ @don.somme }}</td> - <td>{{ _("Non")}}</td> - <td> - <check if="{{ @don.pdf == '' }}"> - <a href="/cron/piplome/{{ @don.id }}">{{ _("Générer") }}</a> - <false> - <a href="{{ PIPLOME_URL }}/{{ @don.pdf }}.pdf" target="_blank">{{ @pdfs[@don.pdf].decimale }}.pdf</a> - </false> - </check> - - </td> - </tr> - </repeat> </table> <table class="table text-left"> <tr> diff --git a/www/static/css/layouts.css b/www/static/css/layouts.css index 7c4af47a83f8916fd95d5bc543320a0cdf701d4d..c24637f6418eee66bee62fc18a9b73c68754daef 100644 --- a/www/static/css/layouts.css +++ b/www/static/css/layouts.css @@ -509,10 +509,6 @@ h4 { color: #3B68B0; } -.panel-body { - height: 100%; -} - .panel-body > div { vertical-align: middle; display: inline-block;