-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagement_subs2.php
284 lines (255 loc) · 11.3 KB
/
management_subs2.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<?php
/**
* management subs 2 for galette Subscription plugin
*
* PHP version 5
*
* Copyright © 2009-2016 The Galette Team
*
* This file is part of Galette (http://galette.tuxfamily.org).
*
* Galette is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Galette is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Galette. If not, see <http://www.gnu.org/licenses/>.
*/
define('GALETTE_BASE_PATH', '../../');
require_once GALETTE_BASE_PATH . 'includes/galette.inc.php';
use Galette\Entity\Adherent as Adherent;
use Galette\Entity\Group as Group;
use Galette\Core\GaletteMail as GaletteMail;
use Galette\Entity\Contribution as Contribution;
if (!$login->isLogged()) {
header('location: ' . GALETTE_BASE_PATH . 'index.php');
die();
}
$id_adh = get_numeric_form_value('id_adh', '');
if ( !$login->isSuperAdmin() ) {
if ( !$login->isAdmin() && !$login->isStaff() && !$login->isGroupManager()
|| $login->isAdmin() && $id_adh == ''
|| $login->isStaff() && $id_adh == ''
|| $login->isGroupManager() && $id_adh == ''
) {
$id_adh = $login->id;
}
}
require_once '_config.inc.php';
if(isset($_GET['id_abn']))
{
$id_adh2=$_GET['id_adh'];
$id_abn2=$_GET['id_abn'];
$id_act2=$_GET['id_act'];
}
//enregistrement des données
$valid=0;
if(isset($_POST['valid']))
{
$followup4= new Followup;
$followup4->id_act=$id_act2;
$followup4->id_abn=$id_abn2;
$followup4->id_adh=$id_adh2;
$followup4->getFollowup($followup4);
$followup4->feedback_act=$_POST['feedback_act'];
$followup4->feedback_act_off=$_POST['feedback_act_off'];
$followup4->statut_act=$_POST['statut_act'];
$followup4->store($followup4);
//si le statut est payé=2 ou validé=1 on ajoute le membre dans le group correspondant
if($followup4->statut_act == 1 || $followup4->statut_act == 2)
{
$valid=$followup4->put_into_group($followup4);
//Si c'est payé, on autorise le dl de carte membre via une contribution factice d'un 1an à 1€
if($followup4->statut_act == 2)
{
//création de la contribution pour pouvoir dl sa carte depuis son profil. (autant de contribution que de click payé)
//type=1= cotisation annuelle
//_payment_type=1 espece, 3 cheque...6 autre.
$args = array(
'type' => '1',
'payment_type' => '6',
'adh' => $id_adh2
);
if ( $preferences->pref_membership_ext != '' ) {
$args['ext'] = $preferences->pref_membership_ext;
}
$contrib = new Contribution($args);
$contrib->__set(amount,1);//montant contribution factice
$contrib->store();
}
}
//si l'activité est validé, payé ou refusé, on envoi un mail à l'adhérent
if($followup4->statut_act == 1|| $followup4->statut_act == 2 || $followup4->statut_act == 3)
{
//---------------------------------------------------------------->ENVOI de l'email
if($preferences->pref_mail_method != GaletteMail::METHOD_DISABLED)
{
//Pour chaque activité concernée, on récupère les managers avec id_act et on leur envoi un mail
$group = new Group();
$group->load($id_act2);//value = id_group
//récupération des infos de l'adhérent à valider
$adherent=new Adherent();
$adherent->load($id_adh2);
$sname1=$adherent->surname." ".$adherent->name;
//les managers sont cités en signature du mail
$managers=array();
$managers=$group->getManagers();
$sname="";
foreach ( $managers as $key => $manager )
{
$sname=$sname.$manager->surname." ".$manager->name." mail: ".$manager->email."\r\n";
}
if ( GaletteMail::isValidEmail($adherent->email) )
{
$mail = new GaletteMail();
if($followup4->statut_act == 1)
{
$mail->setSubject("[".$preferences->pref_nom."] inscription pour la section ".$group->getName()." validée");
}
if($followup4->statut_act == 2)
{
$mail->setSubject("[".$preferences->pref_nom."] inscription pour la section ".$group->getName()." payée");
}
if($followup4->statut_act == 3)
{
$mail->setSubject("[".$preferences->pref_nom."] inscription pour la section ".$group->getName()." refusée");
}
$mail->setRecipients(
array(
$adherent->email => $sname1
)
);
$proto = 'http';
if ( isset($_SERVER['HTTPS']) ) {
$proto = 'https';
}
$mail->html=true;
if($followup4->statut_act == 1)
{
$mail->setMessage("Bonjour,\r\n\r\n"."Votre inscription pour la section ".$group->getName()." est maintenant validée.\r\n"."L'abonnement concerné est le N°".$followup4->id_abn.".\r\n"."Vous pouvez payer la section concernée".".\r\n"."Pour voir le suivi de vos abonnements et les montants à payer, connectez vous à l'adresse suivante (Abonnement/suivi): ".$proto . '://' . $_SERVER['SERVER_NAME'] .dirname($_SERVER['REQUEST_URI'])."/follow_up_subs.php\r\n\r\n"."Pour les questions ou réclamations, ne répondez pas à ce mail mais contactez vos responsables de section:\r\n".$sname."\r\n\r\n"."Cordialement,\r\n"."le bureau.");
}
if($followup4->statut_act == 2)
{
//création du code pour pouvoir télécharger sa carte d'adhérent depuis le mail
//génération des données à passer dans l'url (get ?code=):
//http://localhost/galette_amaury/galette/plugins/galette-plugin-subscription/carte_adherent2.php?code=%B3%B4620%B4%D050%D650%04%00
$today= new DateTime("now");
$date_fin_validite = date_add($today, date_interval_create_from_date_string('1 year'));
$compressed = gzdeflate($id_adh2.';'.$date_fin_validite->format('Y-m-d'));//id_adh;date de fin de validité
$compressed =urlencode($compressed );
//corp du mail
$mail->setMessage("Bonjour,\r\n\r\n"."Votre inscription pour la section ".$group->getName()." est maintenant payée.\r\n"."L'abonnement concerné est le N°".$followup4->id_abn.".\r\n\r\n"."Pour voir le suivi de vos abonnements et les montants à payer, connectez vous à l'adresse suivante (Abonnement/suivi): ".$proto . '://' . $_SERVER['SERVER_NAME'] .dirname($_SERVER['REQUEST_URI'])."/follow_up_subs.php\r\n\r\n"."Pour télécharger votre carte d'adhérent, cliquer sur le lien ci dessous:\r".$proto . '://' . $_SERVER['SERVER_NAME'] .dirname($_SERVER['REQUEST_URI'])."/carte_adherent2.php?code=".$compressed."\r\nCette carte vous sera demandée pour accéder aux installations sportives. Vous pouvez aussi à tout moment télécharger cette carte à partir de votre profil (Navigation/mes informations \"Générer la carte de membre\").\r\n\r\n"."Pour les questions ou réclamations, ne répondez pas à ce mail mais contactez vos responsables de section:\r\n".$sname."\r\n\r\n"."Cordialement,\r\n"."le bureau.");
}
if($followup4->statut_act == 3)
{
$mail->setMessage("Bonjour,\r\n\r\n"."Votre inscription pour la section ".$group->getName()." a été refusée par le responsable de section ou le bureau.\r\n"."L'abonnement concerné est le N°".$followup4->id_abn.".\r\n\r\n"."Pour voir le suivi de vos abonnements et pour connaitre le motif du refus, connectez vous à l'adresse suivante (Abonnement/suivi): ".$proto . '://' . $_SERVER['SERVER_NAME'] .dirname($_SERVER['REQUEST_URI'])."/follow_up_subs.php\r\n\r\n"."Pour les questions ou réclamations, ne répondez pas à ce mail mais contactez vos responsables de section:\r\n".$sname."\r\n\r\n"."Cordialement,\r\n"."le bureau.");
}
//envoi de l'email:
$sent = $mail->send();
}//fin du if
}//fin du if
//------------------------------------------------------------------>Fin envoi email
}
}//fin du isset valid
$member = new Adherent();
//on rempli l'Adhérent par ses caractéristiques à l'aide de son id
$member->load($id_adh2);
//check si l'adhérent a une photo (0/1)
$picture=$member->picture->hasPicture();
require_once 'includes/tarif.php';
$subscription= new Subscription;
$subscription->id_abn=$id_abn2;
$subscription->getSubscription($subscription);
//formatage de la date pour affichage
$date=DateTime::createFromFormat('Y-m-d', $subscription->date_demande);
$subscription->date_demande=$date->format(_T("Y-m-d"));
$followup= new Followup();
$followup->id_act=$id_act2;
$followup->id_abn=$id_abn2;
$followup->id_adh=$id_adh2;
$followup->getFollowup($followup);
//retourner la liste des activités d'un abn
$activities=array();
$followups=array();
$followup2=new Followup;
$followup2->id_abn=$id_abn2;
$res=$followup2->getFollowupAct($followup2);
$total_statut_ref=array();//sert à calculer le statut abn si refus
$statut_abn=0; //0 orange, 1 vert, 2 rouge
//pour chaque suivi d'activité
foreach ( $res as $key => $value )
{
$activity2=new Activity;
$activity2->id_group=$value;
$activity2->getActivity($activity2);
$activities[$value]=$activity2;
$followup3=new Followup;
$followup3->id_act=$value;
$followup3->id_adh=$id_adh2;
$followup3->id_abn=$id_abn2;
$followup3->getFollowup($followup3);
$followups[$value]=$followup3;
//4 statuts act : en cours, validé, payé, refusé -> 3 couleurs statut_abn (orange, rouge, vert)
//0=en cours
//1=validé
//2=payé
//3=refusé
//si tout est payé statut_abn=vert,
//si au moins 1 est en cours ou validé et aucun refus statut_abn=orange
//si au moins 1 est refusé statut_abn=rouge
//0 orange, 1 vert, 2 rouge
$total_statut=0;
foreach ( $followups as $key => $followup4 )
{
$total_statut=$total_statut+$followup4->statut_act;
$total_statut_ref[]=$followup4->statut_act;
}
//si toutes les activités sont payées
if($total_statut==2*count($followups))
{
$statut_abn=1;
}
//si il y a au moins un refus
if(max($total_statut_ref)==3)
{
$statut_abn=2;
}
if(max($total_statut_ref)!=3 && $total_statut!=2*count($followups))
{
$statut_abn=0;
}
}//fin du foreach activity
//Calcul de l'age de l'adhérent
$birthdate= DateTime::createFromFormat(_T("Y-m-d"),$member->birthdate);
$today= new DateTime("now");
$age=$birthdate->diff($today);
$age=$age->format('%Y');
$tpl->assign('page_title', _T("Management of Subscribers"));
$tpl->assign('subscription',$subscription);
$tpl->assign('followup',$followup);
$tpl->assign('category',$category);
$tpl->assign('member',$member);
$tpl->assign('statut',$statut);
$tpl->assign('age',$age);
$tpl->assign('picture',$picture);
$tpl->assign('activities',$activities);
$tpl->assign('followups',$followups);
$tpl->assign('statut_abn',$statut_abn);
$tpl->assign('valid',$valid);
$tpl->assign('id_act',$id_act2);
//Set the path to the current plugin's templates,
//but backup main Galette's template path before
$orig_template_path = $tpl->template_dir;
$tpl->template_dir = 'templates/' . $preferences->pref_theme;
$content = $tpl->fetch('management_subs2.tpl', SUBSCRIPTION_SMARTY_PREFIX);
$tpl->assign('content', $content);
//Set path to main Galette's template
$tpl->template_dir = $orig_template_path;
$tpl->display('page.tpl', SUBSCRIPTION_SMARTY_PREFIX);
?>