dolibarr 21.0.3
subscription.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27//namespace DolibarrMember;
28
29require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
30
31
36{
40 public $element = 'subscription';
41
45 public $table_element = 'subscription';
46
50 public $picto = 'payment';
51
57 public $datec;
58
64 public $datem;
65
71 public $dateh;
72
78 public $datef;
79
83 public $fk_type;
84
88 public $fk_adherent;
89
93 public $amount;
94
98 public $fk_bank;
99
103 public $fields = array(
104 'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
105 'tms' => array('type' => 'timestamp', 'label' => 'DateModification', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 15),
106 'datec' => array('type' => 'datetime', 'label' => 'DateCreation', 'enabled' => 1, 'visible' => -1, 'position' => 20),
107 'fk_adherent' => array('type' => 'integer', 'label' => 'Member', 'enabled' => 1, 'visible' => -1, 'position' => 25),
108 'dateadh' => array('type' => 'datetime', 'label' => 'DateSubscription', 'enabled' => 1, 'visible' => -1, 'position' => 30),
109 'datef' => array('type' => 'datetime', 'label' => 'DateEndSubscription', 'enabled' => 1, 'visible' => -1, 'position' => 35),
110 'subscription' => array('type' => 'double(24,8)', 'label' => 'Amount', 'enabled' => 1, 'visible' => -1, 'position' => 40, 'isameasure' => 1),
111 'fk_bank' => array('type' => 'integer', 'label' => 'BankId', 'enabled' => 1, 'visible' => -1, 'position' => 45),
112 'note' => array('type' => 'html', 'label' => 'Note', 'enabled' => 1, 'visible' => -1, 'position' => 50),
113 'fk_type' => array('type' => 'integer', 'label' => 'MemberType', 'enabled' => 1, 'visible' => -1, 'position' => 55),
114 'fk_user_creat' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserAuthor', 'enabled' => 1, 'visible' => -2, 'position' => 60),
115 'fk_user_valid' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserValidation', 'enabled' => 1, 'visible' => -1, 'position' => 65),
116 );
117
118
124 public function __construct($db)
125 {
126 $this->db = $db;
127
128 $this->ismultientitymanaged = 'fk_adherent@adherent';
129 }
130
131
139 public function create($user, $notrigger = 0)
140 {
141 global $langs;
142
143 $error = 0;
144
145 $now = dol_now();
146
147 // Check parameters
148 if ($this->datef <= $this->dateh) {
149 $this->error = $langs->trans("ErrorBadValueForDate");
150 return -1;
151 }
152 if (empty($this->datec)) {
153 $this->datec = $now;
154 }
155
156 $this->db->begin();
157
158 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
159 $member = new Adherent($this->db);
160 $result = $member->fetch($this->fk_adherent);
161
162 if ($this->fk_type == null) { // If type not defined, we use the type of member
163 $type = $member->typeid;
164 } else {
165 $type = $this->fk_type;
166 }
167
168 $sql = "INSERT INTO ".MAIN_DB_PREFIX."subscription (fk_adherent, fk_type, datec, dateadh, datef, subscription, note, fk_user_creat)";
169 $sql .= " VALUES (".((int) $this->fk_adherent).", '".$this->db->escape($type)."', '".$this->db->idate($now)."',";
170 $sql .= " '".$this->db->idate($this->dateh)."',";
171 $sql .= " '".$this->db->idate($this->datef)."',";
172 $sql .= " ".((float) $this->amount).",";
173 $sql .= " '".$this->db->escape($this->note_public ? $this->note_public : $this->note)."',";
174 $sql .= " ".((int) ($this->user_creation_id > 0 ? $this->user_creation_id : $user->id));
175 $sql .= ")";
176
177 $resql = $this->db->query($sql);
178 if (!$resql) {
179 $error++;
180 $this->errors[] = $this->db->lasterror();
181 }
182
183 if (!$error) {
184 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
185 $this->fk_type = $type;
186 }
187
188 if (!empty($this->linkedObjectsIds) && empty($this->linked_objects)) { // To use new linkedObjectsIds instead of old linked_objects
189 $this->linked_objects = $this->linkedObjectsIds; // TODO Replace linked_objects with linkedObjectsIds
190 }
191
192 // Add object linked
193 if (!$error && $this->id && !empty($this->linked_objects) && is_array($this->linked_objects)) {
194 foreach ($this->linked_objects as $origin => $tmp_origin_id) {
195 if (is_array($tmp_origin_id)) { // New behaviour, if linked_object can have several links per type, so is something like array('contract'=>array(id1, id2, ...))
196 foreach ($tmp_origin_id as $origin_id) {
197 $ret = $this->add_object_linked($origin, $origin_id);
198 if (!$ret) {
199 $this->error = $this->db->lasterror();
200 $error++;
201 }
202 }
203 } else { // Old behaviour, if linked_object has only one link per type, so is something like array('contract'=>id1))
204 $origin_id = $tmp_origin_id;
205 $ret = $this->add_object_linked($origin, $origin_id);
206 if (!$ret) {
207 $this->error = $this->db->lasterror();
208 $error++;
209 }
210 }
211 }
212 }
213
214 if (!$error && !$notrigger) {
215 $this->context = array('member' => $member);
216 // Call triggers
217 $result = $this->call_trigger('MEMBER_SUBSCRIPTION_CREATE', $user);
218 if ($result < 0) {
219 $error++;
220 }
221 // End call triggers
222 }
223
224 // Commit or rollback
225 if ($error) {
226 $this->db->rollback();
227 return -1;
228 } else {
229 $this->db->commit();
230 return $this->id;
231 }
232 }
233
234
241 public function fetch($rowid)
242 {
243 $sql = "SELECT rowid, fk_type, fk_adherent, datec,";
244 $sql .= " tms,";
245 $sql .= " dateadh as dateh,";
246 $sql .= " datef,";
247 $sql .= " subscription, note as note_public, fk_bank";
248 $sql .= " FROM ".MAIN_DB_PREFIX."subscription";
249 $sql .= " WHERE rowid = ".((int) $rowid);
250
251 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
252 $resql = $this->db->query($sql);
253 if ($resql) {
254 if ($this->db->num_rows($resql)) {
255 $obj = $this->db->fetch_object($resql);
256
257 $this->id = $obj->rowid;
258 $this->ref = $obj->rowid;
259
260 $this->fk_type = $obj->fk_type;
261 $this->fk_adherent = $obj->fk_adherent;
262 $this->datec = $this->db->jdate($obj->datec);
263 $this->datem = $this->db->jdate($obj->tms);
264 $this->dateh = $this->db->jdate($obj->dateh);
265 $this->datef = $this->db->jdate($obj->datef);
266 $this->amount = $obj->subscription;
267 $this->note = $obj->note_public; // deprecated
268 $this->note_public = $obj->note_public;
269 $this->fk_bank = $obj->fk_bank;
270 return 1;
271 } else {
272 return 0;
273 }
274 } else {
275 $this->error = $this->db->lasterror();
276 return -1;
277 }
278 }
279
280
288 public function update($user, $notrigger = 0)
289 {
290 $error = 0;
291
292 $this->db->begin();
293
294 if (!is_numeric($this->amount)) {
295 $this->error = 'BadValueForParameterAmount';
296 return -1;
297 }
298
299 if (empty($this->note_public) && !empty($this->note)) { // For backward compatibility
300 $this->note_public = $this->note;
301 }
302
303 $sql = "UPDATE ".MAIN_DB_PREFIX."subscription SET ";
304 $sql .= " fk_type = ".((int) $this->fk_type).",";
305 $sql .= " fk_adherent = ".((int) $this->fk_adherent).",";
306 $sql .= " note = ".($this->note_public ? "'".$this->db->escape($this->note_public)."'" : 'null').",";
307 $sql .= " subscription = ".(float) price2num($this->amount).",";
308 $sql .= " dateadh = '".$this->db->idate($this->dateh)."',";
309 $sql .= " datef = '".$this->db->idate($this->datef)."',";
310 $sql .= " datec = '".$this->db->idate($this->datec)."',";
311 $sql .= " fk_bank = ".($this->fk_bank ? ((int) $this->fk_bank) : 'null');
312 $sql .= " WHERE rowid = ".((int) $this->id);
313
314 dol_syslog(get_class($this)."::update", LOG_DEBUG);
315 $resql = $this->db->query($sql);
316 if ($resql) {
317 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
318 $member = new Adherent($this->db);
319 $result = $member->fetch($this->fk_adherent);
320 $result = $member->update_end_date($user);
321
322 if (!$error && !$notrigger) {
323 $this->context = array('member' => $member);
324 // Call triggers
325 $result = $this->call_trigger('MEMBER_SUBSCRIPTION_MODIFY', $user);
326 if ($result < 0) {
327 $error++;
328 } //Do also here what you must do to rollback action if trigger fail
329 // End call triggers
330 }
331 } else {
332 $error++;
333 $this->error = $this->db->lasterror();
334 }
335
336 // Commit or rollback
337 if ($error) {
338 $this->db->rollback();
339 return -1;
340 } else {
341 $this->db->commit();
342 return $this->id;
343 }
344 }
345
353 public function delete($user, $notrigger = 0)
354 {
355 $error = 0;
356
357 // It subscription is linked to a bank transaction, we get it
358 if ($this->fk_bank > 0) {
359 require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
360 $accountline = new AccountLine($this->db);
361 $result = $accountline->fetch($this->fk_bank);
362 } else {
363 $accountline = null;
364 }
365
366 $this->db->begin();
367
368 if (!$error) {
369 if (!$notrigger) {
370 // Call triggers
371 $result = $this->call_trigger('MEMBER_SUBSCRIPTION_DELETE', $user);
372 if ($result < 0) {
373 $error++;
374 } // Do also here what you must do to rollback action if trigger fail
375 // End call triggers
376 }
377 }
378
379 if (!$error) {
380 $sql = "DELETE FROM ".MAIN_DB_PREFIX."subscription WHERE rowid = ".((int) $this->id);
381 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
382 $resql = $this->db->query($sql);
383 if ($resql) {
384 $num = $this->db->affected_rows($resql);
385 if ($num) {
386 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
387 $member = new Adherent($this->db);
388 $result = $member->fetch($this->fk_adherent);
389 $result = $member->update_end_date($user);
390
391 if ($this->fk_bank > 0 && is_object($accountline) && $accountline->id > 0) { // If we found bank account line (this means this->fk_bank defined)
392 $result = $accountline->delete($user); // Return false if refused because line is reconciled
393 if ($result > 0) {
394 $this->db->commit();
395 return 1;
396 } else {
397 $this->error = $accountline->error;
398 $this->db->rollback();
399 return -1;
400 }
401 } else {
402 $this->db->commit();
403 return 1;
404 }
405 } else {
406 $this->db->commit();
407 return 0;
408 }
409 } else {
410 $error++;
411 $this->error = $this->db->lasterror();
412 }
413 }
414
415 // Commit or rollback
416 if ($error) {
417 $this->db->rollback();
418 return -1;
419 } else {
420 $this->db->commit();
421 return 1;
422 }
423 }
424
425
436 public function getNomUrl($withpicto = 0, $notooltip = 0, $option = '', $morecss = '', $save_lastsearch_value = -1)
437 {
438 global $langs;
439
440 $result = '';
441
442 $langs->load("members");
443
444 $label = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("Subscription").'</u>';
445 /*if (isset($this->statut)) {
446 $label .= ' '.$this->getLibStatut(5);
447 }*/
448 $label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
449 if (!empty($this->dateh)) {
450 $label .= '<br><b>'.$langs->trans('DateStart').':</b> '.dol_print_date($this->dateh, 'day');
451 }
452 if (!empty($this->datef)) {
453 $label .= '<br><b>'.$langs->trans('DateEnd').':</b> '.dol_print_date($this->datef, 'day');
454 }
455
456 $url = DOL_URL_ROOT.'/adherents/subscription/card.php?rowid='.((int) $this->id);
457
458 if ($option != 'nolink') {
459 // Add param to save lastsearch_values or not
460 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
461 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
462 $add_save_lastsearch_values = 1;
463 }
464 if ($add_save_lastsearch_values) {
465 $url .= '&save_lastsearch_values=1';
466 }
467 }
468
469 $linkstart = '<a href="'.$url.'" class="classfortooltip" title="'.dol_escape_htmltag($label, 1).'">';
470 $linkend = '</a>';
471
472 $result .= $linkstart;
473 if ($withpicto) {
474 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
475 }
476 if ($withpicto != 2) {
477 $result .= $this->ref;
478 }
479 $result .= $linkend;
480
481 return $result;
482 }
483
484
491 public function getLibStatut($mode = 0)
492 {
493 return '';
494 }
495
496 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
504 public function LibStatut($status, $mode = 0)
505 {
506 // phpcs:enable
507
508 //$langs->load("members");
509
510 return '';
511 }
512
519 public function info($id)
520 {
521 $sql = 'SELECT c.rowid, c.datec, c.tms as datem, c.fk_user_creat';
522 $sql .= ' FROM '.MAIN_DB_PREFIX.'subscription as c';
523 $sql .= ' WHERE c.rowid = '.((int) $id);
524
525 $resql = $this->db->query($sql);
526 if ($resql) {
527 if ($this->db->num_rows($resql)) {
528 $obj = $this->db->fetch_object($resql);
529 $this->id = $obj->rowid;
530
531 $this->date_creation = $this->db->jdate($obj->datec);
532 $this->date_modification = $this->db->jdate($obj->datem);
533
534 $this->user_creation_id = $obj->fk_user_creat;
535 }
536
537 $this->db->free($resql);
538 } else {
539 dol_print_error($this->db);
540 }
541 }
542
550 public function getKanbanView($option = '', $arraydata = null)
551 {
552 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
553
554 $return = '<div class="box-flex-item box-flex-grow-zero">';
555 $return .= '<div class="info-box info-box-sm">';
556 $return .= '<span class="info-box-icon bg-infobox-action">';
557 $return .= img_picto('', $this->picto);
558 $return .= '</span>';
559
560 $return .= '<div class="info-box-content">';
561 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">';
562 $return .= $this->getNomUrl(0);
563 $return .= '</span>';
564 if ($selected >= 0) {
565 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
566 }
567 if (property_exists($this, 'dateh') || property_exists($this, 'datef')) {
568 $return .= '<br><span class="info-box-status opacitymedium small">'.dol_print_date($this->dateh, 'day').' - '.dol_print_date($this->datef, 'day').'</span>';
569 }
570
571 if (!empty($arraydata['member']) && is_object($arraydata['member'])) {
572 $return .= '<br><div class="inline-block tdoverflowmax150">'.$arraydata['member']->getNomUrl(-4).'</div>';
573 }
574
575 if (property_exists($this, 'amount')) {
576 $return .= '<br><span class="amount inline-block">'.price($this->amount).'</span>';
577 if (!empty($arraydata['bank'])) {
578 $return .= ' &nbsp; <span class="info-box-label ">'.$arraydata['bank']->getNomUrl(-1).'</span>';
579 }
580 }
581 $return .= '</div>';
582 $return .= '</div>';
583 $return .= '</div>';
584 return $return;
585 }
586}
$object ref
Definition info.php:89
Class to manage bank transaction lines.
Class to manage members of a foundation.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class to manage subscriptions of foundation members.
fetch($rowid)
Method to load a subscription.
getLibStatut($mode=0)
Return the label of the status.
create($user, $notrigger=0)
Function who permitted creation of the subscription.
info($id)
Load information of the subscription object.
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
__construct($db)
Constructor.
getNomUrl($withpicto=0, $notooltip=0, $option='', $morecss='', $save_lastsearch_value=-1)
Return clickable name (with picto eventually)
LibStatut($status, $mode=0)
Return the label of a given status.
update($user, $notrigger=0)
Update subscription.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...