69b0bc7485c9fb51c33a6fe6bff568fa172c9550
[platal.git] / templates / payment / index.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2011 Polytechnique.org                             *}
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
23
24 <h1>Télépaiements</h1>
25
26 {if $smarty.request.op eq "submit" and !$pl_errors}
27
28 <table class="bicol">
29   <tr>
30     <th colspan="2">Paiement via {$meth->text}</th>
31   </tr>
32   <tr>
33     <td><b>Transaction</b></td>
34     <td>{$pay->text}</td>
35   </tr>
36   <tr>
37     <td><b>Montant</b></td>
38     <td>{$montant} &euro;</td>
39   </tr>
40 {if $comment}
41   <tr>
42     <td><b>Commentaire</b></td>
43     <td>{$comment}</td>
44   </tr>
45 {/if}
46   <tr>
47     <td>&nbsp;</td>
48     <td>
49       <form method="post" action="{$pay->api->urlform}">
50       <div>
51         <!-- infos commercant -->
52         {foreach from=$pay->api->infos.commercant key="name" item="value"}
53         <input type="hidden" name="{$name}" value="{$value}" />
54         {/foreach}
55         <!-- infos client -->
56         {foreach from=$pay->api->infos.client key="name" item="value"}
57         <input type="hidden" name="{$name}" value="{$value}" />
58         {/foreach}
59         <!-- infos commande -->
60         {foreach from=$pay->api->infos.commande key="name" item="value"}
61         <input type="hidden" name="{$name}" value="{$value}" />
62         {/foreach}
63
64         <!-- infos divers -->
65         {foreach from=$pay->api->infos.divers key="name" item="value"}
66         <input type="hidden" name="{$name}" value="{$value}" />
67         {/foreach}
68         <input type="submit" value="Valider" />
69       </div>
70       </form>
71     </td>
72   </tr>
73 </table>
74 <p>
75 En cliquant sur "Valider", tu seras redirigé{if $sex}e{/if} vers le site de {$pay->api->nomsite}, où il te
76 sera demandé de saisir ton numéro de carte bancaire.  Lorsque le paiement aura été effectué, tu
77 recevras une confirmation par email.
78 </p>
79 {if $pay->api->text}
80 <p>
81 {$pay->api->text}
82 </p>
83 {/if}
84 {if $evtlink}
85 <p class="erreur">
86 Si tu n'es pas encore inscrit à cet événement, n'oublie pas d'aller t'<a href='http://www.polytechnique.net/{$evtlink.diminutif}/events/sub/{$evtlink.eid}'>inscrire</a>.
87 </p>
88 {/if}
89
90 {else}
91
92 <script type='text/javascript'>
93 {literal}
94 function payment_submit(form)
95 {
96     form.op.value = 'select';
97     form.montant.value = 0;
98     form.action = 'payment/' + form.ref.value;
99     form.submit();
100 }
101 {/literal}
102 </script>
103
104 <form method="post" action="{$platal->pl_self()}">
105   <table class="bicol">
106     <tr>
107       <th colspan="2">Effectuer un télépaiement</th>
108     </tr>
109     <tr>
110       <td>Transaction</td>
111       <td>
112         {if t($asso)}
113         <strong>{$pay->text}</strong><input type="hidden" name="ref" value="{$pay->id}" />
114         {else}
115         <select name="ref" onchange="payment_submit(this.form)">
116           {select_db_table table="payments" valeur=$pay->id
117                            where="WHERE FIND_IN_SET('old', t.flags) = 0"
118                            join="LEFT JOIN groups AS g ON (t.asso_id = g.id)" group="g.nom"}
119         </select>
120         {/if}
121         {if $pay->url}
122         <br />
123         <a href="{$pay->url}">plus d'informations</a>
124         {/if}
125       </td>
126     </tr>
127     <tr>
128       <td>Méthode</td>
129       <td>
130         <select name="methode">
131           {select_db_table table="payment_methods" valeur=$smarty.request.methode}
132         </select>
133       </td>
134     </tr>
135     <tr>
136       <td>Montant</td>
137       <td><input type="text" name="montant" size="13" class='right' value="{$montant}" /> &euro;</td>
138     </tr>
139     <tr>
140       <td>Commentaire</td>
141       <td><textarea name="comment" rows="5" cols="30"></textarea></td>
142     </tr>
143     {if t($donation)}
144     <tr>
145       <td>Afficher ton nom dans la liste des donateurs sur {#globals.core.sitename#}</td>
146       <td>
147         <label>Oui<input type="radio" name="display" value="1" checked="checked" /></label>
148         &nbsp;-&nbsp;
149         <label><input type="radio" name="display" value="0" />Non</label>
150       </td>
151     </tr>
152     {/if}
153     <tr>
154       <td>&nbsp;</td>
155       <td>
156         {if !t($donation)}<input type="hidden" name="display" value="0" />{/if}
157         <input type="hidden" name="op" value="submit" />
158         <input type="submit" value="Continuer" />
159       </td>
160     </tr>
161   </table>
162 </form>
163
164 {if t($transactions)}
165 <p class="descr">Tu as déjà effectué des paiements pour cette transaction&nbsp;:</p>
166 <table class="bicol">
167 <tr><th>Date</th><th>Montant</th></tr>
168 {iterate from=$transactions item=t}
169   <tr class="{cycle values="pair,impair"}">
170     <td>{$t.ts_confirmed|date_format}</td>
171     <td>{$t.amount|replace:'.':','} &euro;</td>
172   </tr>
173 {/iterate}
174 </table>
175 {/if}
176
177 {if t($donation)}
178 {if !t($donations)}
179 <p class="descr">Aucun don n'a encore été recueilli.</p>
180 {else}
181 <p class="descr">Les dons suivants ont déjà été recueillis (pour un total de {$sum} &euro;)&nbsp;:</p>
182 <table class="bicol">
183   <tr>
184     <th>Nom</th>
185     <th>Montant</th>
186   </tr>
187   {foreach from=$donations item=d}
188   <tr class="{cycle values="pair,impair"}">
189     <td>{$d.name}</td>
190     <td class="center">{$d.amount|replace:'.':','} &euro;</td>
191   </tr>
192   {/foreach}
193 </table>
194 {/if}
195 {/if}
196
197 {/if}
198
199
200 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}