123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- <?php
- /* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * This program 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.
- *
- * This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/adherents/class/subscription.class.php
- * \ingroup member
- * \brief File of class to manage subscriptions of foundation members
- */
- //namespace DolibarrMember;
- require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
- /**
- * Class to manage subscriptions of foundation members
- */
- class Subscription extends CommonObject
- {
- /**
- * @var string ID to identify managed object
- */
- public $element='subscription';
- /**
- * @var string Name of table without prefix where object is stored
- */
- public $table_element='subscription';
- /**
- * @var string String with name of icon for myobject. Must be the part after the 'object_' into object_myobject.png
- */
- public $picto='payment';
- /**
- * Date creation record (datec)
- *
- * @var integer
- */
- public $datec;
- /**
- * Date modification record (tms)
- *
- * @var integer
- */
- public $datem;
- /**
- * Subscription start date (date subscription)
- *
- * @var integer
- */
- public $dateh;
- /**
- * Subscription end date
- *
- * @var integer
- */
- public $datef;
- /**
- * @var int ID
- */
- public $fk_type;
- public $fk_adherent;
- public $amount;
- /**
- * @var int ID
- */
- public $fk_bank;
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- }
- /**
- * Function who permitted cretaion of the subscription
- *
- * @param User $user User that create
- * @param bool $notrigger false=launch triggers after, true=disable triggers
- * @return int <0 if KO, Id subscription created if OK
- */
- public function create($user, $notrigger = false)
- {
- global $langs;
- $error = 0;
- $now=dol_now();
- // Check parameters
- if ($this->datef <= $this->dateh)
- {
- $this->error=$langs->trans("ErrorBadValueForDate");
- return -1;
- }
- if (empty($this->datec)) $this->datec = $now;
- $this->db->begin();
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."subscription (fk_adherent, fk_type, datec, dateadh, datef, subscription, note)";
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- $member=new Adherent($this->db);
- $result=$member->fetch($this->fk_adherent);
- if ($this->fk_type == null) { // If type not defined, we use the type of member
- $type=$member->typeid;
- } else {
- $type=$this->fk_type;
- }
- $sql.= " VALUES (".$this->fk_adherent.", '".$type."', '".$this->db->idate($now)."',";
- $sql.= " '".$this->db->idate($this->dateh)."',";
- $sql.= " '".$this->db->idate($this->datef)."',";
- $sql.= " ".$this->amount.",";
- $sql.= " '".$this->db->escape($this->note_public?$this->note_public:$this->note)."')";
- $resql = $this->db->query($sql);
- if (! $resql) {
- $error++;
- $this->errors[] = $this->db->lasterror();
- }
- if (! $error)
- {
- $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element);
- $this->fk_type = $type;
- }
- if (! $error && ! $notrigger)
- {
- $this->context = array('member'=>$member);
- // Call triggers
- $result=$this->call_trigger('MEMBER_SUBSCRIPTION_CREATE', $user);
- if ($result < 0) { $error++; }
- // End call triggers
- }
- // Commit or rollback
- if ($error) {
- $this->db->rollback();
- return -1;
- } else {
- $this->db->commit();
- return $this->id;
- }
- }
- /**
- * Method to load a subscription
- *
- * @param int $rowid Id subscription
- * @return int <0 if KO, =0 if not found, >0 if OK
- */
- public function fetch($rowid)
- {
- $sql ="SELECT rowid, fk_type, fk_adherent, datec,";
- $sql.=" tms,";
- $sql.=" dateadh as dateh,";
- $sql.=" datef,";
- $sql.=" subscription, note, fk_bank";
- $sql.=" FROM ".MAIN_DB_PREFIX."subscription";
- $sql.=" WHERE rowid=".$rowid;
- dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
- $resql=$this->db->query($sql);
- if ($resql)
- {
- if ($this->db->num_rows($resql))
- {
- $obj = $this->db->fetch_object($resql);
- $this->id = $obj->rowid;
- $this->ref = $obj->rowid;
- $this->fk_type = $obj->fk_type;
- $this->fk_adherent = $obj->fk_adherent;
- $this->datec = $this->db->jdate($obj->datec);
- $this->datem = $this->db->jdate($obj->tms);
- $this->dateh = $this->db->jdate($obj->dateh);
- $this->datef = $this->db->jdate($obj->datef);
- $this->amount = $obj->subscription;
- $this->note = $obj->note;
- $this->fk_bank = $obj->fk_bank;
- return 1;
- }
- else
- {
- return 0;
- }
- }
- else
- {
- $this->error=$this->db->lasterror();
- return -1;
- }
- }
- /**
- * Update subscription
- *
- * @param User $user User who updated
- * @param int $notrigger 0=Disable triggers
- * @return int <0 if KO, >0 if OK
- */
- public function update($user, $notrigger = 0)
- {
- $error = 0;
- $this->db->begin();
- $sql = "UPDATE ".MAIN_DB_PREFIX."subscription SET ";
- $sql .= " fk_type = ".$this->fk_type.",";
- $sql .= " fk_adherent = ".$this->fk_adherent.",";
- $sql .= " note=".($this->note ? "'".$this->db->escape($this->note)."'" : 'null').",";
- $sql .= " subscription = '".price2num($this->amount)."',";
- $sql .= " dateadh='".$this->db->idate($this->dateh)."',";
- $sql .= " datef='".$this->db->idate($this->datef)."',";
- $sql .= " datec='".$this->db->idate($this->datec)."',";
- $sql .= " fk_bank = ".($this->fk_bank ? $this->fk_bank : 'null');
- $sql .= " WHERE rowid = ".$this->id;
- dol_syslog(get_class($this)."::update", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql)
- {
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- $member=new Adherent($this->db);
- $result=$member->fetch($this->fk_adherent);
- $result=$member->update_end_date($user);
- if (! $error && ! $notrigger) {
- $this->context = array('member'=>$member);
- // Call triggers
- $result=$this->call_trigger('MEMBER_SUBSCRIPTION_MODIFY', $user);
- if ($result < 0) { $error++; } //Do also here what you must do to rollback action if trigger fail
- // End call triggers
- }
- }
- else
- {
- $error++;
- $this->error=$this->db->lasterror();
- }
- // Commit or rollback
- if ($error) {
- $this->db->rollback();
- return -1;
- } else {
- $this->db->commit();
- return $this->id;
- }
- }
- /**
- * Delete a subscription
- *
- * @param User $user User that delete
- * @param bool $notrigger false=launch triggers after, true=disable triggers
- * @return int <0 if KO, 0 if not found, >0 if OK
- */
- public function delete($user, $notrigger = false)
- {
- $error = 0;
- // It subscription is linked to a bank transaction, we get it
- if ($this->fk_bank > 0)
- {
- require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
- $accountline=new AccountLine($this->db);
- $result=$accountline->fetch($this->fk_bank);
- }
- $this->db->begin();
- if (! $error) {
- if (! $notrigger) {
- // Call triggers
- $result=$this->call_trigger('MEMBER_SUBSCRIPTION_DELETE', $user);
- if ($result < 0) { $error++; } // Do also here what you must do to rollback action if trigger fail
- // End call triggers
- }
- }
- if (! $error)
- {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."subscription WHERE rowid = ".$this->id;
- dol_syslog(get_class($this)."::delete", LOG_DEBUG);
- $resql=$this->db->query($sql);
- if ($resql)
- {
- $num=$this->db->affected_rows($resql);
- if ($num)
- {
- require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- $member=new Adherent($this->db);
- $result=$member->fetch($this->fk_adherent);
- $result=$member->update_end_date($user);
- if ($this->fk_bank > 0 && is_object($accountline) && $accountline->id > 0) // If we found bank account line (this means this->fk_bank defined)
- {
- $result=$accountline->delete($user); // Return false if refused because line is conciliated
- if ($result > 0)
- {
- $this->db->commit();
- return 1;
- }
- else
- {
- $this->error=$accountline->error;
- $this->db->rollback();
- return -1;
- }
- }
- else
- {
- $this->db->commit();
- return 1;
- }
- }
- else
- {
- $this->db->commit();
- return 0;
- }
- }
- else
- {
- $error++;
- $this->error=$this->db->lasterror();
- }
- }
- // Commit or rollback
- if ($error) {
- $this->db->rollback();
- return -1;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Return clicable name (with picto eventually)
- *
- * @param int $withpicto 0=No picto, 1=Include picto into link, 2=Only picto
- * @param int $notooltip 1=Disable tooltip
- * @param string $option Page for link ('', 'nolink', ...)
- * @param string $morecss Add more css on link
- * @param int $save_lastsearch_value -1=Auto, 0=No save of lastsearch_values when clicking, 1=Save lastsearch_values whenclicking
- * @return string Chaine avec URL
- */
- public function getNomUrl($withpicto = 0, $notooltip = 0, $option = '', $morecss = '', $save_lastsearch_value = -1)
- {
- global $langs;
- $result='';
- $langs->load("members");
- $label=$langs->trans("ShowSubscription").': '.$this->ref;
- $url = DOL_URL_ROOT.'/adherents/subscription/card.php?rowid='.$this->id;
- if ($option != 'nolink')
- {
- // Add param to save lastsearch_values or not
- $add_save_lastsearch_values=($save_lastsearch_value == 1 ? 1 : 0);
- if ($save_lastsearch_value == -1 && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) $add_save_lastsearch_values=1;
- if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1';
- }
- $linkstart = '<a href="'.$url.'" class="classfortooltip" title="'.dol_escape_htmltag($label, 1).'">';
- $linkend = '</a>';
- $picto='payment';
- $result .= $linkstart;
- if ($withpicto) $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);
- if ($withpicto != 2) $result.= $this->ref;
- $result .= $linkend;
- return $result;
- }
- /**
- * Retourne le libelle du statut d'une adhesion
- *
- * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
- * @return string Label
- */
- public function getLibStatut($mode = 0)
- {
- return '';
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Renvoi le libelle d'un statut donne
- *
- * @param int $statut Id statut
- * @return string Label
- */
- public function LibStatut($statut)
- {
- // phpcs:enable
- global $langs;
- $langs->load("members");
- return '';
- }
- /**
- * Load information of the subscription object
- *
- * @param int $id Id subscription
- * @return void
- */
- public function info($id)
- {
- $sql = 'SELECT c.rowid, c.datec,';
- $sql.= ' c.tms as datem';
- $sql.= ' FROM '.MAIN_DB_PREFIX.'subscription as c';
- $sql.= ' WHERE c.rowid = '.$id;
- $result=$this->db->query($sql);
- if ($result)
- {
- if ($this->db->num_rows($result))
- {
- $obj = $this->db->fetch_object($result);
- $this->id = $obj->rowid;
- $this->date_creation = $this->db->jdate($obj->datec);
- $this->date_modification = $this->db->jdate($obj->datem);
- }
- $this->db->free($result);
- }
- else
- {
- dol_print_error($this->db);
- }
- }
- }
|