we don't need diogenes session anymore
[platal.git] / include / validations / paiements.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
0337d704 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// {{{ class PayReq
23
24class PayReq extends Validate
25{
26 // {{{ properties
27
28 var $titre;
29 var $site;
30
31 var $montant;
32 var $montant_min;
33 var $montant_max;
34
35 var $msg_reponse;
36 var $asso_id;
37 var $asso;
38 var $evt;
39 var $evt_intitule;
40
41 var $rules = "Laisser la validation à un trésorier";
42 // }}}
43 // {{{ constructor
44
45 function PayReq($_uid, $_intitule, $_site, $_montant, $_msg, $_montantmin=0, $_montantmax=999, $_asso_id = 0, $_evt = 0, $_stamp=0)
46 {
47 global $globals;
48 $this->Validate($_uid, false, 'paiements', $_stamp);
49
50 $this->titre = $_intitule;
51 $this->site = $_site;
52 $this->msg_reponse = $_msg;
53 $this->asso_id = $_asso_id;
54 $this->evt = $_evt;
55 $this->montant = $_montant;
56 $this->montant_min = $_montantmin;
57 $this->montant_max = $_montantmax;
58
59 if ($_asso_id) {
60 $res = $globals->xdb->query("SELECT nom FROM groupex.asso WHERE id = {?}", $_asso_id);
61 $this->asso = $res->fetchOneCell();
62 }
63 if ($_asso_id && $_evt) {
64 $res = $globals->xdb->query("SELECT intitule FROM groupex.evenements WHERE asso_id = {?} AND eid = {?}", $_asso_id, $_evt);
65 $this->evt_intitule = $res->fetchOneCell();
66 }
67 }
68
69 // }}}
b479e26b 70 // {{{ function same_event()
71 function same_event($evt, $asso_id)
72 {
73 $wevt = 's:3:"evt";s:'.strlen($evt+"").':"'.$evt.'"';
74 $wassoid = 's:7:"asso_id";s:'.strlen($asso_id + "").':"'.$asso_id.'"';
75 $where = "%".$wassoid."%".$wevt."%";
76 return $where;
77 }
78 // }}}
029e6327 79 // {{{ function submit()
80 // supprime les demandes de paiments pour le meme evenement
81 function submit()
82 {
83 global $globals;
029e6327 84 if ($this->evt)
85 {
b479e26b 86 $globals->xdb->execute('DELETE FROM requests WHERE type={?} AND data LIKE {?}', 'paiements', PayReq::same_event($this->evt, $this->asso_id));
029e6327 87 }
88 Validate::submit();
89 }
90 // }}}
91 // {{{ function formu()
0337d704 92
93 function formu()
94 { return 'include/form.valid.paiements.tpl'; }
95
96 // }}}
97 // {{{ function _mail_subj
98
99 function _mail_subj()
100 {
101 return "[Polytechnique.org/Paiments] Demande de création de paiement {$this->titre}";
102 }
103
104 // }}}
105 // {{{ function _mail_body
106
107 function _mail_body($isok)
108 {
109 if ($isok) {
110 return " Le paiement que tu avais demandé pour {$this->titre} vient d'être créé.".($this->evt?" Il a bien été associé à la gestion de l'événement du groupe":"");
111 } else {
112 return " La demande que tu avais faite pour le paiement de {$this->intitule} a été refusée.";
113 }
114 }
115
116 // }}}
117 // {{{ function commit()
118
119 function commit()
120 {
121 global $globals;
122 $res = $globals->xdb->query("SELECT MAX(id) FROM paiement.paiements");
123 $id = $res->fetchOneCell()+1;
124 $ret = $globals->xdb->execute("INSERT INTO paiement.paiements VALUES
125 ( {?}, {?}, {?}, '',
126 {?}, {?}, {?},
127 {?}, {?}, {?} )
128 ",
129 $id, $this->titre, $this->site,
130 $this->montant, $this->montant_min, $this->montant_max,
131 $this->bestalias."@".$globals->mail->domain, $this->msg_reponse, $this->asso_id);
132 if ($this->asso_id && $this->evt)
133 $ret = $globals->xdb->execute("UPDATE groupex.evenements SET paiement_id = {?} WHERE asso_id = {?} AND eid = {?}", $id, $this->asso_id, $this->evt);
134
135 return $ret;
136 }
137
138 // }}}
139}
140
141// }}}
142
143// vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
144?>