Show event status in payment administration.
[platal.git] / modules / payment.php
CommitLineData
a2558f2b 1<?php
2/***************************************************************************
5e1513f6 3 * Copyright (C) 2003-2011 Polytechnique.org *
a2558f2b 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22/* sort en affichant une erreur */
3ed6d317 23function cb_erreur($text, $conf_title="") {
115c90db 24 global $globals;
7380801f 25 echo "Error: ".$text."\n";
1e33266a 26 $mymail = new PlMailer();
d7dd70be 27 $mymail->addTo($globals->money->email);
1d55fe45 28 $mymail->setFrom("webmaster@" . $globals->mail->domain);
a7de4ef7 29 $mymail->setSubject("erreur lors d'un télépaiement (CyberPaiement)");
fe5ccad9 30 $content = "raison de l'erreur : " . $text . "\n";
3ed6d317
AL
31 if ($conf_title != "") {
32 $content = $content."paiement : ".$conf_title."\n";
33 }
fe5ccad9 34 $content = $content . "dump de REQUEST :\n" . var_export($_REQUEST, true);
3ed6d317 35 $mymail->setTxtBody($content);
a2558f2b 36 $mymail->send();
9d773172 37 echo "Notification sent.\n";
a2558f2b 38 exit;
39}
40
41/* sort en affichant une erreur */
88e3843c 42function paypal_erreur($text, $send=true)
43{
d7610c35 44 global $erreur, $globals;
a2558f2b 45 if ($erreur) return;
46 $erreur = $text;
47 if (!$send) return;
48
1e33266a 49 $mymail = new PlMailer();
d7dd70be 50 $mymail->addTo($globals->money->email);
1d55fe45 51 $mymail->setFrom("webmaster@" . $globals->mail->domain);
a7de4ef7 52 $mymail->setSubject("erreur lors d'un télépaiement (PayPal)");
21a261d7
AL
53 $mymail->setTxtBody("raison de l'erreur : ".$text."\n".
54 "paiement : $conf_title \n\n".
55 "dump de REQUEST :\n".
56 var_export($_REQUEST,true));
a2558f2b 57 $mymail->send();
58
d7610c35 59 Platal::page()->trigError($text);
a2558f2b 60}
61
62/* http://fr.wikipedia.org/wiki/Formule_de_Luhn */
63function luhn($nombre) {
64 $s = strrev($nombre);
65 $sum = 0;
f5e965ca 66 for ($i = 0; $i < strlen($s); ++$i) {
9d773172 67 $dgt = $s{$i};
f5e965ca 68 $sum += ($i % 2) ? (2 * $dgt) % 9 : $dgt;
a2558f2b 69 }
70 return $sum % 10;
71}
72
a7de4ef7 73/* calcule la clé d'acceptation a partir de 5 champs */
f5e965ca 74function cle_accept($d1, $d2, $d3, $d4, $d5)
a2558f2b 75{
f5e965ca
SJ
76 $m1 = luhn($d1 . $d5);
77 $m2 = luhn($d2 . $d5);
78 $m3 = luhn($d3 . $d5);
79 $m4 = luhn($d4 . $d5);
a2558f2b 80 $n = $m1 + $m2 + $m3 + $m4;
f5e965ca
SJ
81 $alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
82 return $alpha{$n-1} . $m1 . $m2 . $m3 . $m4;
a2558f2b 83}
84
17793ccf
FB
85/* decode the comment */
86function comment_decode($comment) {
87 $comment = urldecode($comment);
88 if (is_utf8($comment)) {
89 return $comment;
90 } else {
91 return utf8_encode($comment);
92 }
93}
94
f56ceafe
DB
95/* check if a RIB account number is valid */
96function check_rib($rib)
97{
f3d6e2cc 98 if(strlen($rib) != 23) return false;
f5e965ca 99
f56ceafe
DB
100 // extract fields
101 $rib = strtr(strtoupper($rib),'ABCDEFGHIJKLMNOPQRSTUVWXYZ','12345678912345678923456789');
f3d6e2cc
DB
102 $bank = substr($rib,0,5);
103 $counter = substr($rib,5,5);
104 $account = substr($rib,10,11);
105 $key = substr($rib,21,2);
f5e965ca 106
f56ceafe 107 // check
f5e965ca 108 return (0 == fmod(89 * $bank + 15 * $counter + 3 * $account + $key, 97));
f56ceafe 109}
a2558f2b 110
111class PaymentModule extends PLModule
112{
113 function handlers()
114 {
115 return array(
6643b3f0 116 'payment' => $this->make_hook('payment', AUTH_PUBLIC, 'user'),
19ec6c8a
SJ
117 'payment/cyber2_return' => $this->make_hook('cyber2_return', AUTH_PUBLIC, 'user', NO_HTTPS),
118 'payment/paypal_return' => $this->make_hook('paypal_return', AUTH_PUBLIC, 'user', NO_HTTPS),
5f85dbd3
SJ
119 '%grp/paiement' => $this->make_hook('xnet_payment', AUTH_PUBLIC, 'user'),
120 '%grp/payment' => $this->make_hook('xnet_payment', AUTH_PUBLIC, 'user'),
bfe9f4c7 121 '%grp/payment/csv' => $this->make_hook('payment_csv', AUTH_PASSWD, 'groupadmin'),
f5e965ca
SJ
122 '%grp/payment/cyber2_return' => $this->make_hook('cyber2_return', AUTH_PUBLIC, 'user', NO_HTTPS),
123 '%grp/payment/paypal_return' => $this->make_hook('paypal_return', AUTH_PUBLIC, 'user', NO_HTTPS),
bfe9f4c7
SJ
124 'admin/payments' => $this->make_hook('admin', AUTH_PASSWD, 'admin'),
125 'admin/payments/methods' => $this->make_hook('adm_methods', AUTH_PASSWD, 'admin'),
126 'admin/payments/transactions' => $this->make_hook('adm_transactions', AUTH_PASSWD, 'admin'),
127 'admin/reconcile' => $this->make_hook('adm_reconcile', AUTH_PASSWD, 'admin'),
128 'admin/reconcile/importlogs' => $this->make_hook('adm_importlogs', AUTH_PASSWD, 'admin'),
129 'admin/reconcile/transfers' => $this->make_hook('adm_transfers', AUTH_PASSWD, 'admin'),
130 'admin/reconcile/bankaccounts' => $this->make_hook('adm_bankaccounts', AUTH_PASSWD, 'admin'),
a2558f2b 131 );
132 }
133
19ec6c8a 134 function handler_payment($page, $ref = -1)
a2558f2b 135 {
19ec6c8a
SJ
136 $page->changeTpl('payment/payment.tpl');
137 $page->setTitle('Télépaiement');
6643b3f0 138 $this->load('money.inc.php');
a2558f2b 139
5e2307dc 140 $meth = new PayMethod(Env::i('methode', -1));
19ec6c8a
SJ
141 $pay = new Payment($ref);
142
6643b3f0
SJ
143 if (!$pay->flags->hasflag('public') && (!S::user() || !S::logged())) {
144 $page->kill("Vous n'avez pas les permissions nécessaires pour accéder à cette page.");
145 } else {
146 $page->assign('public', true);
147 }
148
149 if ($pay->flags->hasflag('old')) {
19ec6c8a
SJ
150 $page->kill('La transaction selectionnée est périmée.');
151 }
a2558f2b 152
13f1431d
BG
153 if (Env::has('montant')) {
154 $pay->amount_def = Env::v('montant');
155 }
75d4576e 156 $val = (Post::v('amount') != 0) ? Post::v('amount') : $pay->amount_def;
a2558f2b 157
75d4576e
SJ
158 if (($error = $pay->check($val)) !== true) {
159 $page->trigError($error);
a2558f2b 160 }
161
75d4576e 162 if (Post::has('op') && Post::v('op', 'select') == 'submit') {
6643b3f0
SJ
163 if (S::logged()) {
164 $user = S::user();
165 } else {
166 $user = User::getSilent(Post::t('login'));
167 }
168
169 if (is_null($user)) {
170 $page->trigError("L'identifiant est erroné.");
171 $page->assign('login_error', true);
172 $page->assign('login', Post::t('login'));
173 } else {
174 $pay->init($val, $meth);
175 $pay->prepareform($user);
40cab3b7 176 $page->assign('full_name', $user->fullName(true));
6643b3f0
SJ
177 $page->assign('sex', $user->isFemale());
178 }
179 } elseif (S::logged()) {
a7c0d514 180 $res = XDB::iterator('SELECT ts_confirmed, amount
69fffc4b 181 FROM payment_transactions
8a7fab54 182 WHERE uid = {?} AND ref = {?}
a7c0d514 183 ORDER BY ts_confirmed DESC',
75d4576e 184 S::v('uid', -1), $pay->id);
a2558f2b 185
f5e965ca
SJ
186 if ($res->total()) {
187 $page->assign('transactions', $res);
188 }
069dfa8e 189
19ec6c8a
SJ
190 // Only if $id = -1, meaning only for donation the site's association
191 if ($ref == -1) {
192 $biggest_donations = XDB::fetchAllAssoc('SELECT IF(p.display,
193 IF(ap.pid IS NOT NULL, CONCAT(a.full_name, \' (\', pd.promo, \')\'), a.full_name),
194 \'XXXX\') AS name, p.amount, p.ts_confirmed
195 FROM payment_transactions AS p
196 INNER JOIN accounts AS a ON (a.uid = p.uid)
197 LEFT JOIN account_profiles AS ap ON (a.uid = ap.uid AND FIND_IN_SET(\'owner\', ap.perms))
198 LEFT JOIN profile_display AS pd ON (ap.pid = pd.pid)
199 WHERE p.ref = {?}
200 ORDER BY LENGTH(p.amount) DESC, p.amount DESC, name
201 LIMIT 10',
202 $pay->id);
203
204 $donations = XDB::fetchAllAssoc('(SELECT SUM(amount) AS amount, YEAR(ts_confirmed) AS year, MONTH(ts_confirmed) AS month, ts_confirmed
205 FROM payment_transactions
206 WHERE ref = {?} AND YEAR(ts_confirmed) = YEAR(CURDATE())
207 GROUP BY month)
208 UNION
209 (SELECT SUM(amount) AS amount, YEAR(ts_confirmed) AS year, 0 AS month, ts_confirmed
210 FROM payment_transactions
211 WHERE ref = {?} AND YEAR(ts_confirmed) < YEAR(CURDATE())
212 GROUP BY year)
213 ORDER BY year DESC, month DESC',
214 $pay->id, $pay->id);
215
216 $page->assign('biggest_donations', $biggest_donations);
217 $page->assign('donations', $donations);
218 $page->assign('donation', true);
219 }
a2558f2b 220 }
221
75d4576e
SJ
222 $val = floor($val * 100) / 100;
223 $page->assign('amount', $val);
f5e965ca 224 $page->assign('comment', Env::v('comment'));
a2558f2b 225
226 $page->assign('meth', $meth);
f5e965ca 227 $page->assign('pay', $pay);
19ec6c8a 228 $page->assign('evtlink', $pay->event());
a2558f2b 229 }
230
26ba053e 231 function handler_cyber2_return($page, $uid = null)
a690a74c
DB
232 {
233 global $globals, $platal;
aab2ffdd 234
a690a74c
DB
235 /* on vérifie la signature */
236 $vads_params = array();
237 foreach($_REQUEST as $key => $value)
f5e965ca 238 if(substr($key,0,5) == 'vads_') {
9d773172 239 $vads_params[$key] = $value;
f5e965ca 240 }
a690a74c 241 ksort($vads_params);
f5e965ca 242 $signature = sha1(join('+', $vads_params) . '+' . $globals->money->cyperplus_key);
a690a74c
DB
243 //if($signature != Env::v('signature')) {
244 // cb_erreur("signature invalide");
245 //}
aab2ffdd 246
a690a74c 247 /* on extrait les informations sur l'utilisateur */
ba0fd7f8 248 $user = User::get(Env::i('vads_cust_id'));
a690a74c
DB
249 if (!$user) {
250 cb_erreur("uid invalide");
251 }
252
253 /* on extrait la reference de la commande */
254 if (!ereg('-([0-9]+)$', Env::v('vads_order_id'), $matches)) {
255 cb_erreur("référence de commande invalide");
256 }
257
9d773172 258 $ref = $matches[1];
f5e965ca 259 $res = XDB::query('SELECT mail, text, confirmation
a690a74c 260 FROM payments
f336915b 261 WHERE id={?}', $ref);
781c92a2 262 if ($res->numRows() != 1) {
a690a74c
DB
263 cb_erreur("référence de commande inconnue");
264 }
781c92a2 265 list($conf_mail, $conf_title, $conf_text) = $res->fetchOneRow();
aab2ffdd 266
a690a74c 267 /* on extrait le montant */
f5e965ca 268 if (Env::v('vads_currency') != '978') {
a690a74c
DB
269 cb_erreur("monnaie autre que l'euro");
270 }
a7c0d514 271 $montant = ((float)Env::i('vads_amount')) / 100;
a690a74c
DB
272
273 /* on extrait le code de retour */
f5e965ca 274 if (Env::v('vads_result') != '00') {
3ed6d317 275 cb_erreur('erreur lors du paiement : ?? (' . Env::v('vads_result') . ')', $conf_title);
a690a74c 276 }
aab2ffdd 277
a690a74c 278 /* on fait l'insertion en base de donnees */
a7c0d514
DB
279 XDB::execute('INSERT INTO payment_transactions (id, method_id, uid, ref, fullref, ts_confirmed, amount, pkey, comment, status, display)
280 VALUES ({?}, 2, {?}, {?}, {?}, NOW(), {?}, {?}, {?}, "confirmed", {?})',
fbb196fa 281 Env::v('vads_trans_date'), $user->id(), $ref, Env::v('vads_order_id'), $montant, '', Env::v('vads_order_info'), Env::i('vads_order_info2'));
a7c0d514 282 echo "Payment stored.\n";
aab2ffdd 283
a690a74c 284 // We check if it is an Xnet payment and then update the related ML.
6848fb7e 285 $res = XDB::query('SELECT eid, asso_id
a690a74c
DB
286 FROM group_events
287 WHERE paiement_id = {?}', $ref);
781c92a2 288 if ($res->numRows() == 1) {
6848fb7e 289 list($eid, $asso_id) = $res->fetchOneRow();
a690a74c 290 require_once dirname(__FILE__) . '/xnetevents/xnetevents.inc.php';
6848fb7e 291 $evt = get_event_detail($eid, false, $asso_id);
c9e710ff 292 subscribe_lists_event($user->id(), $evt['short_name'], 1, $montant, true);
a690a74c
DB
293 }
294
295 /* on genere le mail de confirmation */
296 $conf_text = str_replace(
781c92a2 297 array('<prenom>', '<nom>', '<promo>', '<montant>', '<salutation>', '<cher>', '<comment>'),
a690a74c
DB
298 array($user->firstName(), $user->lastName(), $user->promo(), $montant,
299 $user->isFemale() ? 'Chère' : 'Cher', $user->isFemale() ? 'Chère' : 'Cher',
9170f4f9 300 Env::v('vads_order_info')), $conf_text);
a690a74c
DB
301
302 global $globals;
303 $mymail = new PlMailer();
304 $mymail->setFrom($conf_mail);
305 $mymail->addCc($conf_mail);
306 $mymail->setSubject($conf_title);
307 $mymail->setWikiBody($conf_text);
308 $mymail->sendTo($user);
309
310 /* on envoie les details de la transaction à telepaiement@ */
311 $mymail = new PlMailer();
312 $mymail->setFrom("webmaster@" . $globals->mail->domain);
313 $mymail->addTo($globals->money->email);
314 $mymail->setSubject($conf_title);
315 $msg = 'utilisateur : ' . $user->login() . ' (' . $user->id() . ')' . "\n" .
316 'mail : ' . $user->forlifeEmail() . "\n\n" .
317 "paiement : $conf_title ($conf_mail)\n".
9d773172 318 "reference : " . Env::v('vads_order_id') . "\n".
a690a74c
DB
319 "montant : $montant\n\n".
320 "dump de REQUEST:\n".
321 var_export($_REQUEST,true);
322 $mymail->setTxtBody($msg);
323 $mymail->send();
9d773172 324 echo "Notifications sent.\n";
a690a74c
DB
325 exit;
326 }
327
26ba053e 328 function handler_paypal_return($page, $uid = null)
a2558f2b 329 {
da157660 330 $page->changeTpl('payment/retour_paypal.tpl');
a2558f2b 331
332 /* reference banque (numero de transaction) */
7280eb45 333 $no_transaction = Env::s('tx');
a2558f2b 334 /* token a renvoyer pour avoir plus d'information */
7280eb45 335 $clef = Env::s('sig');
a2558f2b 336 /* code retour */
7280eb45 337 $status = Env::s('st');
a2558f2b 338 /* raison */
f5e965ca 339 $reason = ($status == 'Pending') ? Env::s('pending_reason') : Env::s('reason_code');
a2558f2b 340 /* reference complete de la commande */
7280eb45 341 $fullref = Env::s('cm');
a2558f2b 342 /* montant de la transaction */
a7c0d514 343 $montant = Env::s('amt');
a2558f2b 344 /* devise */
a7c0d514
DB
345 if (Env::s('cc') != 'EUR') {
346 cb_erreur("monnaie autre que l'euro");
347 }
a2558f2b 348
349 /* on extrait le code de retour */
350 if ($status != "Completed") {
f5e965ca 351 if ($status) {
a2558f2b 352 paypal_erreur("erreur lors du paiement : $status - $reason");
f5e965ca 353 } else {
a7de4ef7 354 paypal_erreur("Paiement annulé", false);
f5e965ca 355 }
a2558f2b 356 }
357
358 /* on extrait les informations sur l'utilisateur */
1eaaa62d
FB
359 $user = User::get($uid);
360 if (!$user) {
a2558f2b 361 paypal_erreur("uid invalide");
362 }
363
364 /* on extrait la reference de la commande */
1eaaa62d 365 if (!ereg('-xorg-([0-9]+)$', $fullref, $matches)) {
a7de4ef7 366 paypal_erreur("référence de commande invalide");
a2558f2b 367 }
368
369 $ref = $matches[1];
f5e965ca 370 $res = XDB::query('SELECT mail, text, confirmation
69fffc4b 371 FROM payments
f5e965ca
SJ
372 WHERE id = {?}', $ref);
373 if (!list($conf_mail, $conf_title, $conf_text) = $res->fetchOneRow()) {
374 paypal_erreur('référence de commande inconnue');
a2558f2b 375 }
376
377 /* on fait l'insertion en base de donnees */
a7c0d514
DB
378 XDB::execute("INSERT INTO payment_transactions (id, method_id, uid, ref, fullref, ts_confirmed, amount, pkey, comment, status, display)
379 VALUES ({?}, 1, {?}, {?}, {?}, NOW(), {?}, {?}, {?}, 'confirmed', {?})",
fbb196fa 380 $no_transaction, $user->id(), $ref, $fullref, $montant, $clef, Env::v('comment'), Get::i('display'));
a2558f2b 381
9ff5b337 382 // We check if it is an Xnet payment and then update the related ML.
c9e710ff 383 $res = XDB::query('SELECT eid, asso_id
eb41eda9 384 FROM group_events
9ff5b337 385 WHERE paiement_id = {?}', $ref);
c9e710ff
SJ
386 if ($res->numRows() == 1) {
387 list($eid, $asso_id) = $res->fetchOneRow();
fd03857b 388 require_once dirname(__FILE__) . '/xnetevents/xnetevents.inc.php';
c9e710ff 389 $evt = get_event_detail($eid, false, $asso_id);
7852229b 390 subscribe_lists_event($user->id(), $evt['short_name'], 1, $montant, true);
9ff5b337
SJ
391 }
392
a2558f2b 393 /* on genere le mail de confirmation */
fb25f6a6 394 $conf_text = str_replace(array('<prenom>', '<nom>', '<promo>', '<montant>', '<salutation>', '<cher>', '<comment>'),
1eaaa62d 395 array($user->firstName(), $user->lastName(), $user->promo(), $montant,
fb25f6a6
SJ
396 $user->isFemale() ? 'Chère' : 'Cher', $user->isFemale() ? 'Chère' : 'Cher',
397 Env::v('comment')), $conf_text);
a2558f2b 398
7895f3c1 399 global $globals;
1e33266a 400 $mymail = new PlMailer();
a2558f2b 401 $mymail->setFrom($conf_mail);
a2558f2b 402 $mymail->addCc($conf_mail);
403 $mymail->setSubject($conf_title);
88e3843c 404 $mymail->setWikiBody($conf_text);
1eaaa62d 405 $mymail->sendTo($user);
a2558f2b 406
a7de4ef7 407 /* on envoie les details de la transaction à telepaiement@ */
1e33266a 408 $mymail = new PlMailer();
1d55fe45 409 $mymail->setFrom("webmaster@" . $globals->mail->domain);
d7dd70be 410 $mymail->addTo($globals->money->email);
a2558f2b 411 $mymail->setSubject($conf_title);
1eaaa62d
FB
412 $msg = 'utilisateur : ' . $user->login() . ' (' . $user->id() . ')' . "\n" .
413 'mail : ' . $user->forlifeEmail() . "\n\n" .
a2558f2b 414 "paiement : $conf_title ($conf_mail)\n".
1eaaa62d 415 "reference : $champ200\n".
a2558f2b 416 "montant : $montant\n\n".
417 "dump de REQUEST:\n".
418 var_export($_REQUEST,true);
419 $mymail->setTxtBody($msg);
420 $mymail->send();
421
422 $page->assign('texte', $conf_text);
423 $page->assign('erreur', $erreur);
a2558f2b 424 }
98a7e9dc 425
26ba053e 426 function handler_xnet_payment($page, $pid = null)
98a7e9dc 427 {
428 global $globals;
eaf30d86 429
45a5307b 430 $perms = S::v('perms');
5f85dbd3 431 if (!(S::identified() && $perms->hasFlag('groupmember'))) {
45a5307b
FB
432 if (is_null($pid)) {
433 return PL_FORBIDDEN;
434 }
435 $res = XDB::query("SELECT 1
eb41eda9 436 FROM group_events AS e
86668a58 437 INNER JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
45a5307b
FB
438 WHERE e.paiement_id = {?} AND e.asso_id = {?}",
439 S::i('uid'), $pid, $globals->asso('id'));
5f85dbd3
SJ
440 $public = XDB::query("SELECT 1
441 FROM payments AS p
442 INNER JOIN group_events AS g ON (g.paiement_id = p.id)
443 WHERE g.asso_id = {?} AND p.id = {?} AND FIND_IN_SET('public', p.flags)",
444 $globals->asso('id'), $pid);
445 if ($res->numRows() == 0 && $public->numRows() == 0) {
45a5307b
FB
446 return PL_FORBIDDEN;
447 }
448 }
449
98a7e9dc 450 if (!is_null($pid)) {
451 return $this->handler_payment($page, $pid);
452 }
1490093c 453 $page->changeTpl('payment/xnet.tpl');
eaf30d86 454
98a7e9dc 455 $res = XDB::query(
456 "SELECT id, text, url
a690a74c 457 FROM payments
010268b2 458 WHERE asso_id = {?} AND NOT FIND_IN_SET('old', flags)
98a7e9dc 459 ORDER BY id DESC", $globals->asso('id'));
460 $tit = $res->fetchAllAssoc();
af387c4b 461 $page->assign('titles', $tit);
98a7e9dc 462
98a7e9dc 463 $trans = array();
464 $event = array();
af387c4b 465 if (may_update()) {
7088a2a5 466 static $orders = array('ts_confirmed' => 'p', 'directory_name' => 'a', 'promo' => 'pd', 'comment' => 'p', 'amount' => 'p');
af387c4b
SJ
467
468 if (Get::has('order_id') && Get::has('order') && array_key_exists(Get::v('order'), $orders)) {
469 $order_id = Get::i('order_id');
470 $order = Get::v('order');
471 $ordering = ' ORDER BY ' . $orders[$order] . '.' . $order;
472 if (Get::has('order_inv') && Get::i('order_inv') == 1) {
473 $ordering .= ' DESC';
474 $page->assign('order_inv', 0);
475 } else {
476 $page->assign('order_inv', 1);
477 }
478 $page->assign('order_id', $order_id);
479 $page->assign('order', $order);
741d92e9 480 $page->assign('anchor', 'legend_' . $order_id);
af387c4b
SJ
481 } else {
482 $order_id = false;
483 $ordering = '';
484 $page->assign('order', false);
485 }
486 } else {
487 $ordering = '';
488 $page->assign('order', false);
489 }
98a7e9dc 490 foreach($tit as $foo) {
491 $pid = $foo['id'];
492 if (may_update()) {
a7c0d514 493 $res = XDB::query('SELECT p.uid, IF(p.ts_confirmed = \'0000-00-00\', 0, p.ts_confirmed) AS date, p.comment, p.amount
af387c4b
SJ
494 FROM payment_transactions AS p
495 INNER JOIN accounts AS a ON (a.uid = p.uid)
496 LEFT JOIN account_profiles AS ap ON (ap.uid = p.uid AND FIND_IN_SET(\'owner\', ap.perms))
497 LEFT JOIN profile_display AS pd ON (ap.pid = pd.pid)
498 WHERE p.ref = {?}' . (($order_id == $pid) ? $ordering : ''),
499 $pid);
1eaaa62d
FB
500 $trans[$pid] = User::getBulkUsersWithUIDs($res->fetchAllAssoc(), 'uid', 'user');
501 $sum = 0;
502 foreach ($trans[$pid] as $i => $t) {
a7c0d514
DB
503 $sum += $t['amount'];
504 $trans[$pid][$i]['amount'] = $t['amount'];
1eaaa62d 505 }
f5e965ca 506 $trans[$pid][] = array('limit' => true,
a7c0d514 507 'amount' => $sum);
98a7e9dc 508 }
f5e965ca
SJ
509 $res = XDB::iterRow("SELECT e.eid, e.short_name, e.intitule, ep.nb, ei.montant, ep.paid
510 FROM group_events AS e
511 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
512 INNER JOIN group_event_items AS ei ON (ep.eid = ei.eid AND ep.item_id = ei.item_id)
513 WHERE e.paiement_id = {?}",
514 S::v('uid'), $pid);
98a7e9dc 515 $event[$pid] = array();
516 $event[$pid]['paid'] = 0;
517 if ($res->total()) {
518 $event[$pid]['topay'] = 0;
519 while(list($eid, $shortname, $title, $nb, $montant, $paid) = $res->next()) {
520 $event[$pid]['topay'] += ($nb * $montant);
521 $event[$pid]['eid'] = $eid;
522 $event[$pid]['shortname'] = $shortname;
523 $event[$pid]['title'] = $title;
524 $event[$pid]['ins'] = !is_null($nb);
525 $event[$pid]['paid'] = $paid;
526 }
527 }
a7c0d514 528 $res = XDB::query('SELECT SUM(amount) AS sum_amount
f5e965ca 529 FROM payment_transactions
e7d5bad7 530 WHERE ref = {?} AND uid = {?}', $pid, S::v('uid'));
a7c0d514 531 $event[$pid]['paid'] = $res->fetchOneCell();
98a7e9dc 532 }
17793ccf 533 $page->register_modifier('decode_comment', 'decode_comment');
98a7e9dc 534 $page->assign('trans', $trans);
535 $page->assign('event', $event);
536 }
eaf30d86 537
4294dc6c
SJ
538 function handler_payment_csv($page, $pid = null)
539 {
540 if (is_null($pid)) {
541 pl_redirect('payment');
542 }
543 if (substr($pid, -4) == '.vcf') {
544 $pid = substr($pid, 0, strlen($pid) - 4);
545 }
546
a7c0d514 547 $res = XDB::fetchAllAssoc('SELECT uid, IF(ts_confirmed = \'0000-00-00\', 0, ts_confirmed) AS date, comment, amount
4294dc6c
SJ
548 FROM payment_transactions
549 WHERE ref = {?}
a7c0d514 550 ORDER BY ts_confirmed',
4294dc6c
SJ
551 $pid);
552 if (is_null($res)) {
553 pl_redirect('payment');
554 }
555
556 $users = User::getBulkUsersWithUIDs($res, 'uid', 'user');
557 $sum = 0;
558
ee923b43 559 pl_cached_content_headers('text/x-csv', 'iso-8859-1', 1);
4294dc6c 560 $csv = fopen('php://output', 'w');
ee923b43 561 fputcsv($csv, array('Date', 'Nom', utf8_decode('Prénom'), 'Sexe', 'Promotion', 'Email', 'Commentaire', 'Montant'), ';');
4294dc6c
SJ
562 foreach ($users as $item) {
563 $user = $item['user'];
a7c0d514 564 $sum += $item['amount'];
ee923b43 565 fputcsv($csv, array(format_datetime($item['date'], '%d/%m/%y'), utf8_decode($user->lastName()), utf8_decode($user->firstName()),
4294dc6c 566 ($user->isFemale()) ? 'F' : 'M', $user->promo(), $user->ForlifeEmail(),
ee923b43 567 utf8_decode($item['comment']), strtr($item['amount'], '.', ',') . ' EUR' ), ';');
4294dc6c 568 }
ee923b43 569 fputcsv($csv, array(date('d/m/y'), 'Total', '', '', '' , '', '', strtr($sum, '.', ',') . ' EUR'), ';');
4294dc6c
SJ
570
571 fclose($csv);
572 exit;
573 }
574
26ba053e 575 function handler_admin($page, $action = 'list', $id = null) {
46f272fe 576 $page->setTitle('Administration - Paiements');
a7de4ef7 577 $page->assign('title', 'Gestion des télépaiements');
69fffc4b 578 $table_editor = new PLTableEditor('admin/payments','payments','id');
f56ceafe 579 //$table_editor->add_join_table('payment_transactions','ref',true); => on ne supprime jamais une transaction
2e7b5921 580 $table_editor->add_sort_field('flags');
de61dbcf 581 $table_editor->add_sort_field('id', true, true);
69fffc4b 582 $table_editor->on_delete("UPDATE payments SET flags = 'old' WHERE id = {?}", "Le paiement a été archivé");
f5e965ca 583 $table_editor->describe('text', 'intitulé', true);
47f51789
RB
584 $table_editor->describe('url', 'site web', false, true);
585 $table_editor->describe('amount_def', 'montant par défaut', false, true);
586 $table_editor->describe('amount_min', 'montant minimum', false, true);
587 $table_editor->describe('amount_max', 'montant maximum', false, true);
f5e965ca 588 $table_editor->describe('mail', 'email contact', true);
47f51789 589 $table_editor->describe('confirmation', 'message confirmation', false, true);
9c966750
PC
590
591 // adds a column with the start date of the linked event if there is one
f5e965ca 592 $table_editor->add_option_table('group_events', 'group_events.paiement_id = t.id');
e9a46d1a 593 $table_editor->add_option_field('group_events.archive', 'related_event', 'évènement archivé ?', 'tinyint');
9c966750 594
92423144 595 $table_editor->apply($page, $action, $id);
eaf30d86 596 }
f5e965ca 597
26ba053e 598 function handler_adm_transactions($page, $payment_id = null, $action = "list", $id = null) {
f56ceafe
DB
599 // show transactions. FIXME: should not be modifiable
600 $page->setTitle('Administration - Paiements - Transactions');
601 $page->assign('title', "Liste des transactions pour le paiement {$payment_id}");
f5e965ca 602
f56ceafe
DB
603 if ($payment_id == null)
604 $page->trigError("Aucun ID de paiement fourni.");
f5e965ca 605
f56ceafe
DB
606 $table_editor = new PLTableEditor("admin/transactions/{$payment_id}",'payment_transactions','id');
607 $table_editor->set_where_clause(XDB::format('ref = {?}', $payment_id));
608 $table_editor->apply($page, 'list', $id); // only the 'list' action is allowed
f5e965ca 609 $page->assign('readonly', 'readonly'); // don't show modification features
f56ceafe 610 }
f5e965ca 611
26ba053e 612 function handler_adm_bankaccounts($page, $action = "list", $id = null) {
f56ceafe
DB
613 // managment of bank account used for money transfert
614 $page->setTitle('Administration - Paiements - RIBs');
615 $page->assign('title', "Liste des RIBs");
f5e965ca
SJ
616
617 $table_editor = new PLTableEditor('admin/payments/bankaccounts', 'payment_bankaccounts', 'id');
47f51789 618 $table_editor->describe('asso_id', 'ID du groupe', false, false);
f5e965ca
SJ
619 $table_editor->describe('owner', 'titulaire', true);
620 $table_editor->add_option_table('groups', 'groups.id = t.asso_id');
f56ceafe 621 $table_editor->add_option_field('groups.diminutif', 'group_name', 'groupe', 'varchar','account');
f5e965ca 622
f56ceafe 623 // check RIB key
f5e965ca 624 if ($action == 'update' && Post::has('account') && !check_rib(Post::v('account'))) {
f56ceafe 625 $page->trigError("Le RIB n'est pas valide");
f5e965ca 626 $table_editor->apply($page, 'edit', $id);
f56ceafe
DB
627 return;
628 }
f5e965ca 629
f56ceafe
DB
630 $table_editor->apply($page, $action, $id);
631 }
f5e965ca 632
26ba053e 633 function handler_adm_methods($page, $action = "list", $id = null) {
f56ceafe
DB
634 // show and edit payment methods
635 $page->setTitle('Administration - Paiements - Méthodes');
f5e965ca
SJ
636 $page->assign('title', 'Méthodes de paiement');
637 $table_editor = new PLTableEditor('admin/payments/methods', 'payment_methods', 'id');
f56ceafe
DB
638 $table_editor->apply($page, $action, $id);
639 }
640
26ba053e 641 function handler_adm_reconcile($page, $step = 'list', $param = null) {
f56ceafe
DB
642 // reconciles logs with transactions
643 // FIXME: the admin is considered to be fair => he doesn't hack the $step value, nor other params
644 $page->setTitle('Administration - Paiements - Réconciliations');
645 $page->changeTpl('payment/reconcile.tpl');
646 $page->assign('step', $step);
f3d6e2cc 647 $list = true;
f5e965ca 648
f3d6e2cc
DB
649 // actions
650 if ($step == 'delete' && $param != null) {
651 S::assert_xsrf_token();
f5e965ca 652 XDB::execute('DELETE FROM payment_reconcilations WHERE id = {?}', $param);
f3d6e2cc 653 // FIXME: hardcoding !!!
f5e965ca
SJ
654 XDB::execute('UPDATE payment_transactions SET recon_id = NULL,commission = NULL WHERE recon_id = {?} AND method_id = 2', $param);
655 XDB::execute('UPDATE payment_transactions SET recon_id = NULL WHERE recon_id = {?} AND method_id = 1', $param);
656 $page->trigSuccess("L'entrée " . $param . ' a été supprimée.');
657
f3d6e2cc
DB
658 } elseif ($step == 'edit') {
659 $page->trigError("L'édition n'est pas implémentée.");
f5e965ca 660
f3d6e2cc
DB
661 } elseif ($step == 'step5') {
662 $page->trigSuccess("La réconciliation est terminée. Il est maintenant nécessaire de générer les virements.");
f5e965ca 663
f3d6e2cc 664 }
f5e965ca 665
f3d6e2cc
DB
666 if($list) {
667 // show list of reconciliations, with a "add" button
f5e965ca 668 $page->assign('title', 'Réconciliation - Liste');
77b81d91 669 $page->assign('step', 'list');
f5e965ca 670
f3d6e2cc 671 $recongps = array();
f5e965ca 672
f3d6e2cc
DB
673 $res = XDB::query("SELECT r.id, short_name AS method, period_start, period_end, status,
674 payment_count, sum_amounts, sum_commissions
675 FROM payment_reconcilations AS r
f5e965ca 676 LEFT JOIN payment_methods AS m ON (r.method_id = m.id)
f3d6e2cc
DB
677 WHERE recongroup_id IS NULL
678 ORDER BY period_end DESC, period_start DESC");
679 foreach ($res->fetchAllAssoc() as $recon)
680 $recongps[] = array('recons' => array($recon), 'transfers' => array());
f5e965ca 681
f3d6e2cc
DB
682 $res = XDB::query("SELECT recongroup_id AS id
683 FROM payment_reconcilations
684 GROUP BY recongroup_id
685 ORDER BY MAX(period_end) DESC, MIN(period_start) DESC");
686 foreach ($res->fetchAllAssoc() as $recongp) {
687 $res = XDB::query("SELECT r.id, short_name AS method, period_start, period_end, status,
688 payment_count, sum_amounts, sum_commissions
689 FROM payment_reconcilations AS r
f5e965ca
SJ
690 LEFT JOIN payment_methods AS m ON (r.method_id = m.id)
691 WHERE recongroup_id = {?}
f3d6e2cc
DB
692 ORDER BY period_end DESC, period_start DESC",
693 $recongp['id']);
694 $recongp['recons'] = $res->fetchAllAssoc();
695
f5e965ca 696 $res = XDB::query('SELECT id, payment_id, amount, account_id, message, date
f3d6e2cc 697 FROM payment_transfers
f5e965ca 698 WHERE recongroup_id = {?}',
f3d6e2cc
DB
699 $recongp['id']);
700 $recongp['transfers'] = $res->fetchAllAssoc();
f5e965ca 701
f3d6e2cc
DB
702 $recongps[] = $recongp;
703 }
704 $page->assign_by_ref('recongps', $recongps);
705 }
77b81d91 706 }
f5e965ca 707
26ba053e 708 function handler_adm_importlogs($page, $step, $param = null) {
77b81d91
DB
709 $page->setTitle('Administration - Paiements - Réconciliations');
710 $page->changeTpl('payment/reconcile.tpl');
711 $page->assign('step', $step);
f5e965ca 712
77b81d91 713 if (isset($_SESSION['paymentrecon_data'])) {
f56ceafe 714 // create temporary table with imported data
f5e965ca 715 XDB::execute('CREATE TEMPORARY TABLE payment_tmp (
f56ceafe
DB
716 reference VARCHAR(255) PRIMARY KEY,
717 date DATE,
718 amount DECIMAL(9,2),
719 commission DECIMAL(9,2)
f5e965ca 720 )');
f56ceafe 721 foreach ($_SESSION['paymentrecon_data'] as $i)
f5e965ca 722 XDB::execute('INSERT INTO payment_tmp VALUES ({?}, {?}, {?}, {?})',
f56ceafe
DB
723 $i['reference'], $i['date'], $i['amount'], $i['commission']);
724 }
f5e965ca 725
77b81d91 726 if ($step == 'step1') {
f5e965ca 727 $page->assign('title', 'Étape 1');
77b81d91
DB
728 unset($_SESSION['paymentrecon_method']);
729 unset($_SESSION['paymentrecon_data']);
730 unset($_SESSION['paymentrecon_id']);
f5e965ca 731
f56ceafe
DB
732 // was a payment method choosen ?
733 if ($param != null) {
734 $_SESSION['paymentrecon_method'] = (int)$param;
f5e965ca 735 pl_redirect('admin/reconcile/importlogs/step2');
f56ceafe
DB
736
737 } else {
738 // ask to choose a payment method
f5e965ca 739 $res = XDB::query('SELECT id, text FROM payment_methods');
f56ceafe
DB
740 $page->assign('methods', $res->fetchAllAssoc());
741 }
742
743 } elseif ( $step == 'step2' ) {
f5e965ca
SJ
744 $page->assign('title', 'Étape 2');
745
f56ceafe 746 // import logs formated in CVS
f5e965ca 747 $fields = array('date', 'reference', 'amount', 'commission');
f56ceafe 748 $importer = new PaymentLogsImporter();
77b81d91 749 $importer->apply($page, 'admin/reconcile/importlogs/step2', $fields);
f5e965ca 750
f56ceafe
DB
751 // if import is finished
752 $result = $importer->get_result();
753 if($result != null) {
754 $_SESSION['paymentrecon_data'] = $result;
f5e965ca 755 pl_redirect('admin/reconcile/importlogs/step3');
f56ceafe 756 }
f5e965ca 757
f56ceafe 758 } elseif ($step == 'step3' ) {
f5e965ca
SJ
759 $page->assign('title', 'Étape 3');
760
f56ceafe 761 // compute reconcilation summary data
f5e965ca 762 $res = XDB::query('SELECT MIN(date) AS period_start, MAX(date) AS period_end,
f56ceafe
DB
763 count(*) AS payment_count, SUM(amount) AS sum_amounts,
764 SUM(commission) AS sum_commissions
f5e965ca 765 FROM payment_tmp');
f56ceafe
DB
766 $recon = $res->fetchOneAssoc();
767 $recon['method_id'] = $_SESSION['paymentrecon_method'];
f5e965ca 768
f56ceafe
DB
769 // create reconciliation item in database
770 if(Post::has('next')) {
771 S::assert_xsrf_token();
f5e965ca 772
f56ceafe 773 // get parameters
f5e965ca
SJ
774 $recon['period_start'] = preg_replace('/([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{4})/', '\3-\2-\1', Post::v('period_start'));
775 $recon['period_end'] = preg_replace('/([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{4})/', '\3-\2-\1', Post::v('period_end'));
f56ceafe 776 // FIXME: save checks to be done at next step
f5e965ca 777
f56ceafe
DB
778 // Create reconcilation item in database
779 // FIXME: check if period doesn't overlap with others for the same method_id
f5e965ca 780 XDB::execute('INSERT INTO payment_reconcilations (method_id, period_start, period_end,
f56ceafe 781 payment_count, sum_amounts, sum_commissions)
f5e965ca 782 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
f56ceafe
DB
783 $recon['method_id'], $recon['period_start'], $recon['period_end'],
784 $recon['payment_count'], $recon['sum_amounts'], $recon['sum_commissions']);
785 $_SESSION['paymentrecon_id'] = XDB::insertId();
f5e965ca 786
f56ceafe
DB
787 // reconcile simple cases (trans.commission n'est modifié que s'il vaut NULL)
788 XDB::execute("UPDATE payment_transactions AS trans, payment_tmp AS tmp
f5e965ca
SJ
789 SET trans.recon_id = {?}, trans.commission=tmp.commission
790 WHERE trans.fullref = tmp.reference
791 AND trans.amount = tmp.amount AND DATE(trans.ts_confirmed) = tmp.date
792 AND (trans.commission IS NULL OR trans.commission = tmp.commission)
793 AND method_id = {?} AND recon_id IS NULL AND status = 'confirmed'",
f56ceafe 794 $_SESSION['paymentrecon_id'], $recon['method_id']);
f5e965ca
SJ
795
796 pl_redirect("admin/reconcile/importlogs/step4");
797
f56ceafe
DB
798 // show summary of the imported data + ask form start/end of reconcilation period
799 } else {
800 $recon['period_start'] = preg_replace('/([0-9]{4})-([0-9]{2})-([0-9]{2})/', '\3/\2/\1', $recon['period_start']);
801 $recon['period_end'] = preg_replace('/([0-9]{4})-([0-9]{2})-([0-9]{2})/', '\3/\2/\1', $recon['period_end']);
802 $page->assign('recon', $recon);
803 }
804
805 } elseif ($step == 'step4' ) {
f5e965ca
SJ
806 $page->assign('title', 'Étape 4');
807
f56ceafe 808 // get reconcilation summary informations
f5e965ca 809 $res = XDB::query('SELECT * FROM payment_reconcilations WHERE id = {?}', $_SESSION['paymentrecon_id']);
f56ceafe
DB
810 $recon = $res->fetchOneAssoc();
811 $page->assign('recon', $recon);
812
813 if (Post::has('force')) {
814 S::assert_xsrf_token();
815 foreach (Post::v('force') as $id => $value) {
f5e965ca
SJ
816 XDB::execute('UPDATE payment_transactions AS trans, payment_tmp AS tmp
817 SET trans.recon_id = {?}, trans.commission = tmp.commission
818 WHERE trans.id = {?} AND trans.fullref = tmp.reference',
f56ceafe
DB
819 $_SESSION['paymentrecon_id'], $id);
820 }
f5e965ca
SJ
821 $page->trigSuccess('La réconciliation a été forcée pour ' . count(Post::v('force')) . ' transaction(s).');
822
f56ceafe 823 } elseif (Post::has('next')) {
f5e965ca
SJ
824 if (strlen($recon['comments'])< 3 ) {
825 $page->trigError('Le commentaire doit contenir au moins 3 caractères.');
f56ceafe 826 } else {
f5e965ca 827 XDB::execute("UPDATE payment_reconcilations SET status = 'transfering' WHERE id = {?}", $_SESSION['paymentrecon_id']);
77b81d91 828 pl_redirect('admin/reconcile/step5');
f56ceafe 829 }
f5e965ca 830
f56ceafe
DB
831 } elseif (Post::has('savecomments')) {
832 S::assert_xsrf_token();
833 $recon['comments'] = Post::v('comments');
f3d6e2cc 834 $page->assign('recon', $recon);
f5e965ca 835 XDB::execute('UPDATE payment_reconcilations SET comments = {?} WHERE id = {?}', $recon['comments'], $_SESSION['paymentrecon_id']);
f56ceafe
DB
836 $page->trigSuccess('Les commentaires ont été enregistrés.');
837 }
f5e965ca 838
f56ceafe 839 // reconcilation results - ok
f5e965ca
SJ
840 $res = XDB::query('SELECT count(*), SUM(amount), SUM(commission)
841 FROM payment_transactions
842 WHERE recon_id = {?}',
f56ceafe 843 $recon['id']);
f5e965ca 844 list($ok_count, $ok_sum_amounts, $ok_sum_coms) = $res->fetchOneRow();
f56ceafe 845 $page->assign('ok_count', $ok_count);
f5e965ca 846
f56ceafe 847 // reconcilation results - ref exists, but some data differs
f5e965ca 848 $res = XDB::query('SELECT id, fullref, method_id, ts_confirmed, trans.amount, trans.commission, status, recon_id,
f56ceafe
DB
849 reference, date, tmp.amount as amount2, tmp.commission as commission2
850 FROM payment_transactions AS trans
f5e965ca
SJ
851 INNER JOIN payment_tmp AS tmp ON (trans.fullref = tmp.reference)
852 WHERE trans.recon_id IS NULL OR trans.recon_id != {?}',
f56ceafe
DB
853 $recon['id']);
854 $differs = $res->fetchAllAssoc();
855 $page->assign_by_ref('differs', $differs);
856 $page->assign('differ_count', count($differs));
f5e965ca 857
f56ceafe 858 // reconcilation results - ref doesn't exists in database
f5e965ca
SJ
859 $res = XDB::query('SELECT tmp.*
860 FROM payment_tmp AS tmp
861 LEFT JOIN payment_transactions AS trans ON (trans.fullref = tmp.reference)
862 WHERE trans.fullref IS NULL');
f56ceafe
DB
863 $only_import = $res->fetchAllAssoc();
864 $page->assign_by_ref('only_import', $only_import);
865 $page->assign('onlyim_count', count($only_import));
f5e965ca 866
f56ceafe 867 // reconcilation results - exists in database but not in import
f5e965ca 868 $res = XDB::query('SELECT trans.*
f56ceafe 869 FROM payment_transactions AS trans
f5e965ca
SJ
870 LEFT JOIN payment_tmp AS tmp ON (trans.fullref = tmp.reference)
871 WHERE {?} <= DATE(trans.ts_confirmed) AND DATE(trans.ts_confirmed) <= {?}
872 AND tmp.reference IS NULL AND method_id = {?}',
f56ceafe
DB
873 $recon['period_start'], $recon['period_end'], $recon['method_id']);
874 $only_database = $res->fetchAllAssoc();
875 $page->assign_by_ref('only_database', $only_database);
876 $page->assign('onlydb_count', count($only_database));
f56ceafe 877 }
f3d6e2cc 878 }
f5e965ca 879
26ba053e 880 function handler_adm_transfers($page, $action = null, $id = null) {
77b81d91 881 // list/log all bank transfers and link them to individual transactions
f5e965ca 882
f3d6e2cc
DB
883 if (Post::has('generate')) {
884 $recon_ids = array_keys(Post::v('recon_id'));
f5e965ca 885
f3d6e2cc
DB
886 // generate a new reconcilation group ID
887 $res = XDB::query("SELECT MAX(recongroup_id)+1 FROM payment_reconcilations");
888 $recongp_id = $res->fetchOneCell();
889 if ($recongp_id == null) $recongp_id = 1;
f5e965ca 890
f3d6e2cc
DB
891 // add reconcilations to group
892 // FIXME: should check if reconcilations are in good status
f5e965ca
SJ
893 XDB::execute("UPDATE payment_reconcilations
894 SET recongroup_id = {?}, status = 'closed'
895 WHERE id IN {?}",
896 $recongp_id, $recon_ids);
897
f3d6e2cc 898 // create transfers
f5e965ca 899 XDB::execute('INSERT INTO payment_transfers
f3d6e2cc
DB
900 SELECT NULL, {?}, t.ref, SUM(t.amount+t.commission), NULL, p.text, NULL
901 FROM payment_transactions AS t
f5e965ca
SJ
902 LEFT JOIN payments AS p ON (t.ref = p.id)
903 LEFT JOIN groups AS g ON (p.asso_id = g.id)
f3d6e2cc 904 WHERE t.recon_id IN {?}
f5e965ca
SJ
905 GROUP BY t.ref',
906 $recongp_id, $recon_ids);
907
f3d6e2cc
DB
908 //$res = XDB::query("SELECT * FROM payment_reconcilations WHERE id IN {?}", $recon_ids);
909 //$recons = $res->fetchAllAssoc();
f5e965ca
SJ
910
911 $page->trigSuccess('Les virements ont été générés pour ' . count($recon_ids) . ' réconciliations.');
f3d6e2cc 912 $this->handler_adm_reconcile($page);
f5e965ca
SJ
913
914 } elseif ($action == 'delgroup') {
f3d6e2cc 915 S::assert_xsrf_token();
f5e965ca
SJ
916 XDB::execute("UPDATE payment_reconcilations
917 SET status = 'transfering', recongroup_id = NULL
918 WHERE recongroup_id = {?}", $id);
919 XDB::execute("DELETE FROM payment_transfers
920 WHERE recongroup_id = {?} AND date IS NULL", $id);
921
f3d6e2cc
DB
922 $page->trigSuccess("Les virements non réalisés ont été supprimé du groupe ".$id.".");
923 $this->handler_adm_reconcile($page);
f5e965ca 924
f3d6e2cc
DB
925 } elseif ($action == "confirm") {
926 S::assert_xsrf_token();
f5e965ca
SJ
927 XDB::execute('UPDATE payment_transfers
928 SET date = NOW()
929 WHERE id = {?}', $id);
930
931 $page->trigSuccess('Virement ' . $id . ' confirmé.');
f3d6e2cc 932 $this->handler_adm_reconcile($page);
f5e965ca 933
f3d6e2cc 934 } else {
f5e965ca 935 pl_redirect('admin/reconcile');
f3d6e2cc 936 }
f56ceafe
DB
937 }
938}
939
940class PaymentLogsImporter extends CSVImporter {
f3d6e2cc 941 protected $result;
f5e965ca 942
f3d6e2cc
DB
943 public function __construct() {
944 parent::__construct('');
f5e965ca
SJ
945 $this->registerFunction('systempay_commission', 'Compute BPLC commission', array($this, 'compute_systempay_commission'));
946 $this->registerFunction('payment_id', 'Autocompute payment ID', array($this, 'compute_payment_id'));
f56ceafe 947 //$this->forceValue('payment_id','func_payment_id');
f3d6e2cc 948 }
f5e965ca 949
f3d6e2cc
DB
950 public function run($action = null, $insert_relation = null, $update_relation = null) {
951 $this->result = array();
952 foreach ($this->data as $line) {
f56ceafe 953 $a = $this->makeAssoc($line, $insert_relation);
1fe903b1 954 // convert date
f5e965ca 955 $a['date'] = preg_replace('/([0-9]{2})\/([0-9]{2})\/([0-9]{4}).*/', '\3-\2-\1', $a['date']);
1fe903b1 956 $a['date'] = preg_replace('/T.*/','', $a['date']);
75d4576e 957
1fe903b1 958 // convert money
f5e965ca
SJ
959 $a['amount'] = str_replace(',', '.', $a['amount']);
960 $a['commission'] = str_replace(',', '.', $a['commission']);
f3d6e2cc 961 $this->result[] = $a;
f56ceafe 962 }
f3d6e2cc 963 }
f5e965ca 964
f3d6e2cc
DB
965 public function get_result() {
966 return $this->result;
967 }
f5e965ca 968
f3d6e2cc 969 static public function compute_systempay_commission($line, $key, $relation) {
f5e965ca 970 static $EEE_countries = array(
46403a23 971 'France', 'Allemagne', 'Autriche', 'Belgique', 'Bulgarie', 'Chypre', 'Suisse',
f5e965ca
SJ
972 'Danemark', 'Espagne', 'Estonie', 'Finlande', 'Grèce', 'Hongrie', 'Irlande', 'Islande', 'Italie',
973 'Lettonie', 'Liechtenstein', 'Lituanie', 'Luxembourg', 'Malte', 'Norvège', 'Pays-Bas', 'Pologne',
974 'Portugal', 'Roumanie', 'Royaume-Uni', 'Slovaquie', 'Slovénie', 'Suède', 'République Tchèque'
975 );
976
977 if($key!='commission' || !array_key_exists('carte', $line)) {
978 return null;
979 }
f3d6e2cc 980 $amount = self::getValue($line, 'amount', $relation['amount']);
f5e965ca
SJ
981 if (in_array($line['pays carte'], $EEE_countries)) {
982 return -0.20 - round($amount * 0.005, 2);
983 } else {
984 return -0.20 - round($amount * 0.005, 2) - 0.76;
985 }
f3d6e2cc
DB
986 }
987
988 static public function compute_payment_id($line, $key, $relation) {
f5e965ca
SJ
989 if ($key != 'payment_id') {
990 return null;
991 }
f3d6e2cc 992 $reference = self::getValue($line, 'reference', $relation['reference']);
f5e965ca 993 if (ereg('-([0-9]+)$', $reference, $matches)) {
f3d6e2cc 994 return $matches[1];
f5e965ca 995 } else {
f56ceafe 996 return null;
f5e965ca 997 }
f3d6e2cc 998 }
a2558f2b 999}
1000
a7de4ef7 1001// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
a2558f2b 1002?>