| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145 |
- <?php
- /* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2009 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2014 Florian Henry <florian.henry@open-concept.pro>
- * Copyright (C) 2015-2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * Copyright (C) 2016 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2019 Thibault FOUCART <support@ptibogxiv.net>
- * Copyright (C) 2019-2020 Frédéric France <frederic.france@netlogic.fr>
- * Copyright (C) 2021 Maxime DEMAREST <maxime@indelog.fr>
- *
- * 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/don/class/don.class.php
- * \ingroup Donation
- * \brief File of class to manage donations
- */
- require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
- /**
- * Class to manage donations
- */
- class Don extends CommonObject
- {
- /**
- * @var string ID to identify managed object
- */
- public $element = 'don';
- /**
- * @var string Name of table without prefix where object is stored
- */
- public $table_element = 'don';
- /**
- * @var string Field with ID of parent key if this field has a parent
- */
- public $fk_element = 'fk_donation';
- /**
- * 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
- * @var int
- */
- public $ismultientitymanaged = 1;
- /**
- * @var string String with name of icon for object don. Must be the part after the 'object_' into object_myobject.png
- */
- public $picto = 'donation';
- /**
- * @var string Date of the donation
- */
- public $date;
- /**
- * amount of donation
- * @var double
- */
- public $amount;
- /**
- * @var string Thirdparty name
- */
- public $societe;
- /**
- * @var string Address
- */
- public $address;
- /**
- * @var string Zipcode
- */
- public $zip;
- /**
- * @var string Town
- */
- public $town;
- /**
- * @var string Email
- */
- public $email;
- /**
- * @var int 0 or 1
- */
- public $public;
- /**
- * @var int project ID
- */
- public $fk_project;
- /**
- * @var int type payment ID
- */
- public $fk_typepayment;
- public $num_payment;
- public $date_valid;
- /**
- * @var int payment mode id
- */
- public $modepaymentid = 0;
- /**
- * @var array Array of status label
- */
- public $labelStatus;
- /**
- * @var array Array of status label short
- */
- public $labelStatusShort;
- const STATUS_DRAFT = 0;
- const STATUS_VALIDATED = 1;
- const STATUS_PAID = 2;
- const STATUS_CANCELED = -1;
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- }
- /**
- * Returns the donation status label (draft, valid, abandoned, paid)
- *
- * @param int $mode 0=long label, 1=short label, 2=Picto + short label, 3=Picto, 4=Picto + long label, 5=Short label + Picto, 6=Long label + Picto
- * @return string Label of status
- */
- public function getLibStatut($mode = 0)
- {
- return $this->LibStatut($this->statut, $mode);
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Return the label of a given status
- *
- * @param int $status Id statut
- * @param int $mode 0=long label, 1=short label, 2=Picto + short label, 3=Picto, 4=Picto + long label, 5=Short label + Picto, 6=Long label + Picto
- * @return string Label of status
- */
- public function LibStatut($status, $mode = 0)
- {
- // phpcs:enable
- if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
- global $langs;
- $langs->load("donations");
- $this->labelStatus[-1] = $langs->transnoentitiesnoconv("Canceled");
- $this->labelStatus[0] = $langs->transnoentitiesnoconv("DonationStatusPromiseNotValidated");
- $this->labelStatus[1] = $langs->transnoentitiesnoconv("DonationStatusPromiseValidated");
- $this->labelStatus[2] = $langs->transnoentitiesnoconv("DonationStatusPaid");
- $this->labelStatusShort[-1] = $langs->transnoentitiesnoconv("Canceled");
- $this->labelStatusShort[0] = $langs->transnoentitiesnoconv("DonationStatusPromiseNotValidatedShort");
- $this->labelStatusShort[1] = $langs->transnoentitiesnoconv("DonationStatusPromiseValidatedShort");
- $this->labelStatusShort[2] = $langs->transnoentitiesnoconv("DonationStatusPaidShort");
- }
- $statusType = 'status'.$status;
- if ($status == self::STATUS_CANCELED) {
- $statusType = 'status9';
- }
- if ($status == self::STATUS_PAID) {
- $statusType = 'status6';
- }
- return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
- }
- /**
- * Initialise an instance with random values.
- * Used to build previews or test instances.
- * id must be 0 if object instance is a specimen.
- *
- * @return void
- */
- public function initAsSpecimen()
- {
- global $conf, $user, $langs;
- $now = dol_now();
- // Charge tableau des id de societe socids
- $socids = array();
- $sql = "SELECT rowid";
- $sql .= " FROM ".MAIN_DB_PREFIX."societe";
- $sql .= " WHERE client IN (1, 3)";
- $sql .= " AND entity = ".$conf->entity;
- $sql .= " LIMIT 10";
- $resql = $this->db->query($sql);
- if ($resql) {
- $num_socs = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num_socs) {
- $i++;
- $row = $this->db->fetch_row($resql);
- $socids[$i] = $row[0];
- }
- }
- // Initialise parametres
- $this->id = 0;
- $this->ref = 'SPECIMEN';
- $this->specimen = 1;
- $this->lastname = 'Doe';
- $this->firstname = 'John';
- $this->socid = 1;
- $this->date = $now;
- $this->date_valid = $now;
- $this->amount = 100.90;
- $this->public = 1;
- $this->societe = 'The Company';
- $this->address = 'Twist road';
- $this->zip = '99999';
- $this->town = 'Town';
- $this->note_private = 'Private note';
- $this->note_public = 'Public note';
- $this->email = 'email@email.com';
- $this->phone = '0123456789';
- $this->phone_mobile = '0606060606';
- $this->statut = 1;
- }
- /**
- * Check params and init ->errors array.
- * TODO This function seems to not be used by core code.
- *
- * @param int $minimum Minimum
- * @return int 0 if KO, >0 if OK
- */
- public function check($minimum = 0)
- {
- global $langs;
- $langs->load('main');
- $langs->load('companies');
- $error_string = array();
- $err = 0;
- if (dol_strlen(trim($this->societe)) == 0) {
- if ((dol_strlen(trim($this->lastname)) + dol_strlen(trim($this->firstname))) == 0) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Company').'/'.$langs->transnoentitiesnoconv('Firstname').'-'.$langs->transnoentitiesnoconv('Lastname'));
- $err++;
- }
- }
- if (dol_strlen(trim($this->address)) == 0) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Address'));
- $err++;
- }
- if (dol_strlen(trim($this->zip)) == 0) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Zip'));
- $err++;
- }
- if (dol_strlen(trim($this->town)) == 0) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Town'));
- $err++;
- }
- if (dol_strlen(trim($this->email)) == 0) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('EMail'));
- $err++;
- }
- $this->amount = trim($this->amount);
- $map = range(0, 9);
- $len = dol_strlen($this->amount);
- for ($i = 0; $i < $len; $i++) {
- if (!isset($map[substr($this->amount, $i, 1)])) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Amount'));
- $err++;
- $amount_invalid = 1;
- break;
- }
- }
- if (!$amount_invalid) {
- if ($this->amount == 0) {
- $error_string[] = $langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv('Amount'));
- $err++;
- } else {
- if ($this->amount < $minimum && $minimum > 0) {
- $error_string[] = $langs->trans('MinimumAmount', $langs->transnoentitiesnoconv('$minimum'));
- $err++;
- }
- }
- }
- if ($err) {
- $this->errors = $error_string;
- return 0;
- } else {
- return 1;
- }
- }
- /**
- * Create donation record into database
- *
- * @param User $user User who created the donation
- * @param int $notrigger Disable triggers
- * @return int <0 if KO, id of created donation if OK
- * TODO add numbering module for Ref
- */
- public function create($user, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- $ret = 0;
- $now = dol_now();
- // Clean parameters
- $this->address = ($this->address > 0 ? $this->address : $this->address);
- $this->zip = ($this->zip > 0 ? $this->zip : $this->zip);
- $this->town = ($this->town > 0 ? $this->town : $this->town);
- $this->country_id = ($this->country_id > 0 ? $this->country_id : $this->country_id);
- $this->country = ($this->country ? $this->country : $this->country);
- $this->amount = price2num($this->amount);
- // Check parameters
- if ($this->amount < 0) {
- $this->error = $langs->trans('FieldCannotBeNegative', $langs->transnoentitiesnoconv("Amount"));
- return -1;
- }
- $this->db->begin();
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."don (";
- $sql .= "datec";
- $sql .= ", entity";
- $sql .= ", amount";
- $sql .= ", fk_payment";
- $sql .= ", fk_soc";
- $sql .= ", firstname";
- $sql .= ", lastname";
- $sql .= ", societe";
- $sql .= ", address";
- $sql .= ", zip";
- $sql .= ", town";
- $sql .= ", fk_country";
- $sql .= ", public";
- $sql .= ", fk_projet";
- $sql .= ", note_private";
- $sql .= ", note_public";
- $sql .= ", fk_user_author";
- $sql .= ", fk_user_valid";
- $sql .= ", datedon";
- $sql .= ", email";
- $sql .= ", phone";
- $sql .= ", phone_mobile";
- $sql .= ") VALUES (";
- $sql .= "'".$this->db->idate($this->date ? $this->date : $now)."'";
- $sql .= ", ".((int) $conf->entity);
- $sql .= ", ".((float) $this->amount);
- $sql .= ", ".($this->modepaymentid ? $this->modepaymentid : "null");
- $sql .= ", ".($this->socid > 0 ? $this->socid : "null");
- $sql .= ", '".$this->db->escape($this->firstname)."'";
- $sql .= ", '".$this->db->escape($this->lastname)."'";
- $sql .= ", '".$this->db->escape($this->societe)."'";
- $sql .= ", '".$this->db->escape($this->address)."'";
- $sql .= ", '".$this->db->escape($this->zip)."'";
- $sql .= ", '".$this->db->escape($this->town)."'";
- $sql .= ", ".(int) ($this->country_id > 0 ? $this->country_id : 0);
- $sql .= ", ".(int) $this->public;
- $sql .= ", ".($this->fk_project > 0 ? (int) $this->fk_project : "null");
- $sql .= ", ".(!empty($this->note_private) ? ("'".$this->db->escape($this->note_private)."'") : "NULL");
- $sql .= ", ".(!empty($this->note_public) ? ("'".$this->db->escape($this->note_public)."'") : "NULL");
- $sql .= ", ".((int) $user->id);
- $sql .= ", null";
- $sql .= ", '".$this->db->idate($this->date)."'";
- $sql .= ", '".(!empty($this->email) ? $this->db->escape(trim($this->email)) : "")."'";
- $sql .= ", '".(!empty($this->phone) ? $this->db->escape(trim($this->phone)) : "")."'";
- $sql .= ", '".(!empty($this->phone_mobile) ? $this->db->escape(trim($this->phone_mobile)) : "")."'";
- $sql .= ")";
- $resql = $this->db->query($sql);
- if ($resql) {
- $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."don");
- $ret = $this->id;
- if (!$notrigger) {
- // Call trigger
- $result = $this->call_trigger('DON_CREATE', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- } else {
- $this->error = $this->db->lasterror();
- $this->errno = $this->db->lasterrno();
- $error++;
- }
- // Update extrafield
- if (!$error) {
- $result = $this->insertExtraFields();
- if ($result < 0) {
- $error++;
- }
- }
- if (!$error && (getDolGlobalString('MAIN_DISABLEDRAFTSTATUS') || getDolGlobalString('MAIN_DISABLEDRAFTSTATUS_DONATION'))) {
- //$res = $this->setValid($user);
- //if ($res < 0) $error++;
- }
- if (!$error) {
- $this->db->commit();
- return $ret;
- } else {
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Update a donation record
- *
- * @param User $user Objet utilisateur qui met a jour le don
- * @param int $notrigger Disable triggers
- * @return int >0 if OK, <0 if KO
- */
- public function update($user, $notrigger = 0)
- {
- global $langs, $conf;
- $error = 0;
- // Clean parameters
- $this->address = ($this->address > 0 ? $this->address : $this->address);
- $this->zip = ($this->zip > 0 ? $this->zip : $this->zip);
- $this->town = ($this->town > 0 ? $this->town : $this->town);
- $this->country_id = ($this->country_id > 0 ? $this->country_id : $this->country_id);
- $this->country = ($this->country ? $this->country : $this->country);
- $this->amount = price2num($this->amount);
- // Check parameters
- if ($this->amount < 0) {
- $this->error = $langs->trans('FieldCannotBeNegative', $langs->transnoentitiesnoconv("Amount"));
- return -1;
- }
- $this->db->begin();
- $sql = "UPDATE ".MAIN_DB_PREFIX."don SET";
- $sql .= " amount = ".((float) $this->amount);
- $sql .= ", fk_payment = ".($this->modepaymentid ? $this->modepaymentid : "null");
- $sql .= ", firstname = '".$this->db->escape($this->firstname)."'";
- $sql .= ", lastname='".$this->db->escape($this->lastname)."'";
- $sql .= ", societe='".$this->db->escape($this->societe)."'";
- $sql .= ", address='".$this->db->escape($this->address)."'";
- $sql .= ", zip='".$this->db->escape($this->zip)."'";
- $sql .= ", town='".$this->db->escape($this->town)."'";
- $sql .= ", fk_country = ".($this->country_id > 0 ? ((int) $this->country_id) : '0');
- $sql .= ", public=".((int) $this->public);
- $sql .= ", fk_projet=".($this->fk_project > 0 ? $this->fk_project : 'null');
- $sql .= ", note_private=".(!empty($this->note_private) ? ("'".$this->db->escape($this->note_private)."'") : "NULL");
- $sql .= ", note_public=".(!empty($this->note_public) ? ("'".$this->db->escape($this->note_public)."'") : "NULL");
- $sql .= ", datedon='".$this->db->idate($this->date)."'";
- $sql .= ", date_valid=".($this->date_valid ? "'".$this->db->idate($this->date)."'" : "null");
- $sql .= ", email='".$this->db->escape(trim($this->email))."'";
- $sql .= ", phone='".$this->db->escape(trim($this->phone))."'";
- $sql .= ", phone_mobile='".$this->db->escape(trim($this->phone_mobile))."'";
- $sql .= ", fk_statut=".((int) $this->statut);
- $sql .= " WHERE rowid = ".((int) $this->id);
- dol_syslog(get_class($this)."::Update", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- if (!$notrigger) {
- // Call trigger
- $result = $this->call_trigger('DON_MODIFY', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- // Update extrafield
- if (!$error) {
- $result = $this->insertExtraFields();
- if ($result < 0) {
- $error++;
- }
- }
- if (!$error) {
- $this->db->commit();
- $result = 1;
- } else {
- $this->db->rollback();
- $result = -1;
- }
- } else {
- $this->error = $this->db->lasterror();
- $this->errors[] = $this->error;
- $this->db->rollback();
- dol_syslog(get_class($this)."::Update error -2 ".$this->error, LOG_ERR);
- $result = -2;
- }
- return $result;
- }
- /**
- * Delete a donation from database
- *
- * @param User $user User
- * @param int $notrigger Disable triggers
- * @return int <0 if KO, 0 if not possible, >0 if OK
- */
- public function delete($user, $notrigger = 0)
- {
- global $user, $conf, $langs;
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $error = 0;
- $this->db->begin();
- if (!$error && !$notrigger) {
- // Call trigger
- $result = $this->call_trigger('DON_DELETE', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- // Delete donation
- if (!$error) {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."don_extrafields";
- $sql .= " WHERE fk_object = ".((int) $this->id);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $this->errors[] = $this->db->lasterror();
- $error++;
- }
- }
- if (!$error) {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."don";
- $sql .= " WHERE rowid=".((int) $this->id);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $this->errors[] = $this->db->lasterror();
- $error++;
- }
- }
- if (!$error) {
- $this->db->commit();
- return 1;
- } else {
- foreach ($this->errors as $errmsg) {
- dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
- $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
- }
- dol_syslog(get_class($this)."::delete ".$this->error, LOG_ERR);
- $this->db->rollback();
- return -1;
- }
- }
- /**
- * Load donation from database
- *
- * @param int $id Id of donation to load
- * @param string $ref Ref of donation to load
- * @return int <0 if KO, >0 if OK
- */
- public function fetch($id, $ref = '')
- {
- global $conf;
- $sql = "SELECT d.rowid, d.datec, d.date_valid, d.tms as datem, d.datedon,";
- $sql .= " d.fk_soc as socid,d.firstname, d.lastname, d.societe, d.amount, d.fk_statut, d.address, d.zip, d.town, ";
- $sql .= " d.fk_country, d.country as country_olddata, d.public, d.amount, d.fk_payment, d.paid, d.note_private, d.note_public, d.email, d.phone, ";
- $sql .= " d.phone_mobile, d.fk_projet as fk_project, d.model_pdf,";
- $sql .= " p.ref as project_ref,";
- $sql .= " cp.libelle as payment_label, cp.code as payment_code,";
- $sql .= " c.code as country_code, c.label as country";
- $sql .= " FROM ".MAIN_DB_PREFIX."don as d";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."projet as p ON p.rowid = d.fk_projet";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as cp ON cp.id = d.fk_payment";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_country as c ON d.fk_country = c.rowid";
- $sql .= " WHERE d.entity IN (".getEntity('donation').")";
- if (!empty($id)) {
- $sql .= " AND d.rowid=".((int) $id);
- } elseif (!empty($ref)) {
- $sql .= " AND d.ref='".$this->db->escape($ref)."'";
- }
- 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->date_creation = $this->db->jdate($obj->datec);
- $this->datec = $this->db->jdate($obj->datec);
- $this->date_validation = $this->db->jdate($obj->date_valid);
- $this->date_valid = $this->db->jdate($obj->date_valid);
- $this->date_modification = $this->db->jdate($obj->datem);
- $this->datem = $this->db->jdate($obj->datem);
- $this->date = $this->db->jdate($obj->datedon);
- $this->socid = $obj->socid;
- $this->firstname = $obj->firstname;
- $this->lastname = $obj->lastname;
- $this->societe = $obj->societe;
- $this->statut = $obj->fk_statut;
- $this->address = $obj->address;
- $this->zip = $obj->zip;
- $this->town = $obj->town;
- $this->country_id = $obj->fk_country;
- $this->country_code = $obj->country_code;
- $this->country = $obj->country;
- $this->country_olddata = $obj->country_olddata; // deprecated
- $this->email = $obj->email;
- $this->phone = $obj->phone;
- $this->phone_mobile = $obj->phone_mobile;
- $this->project = $obj->project_ref;
- $this->fk_projet = $obj->fk_project; // deprecated
- $this->fk_project = $obj->fk_project;
- $this->public = $obj->public;
- $this->mode_reglement_id = $obj->fk_payment;
- $this->mode_reglement_code = $obj->payment_code;
- $this->mode_reglement = $obj->payment_label;
- $this->paid = $obj->paid;
- $this->amount = $obj->amount;
- $this->note_private = $obj->note_private;
- $this->note_public = $obj->note_public;
- $this->model_pdf = $obj->model_pdf;
- $this->modelpdf = $obj->model_pdf; // deprecated
- // Retrieve all extrafield
- // fetch optionals attributes and labels
- $this->fetch_optionals();
- }
- return 1;
- } else {
- dol_print_error($this->db);
- return -1;
- }
- }
- /**
- * Validate a intervention
- *
- * @param User $user User that validate
- * @param int $notrigger 1=Does not execute triggers, 0= execute triggers
- * @return int <0 if KO, >0 if OK
- */
- public function setValid($user, $notrigger = 0)
- {
- return $this->valid_promesse($this->id, $user->id, $notrigger);
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Validate a promise of donation
- *
- * @param int $id id of donation
- * @param int $userid User who validate the donation/promise
- * @param int $notrigger Disable triggers
- * @return int <0 if KO, >0 if OK
- */
- public function valid_promesse($id, $userid, $notrigger = 0)
- {
- // phpcs:enable
- global $langs, $user;
- $error = 0;
- $this->db->begin();
- $sql = "UPDATE ".MAIN_DB_PREFIX."don SET fk_statut = 1, fk_user_valid = ".((int) $userid)." WHERE rowid = ".((int) $id)." AND fk_statut = 0";
- $resql = $this->db->query($sql);
- if ($resql) {
- if ($this->db->affected_rows($resql)) {
- if (!$notrigger) {
- // Call trigger
- $result = $this->call_trigger('DON_VALIDATE', $user);
- if ($result < 0) {
- $error++;
- }
- // End call triggers
- }
- }
- } else {
- $error++;
- $this->error = $this->db->lasterror();
- }
- if (!$error) {
- $this->statut = 1;
- $this->db->commit();
- return 1;
- } else {
- $this->db->rollback();
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Classify the donation as paid, the donation was received
- *
- * @deprecated
- * @see setPaid()
- * @param int $id id of donation
- * @param int $modepayment mode of payment
- * @return int <0 if KO, >0 if OK
- */
- public function set_paid($id, $modepayment = 0)
- {
- // phpcs:enable
- dol_syslog(get_class($this)."::set_paid is deprecated, use setPaid instead", LOG_NOTICE);
- return $this->setPaid($id, $modepayment);
- }
- /**
- * Classify the donation as paid, the donation was received
- *
- * @param int $id id of donation
- * @param int $modepayment mode of payment
- * @return int <0 if KO, >0 if OK
- */
- public function setPaid($id, $modepayment = 0)
- {
- $sql = "UPDATE ".MAIN_DB_PREFIX."don SET fk_statut = 2, paid = 1";
- if ($modepayment) {
- $sql .= ", fk_payment = ".((int) $modepayment);
- }
- $sql .= " WHERE rowid = ".((int) $id)." AND fk_statut = 1";
- $resql = $this->db->query($sql);
- if ($resql) {
- if ($this->db->affected_rows($resql)) {
- $this->statut = 2;
- $this->paid = 1;
- return 1;
- } else {
- return 0;
- }
- } else {
- dol_print_error($this->db);
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Set donation to status cancelled
- *
- * @param int $id id of donation
- * @return int <0 if KO, >0 if OK
- */
- public function set_cancel($id)
- {
- // phpcs:enable
- $sql = "UPDATE ".MAIN_DB_PREFIX."don SET fk_statut = -1 WHERE rowid = ".((int) $id);
- $resql = $this->db->query($sql);
- if ($resql) {
- if ($this->db->affected_rows($resql)) {
- $this->statut = -1;
- return 1;
- } else {
- return 0;
- }
- } else {
- dol_print_error($this->db);
- return -1;
- }
- }
- /**
- * Set cancel status
- *
- * @param User $user Object user that modify
- * @param int $notrigger 1=Does not execute triggers, 0=Execute triggers
- * @return int <0 if KO, 0=Nothing done, >0 if OK
- */
- public function reopen($user, $notrigger = 0)
- {
- // Protection
- if ($this->statut != self::STATUS_CANCELED) {
- return 0;
- }
- /*if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->bom->write))
- || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->bom->bom_advance->validate))))
- {
- $this->error='Permission denied';
- return -1;
- }*/
- return $this->setStatusCommon($user, self::STATUS_VALIDATED, $notrigger, 'DON_REOPEN');
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Sum of donations
- *
- * @param string $param 1=promesses de dons validees , 2=xxx, 3=encaisses
- * @return int Summ of donations
- */
- public function sum_donations($param)
- {
- // phpcs:enable
- global $conf;
- $result = 0;
- $sql = "SELECT sum(amount) as total";
- $sql .= " FROM ".MAIN_DB_PREFIX."don";
- $sql .= " WHERE fk_statut = ".((int) $param);
- $sql .= " AND entity = ".$conf->entity;
- $resql = $this->db->query($sql);
- if ($resql) {
- $obj = $this->db->fetch_object($resql);
- $result = $obj->total;
- }
- return $result;
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Charge indicateurs this->nb pour le tableau de bord
- *
- * @return int <0 if KO, >0 if OK
- */
- public function load_state_board()
- {
- // phpcs:enable
- global $conf;
- $this->nb = array();
- $sql = "SELECT count(d.rowid) as nb";
- $sql .= " FROM ".MAIN_DB_PREFIX."don as d";
- $sql .= " WHERE d.fk_statut > 0";
- $sql .= " AND d.entity IN (".getEntity('donation').")";
- $resql = $this->db->query($sql);
- if ($resql) {
- while ($obj = $this->db->fetch_object($resql)) {
- $this->nb["donations"] = $obj->nb;
- }
- $this->db->free($resql);
- return 1;
- } else {
- dol_print_error($this->db);
- $this->error = $this->db->error();
- 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 $moretitle Add more text to title tooltip
- * @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, $moretitle = '', $save_lastsearch_value = -1)
- {
- global $conf, $langs, $hookmanager;
- if (!empty($conf->dol_no_mouse_hover)) {
- $notooltip = 1; // Force disable tooltips
- }
- $result = '';
- $label = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("Donation").'</u>';
- if (isset($this->status)) {
- $label .= ' '.$this->getLibStatut(5);
- }
- if (!empty($this->id)) {
- $label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->id;
- $label .= '<br><b>'.$langs->trans('Date').':</b> '.dol_print_date($this->date, 'day');
- }
- if ($moretitle) {
- $label .= ' - '.$moretitle;
- }
- $url = DOL_URL_ROOT.'/don/card.php?id='.$this->id;
- $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.'" title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip">';
- $linkend = '</a>';
- $result .= $linkstart;
- if ($withpicto) {
- $result .= img_object(($notooltip ? '' : $label), $this->picto, ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
- }
- if ($withpicto != 2) {
- $result .= $this->ref;
- }
- $result .= $linkend;
- global $action;
- $hookmanager->initHooks(array($this->element . 'dao'));
- $parameters = array('id'=>$this->id, 'getnomurl' => &$result);
- $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook > 0) {
- $result = $hookmanager->resPrint;
- } else {
- $result .= $hookmanager->resPrint;
- }
- return $result;
- }
- /**
- * Information on record
- *
- * @param int $id Id of record
- * @return void
- */
- public function info($id)
- {
- $sql = 'SELECT d.rowid, d.datec, d.fk_user_author, d.fk_user_valid,';
- $sql .= ' d.tms as datem';
- $sql .= ' FROM '.MAIN_DB_PREFIX.'don as d';
- $sql .= ' WHERE d.rowid = '.((int) $id);
- dol_syslog(get_class($this).'::info', LOG_DEBUG);
- $result = $this->db->query($sql);
- if ($result) {
- if ($this->db->num_rows($result)) {
- $obj = $this->db->fetch_object($result);
- $this->id = $obj->rowid;
- $this->user_creation_id = $obj->fk_user_author;
- $this->user_validation_id = $obj->fk_user_valid;
- $this->date_creation = $this->db->jdate($obj->datec);
- $this->date_modification = (!empty($obj->tms) ? $this->db->jdate($obj->tms) : "");
- }
- $this->db->free($result);
- } else {
- dol_print_error($this->db);
- }
- }
- /**
- * Create a document onto disk according to template module.
- *
- * @param string $modele Force template to use ('' to not force)
- * @param Translate $outputlangs objet lang a utiliser pour traduction
- * @param int $hidedetails Hide details of lines
- * @param int $hidedesc Hide description
- * @param int $hideref Hide ref
- * @return int 0 if KO, 1 if OK
- */
- public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
- {
- global $conf, $langs;
- $langs->load("bills");
- if (!dol_strlen($modele)) {
- $modele = 'html_cerfafr';
- if ($this->model_pdf) {
- $modele = $this->model_pdf;
- } elseif (!empty($conf->global->DON_ADDON_MODEL)) {
- $modele = $conf->global->DON_ADDON_MODEL;
- }
- }
- $modelpath = "core/modules/dons/";
- // TODO Restore use of commonGenerateDocument instead of dedicated code here
- //return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
- // Increase limit for PDF build
- $err = error_reporting();
- error_reporting(0);
- @set_time_limit(120);
- error_reporting($err);
- $srctemplatepath = '';
- // If selected modele is a filename template (then $modele="modelname:filename")
- $tmp = explode(':', $modele, 2);
- if (!empty($tmp[1])) {
- $modele = $tmp[0];
- $srctemplatepath = $tmp[1];
- }
- // Search template files
- $file = ''; $classname = ''; $filefound = 0;
- $dirmodels = array('/');
- if (is_array($conf->modules_parts['models'])) {
- $dirmodels = array_merge($dirmodels, $conf->modules_parts['models']);
- }
- foreach ($dirmodels as $reldir) {
- foreach (array('html', 'doc', 'pdf') as $prefix) {
- $file = $prefix."_".preg_replace('/^html_/', '', $modele).".modules.php";
- // On verifie l'emplacement du modele
- $file = dol_buildpath($reldir."core/modules/dons/".$file, 0);
- if (file_exists($file)) {
- $filefound = 1;
- $classname = $prefix.'_'.$modele;
- break;
- }
- }
- if ($filefound) {
- break;
- }
- }
- // Charge le modele
- if ($filefound) {
- require_once $file;
- $object = $this;
- $classname = $modele;
- $obj = new $classname($this->db);
- // We save charset_output to restore it because write_file can change it if needed for
- // output format that does not support UTF8.
- $sav_charset_output = $outputlangs->charset_output;
- if ($obj->write_file($object, $outputlangs, $srctemplatepath, $hidedetails, $hidedesc, $hideref) > 0) {
- $outputlangs->charset_output = $sav_charset_output;
- // we delete preview files
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- dol_delete_preview($object);
- return 1;
- } else {
- $outputlangs->charset_output = $sav_charset_output;
- dol_syslog("Erreur dans don_create");
- dol_print_error($this->db, $obj->error);
- return 0;
- }
- } else {
- print $langs->trans("Error")." ".$langs->trans("ErrorFileDoesNotExists", $file);
- return 0;
- }
- }
- /**
- * Function used to replace a thirdparty id with another one.
- *
- * @param DoliDB $db Database handler
- * @param int $origin_id Old third-party id
- * @param int $dest_id New third-party id
- * @return bool
- */
- public static function replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
- {
- $tables = array(
- 'don'
- );
- return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
- }
- /**
- * Function to get reamain to pay for a donation
- *
- * @return int <0 if KO, > reamain to pay if OK
- */
- public function getRemainToPay()
- {
- dol_syslog(__METHOD__, LOG_DEBUG);
- if (empty($this->id)) {
- $this->error = 'Missing object id';
- $this->errors[] = $this->error;
- dol_syslog(__METHOD__.' : '.$this->error, LOG_ERR);
- return -1;
- }
- $sql = "SELECT SUM(amount) as sum_amount FROM ".MAIN_DB_PREFIX."payment_donation WHERE fk_donation = ".((int) $this->id);
- $resql = $this->db->query($sql);
- if (!$resql) {
- dol_print_error($this->db);
- return -2;
- } else {
- $sum_amount = (float) $this->db->fetch_object($resql)->sum_amount;
- return (float) $this->amount - $sum_amount;
- }
- }
- }
|