123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961 |
- <?php
- /* Advance Targeting Emailling for mass emailing module
- * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
- *
- * 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 comm/mailing/class/advtargetemailing.class.php
- * \ingroup mailing
- * \brief This file is an example CRUD class file (Create/Read/Update/Delete)
- */
- /**
- * Class to manage advanced emailing target selector
- */
- class AdvanceTargetingMailing extends CommonObject
- {
- /**
- * @var DoliDB Database handler.
- */
- public $db;
- /**
- * @var string ID to identify managed object
- */
- public $element = 'advtargetemailing';
- /**
- * @var string Name of table without prefix where object is stored
- */
- public $table_element = 'mailing_advtarget';
- /**
- * @var int ID
- */
- public $id;
- /**
- * @var string name
- */
- public $name;
- /**
- * @var int element id (it's not the name of a field)
- */
- public $fk_element;
- /**
- * @var string type element
- */
- public $type_element;
- /**
- * @var string filter value
- */
- public $filtervalue;
- /**
- * @var int user author id
- */
- public $fk_user_author;
- /**
- * @var int|string datec
- */
- public $datec = '';
- /**
- * @var int user mod id
- */
- public $fk_user_mod;
- /**
- * @var int|string tms
- */
- public $tms = '';
- /**
- * @var array select target type
- */
- public $select_target_type = array();
- /**
- * @var array type status comm prospect
- */
- public $type_statuscommprospect = array();
- public $thirdparty_lines;
- public $contact_lines;
- /**
- * Constructor
- *
- * @param DoliDb $db Database handler
- */
- public function __construct($db)
- {
- global $langs;
- $langs->load('customers');
- $this->db = $db;
- $this->select_target_type = array(
- '2' => $langs->trans('Contacts'),
- '1' => $langs->trans('Contacts').'+'.$langs->trans('ThirdParty'),
- '3' => $langs->trans('ThirdParty'),
- '4' => $langs->trans('ContactsWithThirdpartyFilter')
- );
- require_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php';
- $customerStatic = new Client($this->db);
- $customerStatic->loadCacheOfProspStatus();
- if (!empty($customerStatic->cacheprospectstatus)) {
- foreach ($customerStatic->cacheprospectstatus as $dataProspectSt) {
- $this->type_statuscommprospect[$dataProspectSt['id']]=$dataProspectSt['label'];
- }
- } else {
- $this->type_statuscommprospect = array(
- -1 => $langs->trans("StatusProspect-1"),
- 0 => $langs->trans("StatusProspect0"),
- 1 => $langs->trans("StatusProspect1"),
- 2 => $langs->trans("StatusProspect2"),
- 3 => $langs->trans("StatusProspect3")
- );
- }
- }
- /**
- * Create object into database
- *
- * @param User $user User that creates
- * @param int $notrigger 0=launch triggers after, 1=disable triggers
- * @return int Return integer <0 if KO, Id of created object if OK
- */
- public function create($user, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- // Clean parameters
- if (isset($this->fk_element)) {
- $this->fk_element = (int) $this->fk_element;
- }
- if (isset($this->type_element)) {
- $this->type_element = trim($this->type_element);
- }
- if (isset($this->name)) {
- $this->name = trim($this->name);
- }
- if (isset($this->filtervalue)) {
- $this->filtervalue = trim($this->filtervalue);
- }
- // Check parameters
- // Put here code to add control on parameters values
- // Insert request
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."mailing_advtarget(";
- $sql .= "name,";
- $sql .= "entity,";
- $sql .= "fk_element,";
- $sql .= "type_element,";
- $sql .= "filtervalue,";
- $sql .= "fk_user_author,";
- $sql .= "datec,";
- $sql .= "fk_user_mod";
- $sql .= ") VALUES (";
- $sql .= " ".(!isset($this->name) ? 'NULL' : "'".$this->db->escape($this->name)."'").",";
- $sql .= " ".$conf->entity.",";
- $sql .= " ".(!isset($this->fk_element) ? 'NULL' : "'".$this->db->escape($this->fk_element)."'").",";
- $sql .= " ".(!isset($this->type_element) ? 'NULL' : "'".$this->db->escape($this->type_element)."'").",";
- $sql .= " ".(!isset($this->filtervalue) ? 'NULL' : "'".$this->db->escape($this->filtervalue)."'").",";
- $sql .= " ".$user->id.",";
- $sql .= " '".$this->db->idate(dol_now())."',";
- $sql .= " ".$user->id;
- $sql .= ")";
- $this->db->begin();
- dol_syslog(get_class($this)."::create", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $error++;
- $this->errors[] = "Error ".$this->db->lasterror();
- }
- if (!$error) {
- $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."mailing_advtarget");
- }
- // Commit or rollback
- if ($error) {
- foreach ($this->errors as $errmsg) {
- dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
- $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
- }
- $this->db->rollback();
- return -1 * $error;
- } else {
- $this->db->commit();
- return $this->id;
- }
- }
- /**
- * Load object in memory from the database
- *
- * @param int $id Id object
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function fetch($id)
- {
- global $langs;
- $sql = "SELECT";
- $sql .= " t.rowid,";
- $sql .= " t.name,";
- $sql .= " t.entity,";
- $sql .= " t.fk_element,";
- $sql .= " t.type_element,";
- $sql .= " t.filtervalue,";
- $sql .= " t.fk_user_author,";
- $sql .= " t.datec,";
- $sql .= " t.fk_user_mod,";
- $sql .= " t.tms";
- $sql .= " FROM ".MAIN_DB_PREFIX."mailing_advtarget as t";
- $sql .= " WHERE t.rowid = ".((int) $id);
- 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->name = $obj->name;
- $this->entity = $obj->entity;
- $this->fk_element = $obj->fk_element;
- $this->type_element = $obj->type_element;
- $this->filtervalue = $obj->filtervalue;
- $this->fk_user_author = $obj->fk_user_author;
- $this->datec = $this->db->jdate($obj->datec);
- $this->fk_user_mod = $obj->fk_user_mod;
- $this->tms = $this->db->jdate($obj->tms);
- }
- $this->db->free($resql);
- return 1;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Load object in memory from the database
- *
- * @param int $id Id object
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function fetch_by_mailing($id = 0)
- {
- // phpcs:enable
- global $langs;
- $sql = "SELECT";
- $sql .= " t.rowid,";
- $sql .= " t.name,";
- $sql .= " t.entity,";
- $sql .= " t.fk_element,";
- $sql .= " t.type_element,";
- $sql .= " t.filtervalue,";
- $sql .= " t.fk_user_author,";
- $sql .= " t.datec,";
- $sql .= " t.fk_user_mod,";
- $sql .= " t.tms";
- $sql .= " FROM ".MAIN_DB_PREFIX."mailing_advtarget as t";
- if (!empty($id)) {
- $sql .= " WHERE t.fk_element = ".((int) $id)." AND type_element = 'mailing'";
- } else {
- $sql .= " WHERE t.fk_element = ".((int) $this->fk_element)." AND type_element = 'mailing'";
- }
- 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->name = $obj->name;
- $this->entity = $obj->entity;
- $this->fk_element = $obj->fk_element;
- $this->type_element = $obj->type_element;
- $this->filtervalue = $obj->filtervalue;
- $this->fk_user_author = $obj->fk_user_author;
- $this->datec = $this->db->jdate($obj->datec);
- $this->fk_user_mod = $obj->fk_user_mod;
- $this->tms = $this->db->jdate($obj->tms);
- }
- $this->db->free($resql);
- return 1;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Load object in memory from the database
- *
- * @param int $id Id object
- * @param string $type_element Type target
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function fetch_by_element($id = 0, $type_element = 'mailing')
- {
- // phpcs:enable
- global $langs;
- $sql = "SELECT";
- $sql .= " t.rowid,";
- $sql .= " t.name,";
- $sql .= " t.entity,";
- $sql .= " t.fk_element,";
- $sql .= " t.type_element,";
- $sql .= " t.filtervalue,";
- $sql .= " t.fk_user_author,";
- $sql .= " t.datec,";
- $sql .= " t.fk_user_mod,";
- $sql .= " t.tms";
- $sql .= " FROM ".MAIN_DB_PREFIX."mailing_advtarget as t";
- if (!empty($id)) {
- $sql .= " WHERE t.fk_element = ".((int) $id)." AND type_element = '".$this->db->escape($type_element)."'";
- } else {
- $sql .= " WHERE t.fk_element = ".((int) $this->fk_element)." AND type_element = '".$this->db->escape($type_element)."'";
- }
- 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->name = $obj->name;
- $this->entity = $obj->entity;
- $this->fk_element = $obj->fk_element;
- $this->type_element = $obj->type_element;
- $this->filtervalue = $obj->filtervalue;
- $this->fk_user_author = $obj->fk_user_author;
- $this->datec = $this->db->jdate($obj->datec);
- $this->fk_user_mod = $obj->fk_user_mod;
- $this->tms = $this->db->jdate($obj->tms);
- }
- $this->db->free($resql);
- return 1;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
- return -1;
- }
- }
- /**
- * Update object into database
- *
- * @param User $user User that modifies
- * @param int $notrigger 0=launch triggers after, 1=disable triggers
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function update($user, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- // Clean parameters
- if (isset($this->fk_element)) {
- $this->fk_element = (int) $this->fk_element;
- }
- if (isset($this->type_element)) {
- $this->type_element = trim($this->type_element);
- }
- if (isset($this->name)) {
- $this->name = trim($this->name);
- }
- if (isset($this->filtervalue)) {
- $this->filtervalue = trim($this->filtervalue);
- }
- // Check parameters
- // Put here code to add a control on parameters values
- // Update request
- $sql = "UPDATE ".MAIN_DB_PREFIX."mailing_advtarget SET";
- $sql .= " name=".(isset($this->name) ? "'".$this->db->escape($this->name)."'" : "''").",";
- $sql .= " entity=".$conf->entity.",";
- $sql .= " fk_element=".(isset($this->fk_element) ? $this->fk_element : "null").",";
- $sql .= " type_element=".(isset($this->type_element) ? "'".$this->db->escape($this->type_element)."'" : "null").",";
- $sql .= " filtervalue=".(isset($this->filtervalue) ? "'".$this->db->escape($this->filtervalue)."'" : "null").",";
- $sql .= " fk_user_mod=".$user->id;
- $sql .= " WHERE rowid=".((int) $this->id);
- $this->db->begin();
- dol_syslog(get_class($this)."::update", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $error++;
- $this->errors[] = "Error ".$this->db->lasterror();
- }
- // Commit or rollback
- if ($error) {
- foreach ($this->errors as $errmsg) {
- dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
- $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
- }
- $this->db->rollback();
- return -1 * $error;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Delete object in database
- *
- * @param User $user User that deletes
- * @param int $notrigger 0=launch triggers after, 1=disable triggers
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function delete($user, $notrigger = 0)
- {
- global $conf, $langs;
- $error = 0;
- $this->db->begin();
- if (!$error) {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."mailing_advtarget";
- $sql .= " WHERE rowid=".((int) $this->id);
- dol_syslog(get_class($this)."::delete sql=".$sql);
- $resql = $this->db->query($sql);
- if (!$resql) {
- $error++;
- $this->errors[] = "Error ".$this->db->lasterror();
- }
- }
- // Commit or rollback
- if ($error) {
- foreach ($this->errors as $errmsg) {
- dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
- $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
- }
- $this->db->rollback();
- return -1 * $error;
- } else {
- $this->db->commit();
- return 1;
- }
- }
- /**
- * Save query in database to retrieve it
- *
- * @param User $user User that deletes
- * @param array $arrayquery All element to Query
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function savequery($user, $arrayquery)
- {
- global $langs, $conf;
- if (!empty($arrayquery)) {
- $result = $this->fetch_by_mailing($this->fk_element);
- $this->filtervalue = json_encode($arrayquery);
- if ($result < 0) {
- return -1;
- }
- if (!empty($this->id)) {
- $this->update($user);
- } else {
- $this->create($user);
- }
- }
- return -1;
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Load object in memory from database
- *
- * @param array $arrayquery All element to Query
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function query_thirdparty($arrayquery)
- {
- // phpcs:enable
- global $langs, $conf, $extrafields;
- $sql = "SELECT";
- $sql .= " t.rowid";
- $sql .= " FROM ".MAIN_DB_PREFIX."societe as t";
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."societe_extrafields as te ON te.fk_object=t.rowid ";
- $sqlwhere = array();
- $sqlwhere[] = 't.entity IN ('.getEntity('societe').')';
- if (count($arrayquery) > 0) {
- if (array_key_exists('cust_saleman', $arrayquery)) {
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."societe_commerciaux as saleman ON saleman.fk_soc=t.rowid ";
- }
- if (array_key_exists('cust_categ', $arrayquery)) {
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."categorie_societe as custcateg ON custcateg.fk_soc=t.rowid ";
- }
- if (!empty($arrayquery['cust_name'])) {
- $sqlwhere[] = $this->transformToSQL('t.nom', $arrayquery['cust_name']);
- }
- if (!empty($arrayquery['cust_code'])) {
- $sqlwhere[] = $this->transformToSQL('t.code_client', $arrayquery['cust_code']);
- }
- if (!empty($arrayquery['cust_adress'])) {
- $sqlwhere[] = $this->transformToSQL('t.address', $arrayquery['cust_adress']);
- }
- if (!empty($arrayquery['cust_zip'])) {
- $sqlwhere[] = $this->transformToSQL('t.zip', $arrayquery['cust_zip']);
- }
- if (!empty($arrayquery['cust_city'])) {
- $sqlwhere[] = $this->transformToSQL('t.town', $arrayquery['cust_city']);
- }
- if (!empty($arrayquery['cust_mothercompany'])) {
- $str = $this->transformToSQL('nom', $arrayquery['cust_mothercompany']);
- $sqlwhere[] = " (t.parent IN (SELECT rowid FROM ".MAIN_DB_PREFIX."societe WHERE (".$str.")))";
- }
- if (!empty($arrayquery['cust_status']) && count($arrayquery['cust_status']) > 0) {
- $sqlwhere[] = " (t.status IN (".$this->db->sanitize(implode(',', $arrayquery['cust_status']))."))";
- }
- if (!empty($arrayquery['cust_typecust']) && count($arrayquery['cust_typecust']) > 0) {
- $sqlwhere[] = " (t.client IN (".$this->db->sanitize(implode(',', $arrayquery['cust_typecust']))."))";
- }
- if (!empty($arrayquery['cust_comm_status']) && count($arrayquery['cust_comm_status']) > 0) {
- $sqlwhere[] = " (t.fk_stcomm IN (".$this->db->sanitize(implode(',', $arrayquery['cust_comm_status']))."))";
- }
- if (!empty($arrayquery['cust_prospect_status']) && count($arrayquery['cust_prospect_status']) > 0) {
- $sqlwhere[] = " (t.fk_prospectlevel IN (".$this->db->sanitize("'".implode("','", $arrayquery['cust_prospect_status'])."'", 1)."))";
- }
- if (!empty($arrayquery['cust_typeent']) && count($arrayquery['cust_typeent']) > 0) {
- $sqlwhere[] = " (t.fk_typent IN (".$this->db->sanitize(implode(',', $arrayquery['cust_typeent']))."))";
- }
- if (!empty($arrayquery['cust_saleman']) && count($arrayquery['cust_saleman']) > 0) {
- $sqlwhere[] = " (saleman.fk_user IN (".$this->db->sanitize(implode(',', $arrayquery['cust_saleman']))."))";
- }
- if (!empty($arrayquery['cust_country']) && count($arrayquery['cust_country']) > 0) {
- $sqlwhere[] = " (t.fk_pays IN (".$this->db->sanitize(implode(',', $arrayquery['cust_country']))."))";
- }
- if (!empty($arrayquery['cust_effectif_id']) && count($arrayquery['cust_effectif_id']) > 0) {
- $sqlwhere[] = " (t.fk_effectif IN (".$this->db->sanitize(implode(',', $arrayquery['cust_effectif_id']))."))";
- }
- if (!empty($arrayquery['cust_categ']) && count($arrayquery['cust_categ']) > 0) {
- $sqlwhere[] = " (custcateg.fk_categorie IN (".$this->db->sanitize(implode(',', $arrayquery['cust_categ']))."))";
- }
- if (!empty($arrayquery['cust_language']) && count($arrayquery['cust_language']) > 0) {
- $sqlwhere[] = " (t.default_lang IN (".$this->db->sanitize("'".implode("','", $arrayquery['cust_language'])."'", 1)."))";
- }
- //Standard Extrafield feature
- if (!getDolGlobalString('MAIN_EXTRAFIELDS_DISABLED')) {
- $socstatic = new Societe($this->db);
- $elementtype = $socstatic->table_element;
- $extrafields->fetch_name_optionals_label($elementtype);
- foreach ($extrafields->attributes[$elementtype]['label'] as $key => $val) {
- if (($extrafields->attributes[$elementtype]['type'][$key] == 'varchar') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'text')) {
- if (!empty($arrayquery['options_'.$key])) {
- $sqlwhere[] = " (te.".$key." LIKE '".$this->db->escape($arrayquery["options_".$key])."')";
- }
- } elseif (($extrafields->attributes[$elementtype]['type'][$key] == 'int') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'double')) {
- if (!empty($arrayquery['options_'.$key.'_max'])) {
- $sqlwhere[] = " (te.".$key." >= ".((float) $arrayquery["options_".$key."_max"])." AND te.".$key." <= ".((float) $arrayquery["options_".$key.'_min']).")";
- }
- } elseif (($extrafields->attributes[$elementtype]['type'][$key] == 'date') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'datetime')) {
- if (!empty($arrayquery['options_'.$key.'_end_dt'])) {
- $sqlwhere[] = " (te.".$key." >= '".$this->db->idate($arrayquery["options_".$key."_st_dt"])."' AND te.".$key." <= '".$this->db->idate($arrayquery["options_".$key."_end_dt"])."')";
- }
- } elseif ($extrafields->attributes[$elementtype]['type'][$key] == 'boolean') {
- if ($arrayquery['options_'.$key] != '') {
- $sqlwhere[] = " (te.".$key." = ".((int) $arrayquery["options_".$key]).")";
- }
- } elseif ($extrafields->attributes[$elementtype]['type'][$key] == 'link') {
- if ($arrayquery['options_'.$key] > 0) {
- $sqlwhere[]= " (te.".$key." = ".((int) $arrayquery["options_".$key]).")";
- }
- } else {
- if (is_array($arrayquery['options_'.$key])) {
- $sqlwhere[] = " (te.".$key." IN (".$this->db->sanitize("'".implode("','", $arrayquery["options_".$key])."'", 1)."))";
- } elseif (!empty($arrayquery['options_'.$key])) {
- $sqlwhere[] = " (te.".$key." LIKE '".$this->db->escape($arrayquery["options_".$key])."')";
- }
- }
- }
- }
- if (count($sqlwhere) > 0) {
- $sql .= " WHERE ".implode(" AND ", $sqlwhere);
- }
- }
- dol_syslog(get_class($this)."::query_thirdparty", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $this->thirdparty_lines = array();
- $num = $this->db->num_rows($resql);
- $i = 0;
- if ($num) {
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- $this->thirdparty_lines[$i] = $obj->rowid;
- $i++;
- }
- }
- $this->db->free($resql);
- return $num;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- dol_syslog(get_class($this)."::query_thirdparty ".$this->error, LOG_ERR);
- return -1;
- }
- }
- // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
- /**
- * Load object in memory from database
- *
- * @param array $arrayquery All element to Query
- * @param int $withThirdpartyFilter add contact with tridparty filter
- * @return int Return integer <0 if KO, >0 if OK
- */
- public function query_contact($arrayquery, $withThirdpartyFilter = 0)
- {
- // phpcs:enable
- global $langs, $conf;
- $sql = "SELECT";
- $sql .= " t.rowid";
- $sql .= " FROM ".MAIN_DB_PREFIX."socpeople as t";
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."socpeople_extrafields as te ON te.fk_object=t.rowid ";
- if (!empty($withThirdpartyFilter)) {
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."societe as ts ON ts.rowid=t.fk_soc";
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."societe_extrafields as tse ON tse.fk_object=ts.rowid ";
- }
- $sqlwhere = array();
- $sqlwhere[] = 't.entity IN ('.getEntity('contact').')';
- if (count($arrayquery) > 0) {
- if (array_key_exists('contact_categ', $arrayquery)) {
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."categorie_contact as contactcateg ON contactcateg.fk_socpeople=t.rowid ";
- }
- if (!empty($arrayquery['contact_lastname'])) {
- $sqlwhere[] = $this->transformToSQL('t.lastname', $arrayquery['contact_lastname']);
- }
- if (!empty($arrayquery['contact_firstname'])) {
- $sqlwhere[] = $this->transformToSQL('t.firstname', $arrayquery['contact_firstname']);
- }
- if (!empty($arrayquery['contact_country']) && count($arrayquery['contact_country'])) {
- $sqlwhere[] = " (t.fk_pays IN (".$this->db->sanitize($this->db->escape(implode(',', $arrayquery['contact_country'])))."))";
- }
- if (!empty($arrayquery['contact_status']) && count($arrayquery['contact_status']) > 0) {
- $sqlwhere[] = " (t.statut IN (".$this->db->sanitize($this->db->escape(implode(',', $arrayquery['contact_status'])))."))";
- }
- if (!empty($arrayquery['contact_civility']) && count($arrayquery['contact_civility']) > 0) {
- $sqlwhere[] = " (t.civility IN (".$this->db->sanitize("'".implode("','", $arrayquery['contact_civility'])."'", 1)."))";
- }
- if ($arrayquery['contact_no_email'] != '') {
- $tmpwhere = '';
- if (!empty($arrayquery['contact_no_email'])) {
- $tmpwhere .= "(t.email IN (SELECT email FROM ".MAIN_DB_PREFIX."mailing_unsubscribe WHERE t.entity IN (".getEntity('mailing').") AND email = '".$this->db->escape($arrayquery['contact_no_email'])."'))";
- } else {
- $tmpwhere .= "(t.email NOT IN (SELECT email FROM ".MAIN_DB_PREFIX."mailing_unsubscribe WHERE t.entity IN (".getEntity('mailing').") AND email = '".$this->db->escape($arrayquery['contact_no_email'])."'))";
- }
- $sqlwhere[] = $tmpwhere;
- }
- if ($arrayquery['contact_update_st_dt'] != '') {
- $sqlwhere[] = " (t.tms >= '".$this->db->idate($arrayquery['contact_update_st_dt'])."' AND t.tms <= '".$this->db->idate($arrayquery['contact_update_end_dt'])."')";
- }
- if ($arrayquery['contact_create_st_dt'] != '') {
- $sqlwhere[] = " (t.datec >= '".$this->db->idate($arrayquery['contact_create_st_dt'])."' AND t.datec <= '".$this->db->idate($arrayquery['contact_create_end_dt'])."')";
- }
- if (!empty($arrayquery['contact_categ']) && count($arrayquery['contact_categ']) > 0) {
- $sqlwhere[] = " (contactcateg.fk_categorie IN (".$this->db->escape(implode(",", $arrayquery['contact_categ']))."))";
- }
- //Standard Extrafield feature
- if (!getDolGlobalString('MAIN_EXTRAFIELDS_DISABLED')) {
- $contactstatic = new Contact($this->db);
- $elementtype = $contactstatic->table_element;
- // fetch optionals attributes and labels
- dol_include_once('/core/class/extrafields.class.php');
- $extrafields = new ExtraFields($this->db);
- $extrafields->fetch_name_optionals_label($elementtype);
- $extrafields->fetch_name_optionals_label($elementtype);
- foreach ($extrafields->attributes[$elementtype]['label'] as $key => $val) {
- if (($extrafields->attributes[$elementtype]['type'][$key] == 'varchar') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'text')) {
- if (!empty($arrayquery['options_'.$key.'_cnct'])) {
- $sqlwhere[] = " (te.".$key." LIKE '".$this->db->escape($arrayquery["options_".$key."_cnct"])."')";
- }
- } elseif (($extrafields->attributes[$elementtype]['type'][$key] == 'int') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'double')) {
- if (!empty($arrayquery['options_'.$key.'_max_cnct'])) {
- $sqlwhere[] = " (te.".$key." >= ".((float) $arrayquery["options_".$key."_max_cnct"])." AND te.".$key." <= ".((float) $arrayquery["options_".$key."_min_cnct"]).")";
- }
- } elseif (($extrafields->attributes[$elementtype]['type'][$key] == 'date') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'datetime')) {
- if (!empty($arrayquery['options_'.$key.'_end_dt_cnct'])) {
- $sqlwhere[] = " (te.".$key." >= '".$this->db->idate($arrayquery["options_".$key."_st_dt_cnct"])."' AND te.".$key." <= '".$this->db->idate($arrayquery["options_".$key."_end_dt_cnct"])."')";
- }
- } elseif ($extrafields->attributes[$elementtype]['type'][$key] == 'boolean') {
- if ($arrayquery['options_'.$key.'_cnct'] != '') {
- if ($arrayquery['options_'.$key.'_cnct'] == 0) {
- $sqlwhere[] = " (te.".$key." = ".((int) $arrayquery["options_".$key."_cnct"])." OR ((te.".$key." IS NULL) AND (te.fk_object IS NOT NULL)))";
- } else {
- $sqlwhere[] = " (te.".$key." = ".((int) $arrayquery["options_".$key."_cnct"]).")";
- }
- }
- } else {
- if (is_array($arrayquery['options_'.$key.'_cnct'])) {
- $sqlwhere[] = " (te.".$key." IN (".$this->db->sanitize("'".implode("','", $arrayquery["options_".$key."_cnct"])."'", 1)."))";
- } elseif (!empty($arrayquery['options_'.$key.'_cnct'])) {
- $sqlwhere[] = " (te.".$key." LIKE '".$this->db->escape($arrayquery["options_".$key."_cnct"])."')";
- }
- }
- }
- if (!empty($withThirdpartyFilter)) {
- if (array_key_exists('cust_saleman', $arrayquery)) {
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."societe_commerciaux as saleman ON saleman.fk_soc=ts.rowid ";
- }
- if (array_key_exists('cust_categ', $arrayquery)) {
- $sql .= " LEFT OUTER JOIN ".MAIN_DB_PREFIX."categorie_societe as custcateg ON custcateg.fk_soc=ts.rowid ";
- }
- if (!empty($arrayquery['cust_name'])) {
- $sqlwhere[] = $this->transformToSQL('ts.nom', $arrayquery['cust_name']);
- }
- if (!empty($arrayquery['cust_code'])) {
- $sqlwhere[] = $this->transformToSQL('ts.code_client', $arrayquery['cust_code']);
- }
- if (!empty($arrayquery['cust_adress'])) {
- $sqlwhere[] = $this->transformToSQL('ts.address', $arrayquery['cust_adress']);
- }
- if (!empty($arrayquery['cust_zip'])) {
- $sqlwhere[] = $this->transformToSQL('ts.zip', $arrayquery['cust_zip']);
- }
- if (!empty($arrayquery['cust_city'])) {
- $sqlwhere[] = $this->transformToSQL('ts.town', $arrayquery['cust_city']);
- }
- if (!empty($arrayquery['cust_mothercompany'])) {
- $str = $this->transformToSQL('nom', $arrayquery['cust_mothercompany']);
- $sqlwhere[] = " (ts.parent IN (SELECT rowid FROM ".MAIN_DB_PREFIX."societe WHERE (".$str.")))";
- }
- if (!empty($arrayquery['cust_status']) && count($arrayquery['cust_status']) > 0) {
- $sqlwhere[] = " (ts.status IN (".$this->db->sanitize(implode(',', $arrayquery['cust_status']))."))";
- }
- if (!empty($arrayquery['cust_typecust']) && count($arrayquery['cust_typecust']) > 0) {
- $sqlwhere[] = " (ts.client IN (".$this->db->sanitize(implode(',', $arrayquery['cust_typecust']))."))";
- }
- if (!empty($arrayquery['cust_comm_status']) && count($arrayquery['cust_comm_status']) > 0) {
- $sqlwhere[] = " (ts.fk_stcomm IN (".$this->db->sanitize(implode(',', $arrayquery['cust_comm_status']))."))";
- }
- if (!empty($arrayquery['cust_prospect_status']) && count($arrayquery['cust_prospect_status']) > 0) {
- $sqlwhere[] = " (ts.fk_prospectlevel IN ('".$this->db->sanitize(implode("','", $arrayquery['cust_prospect_status']))."'))";
- }
- if (!empty($arrayquery['cust_typeent']) && count($arrayquery['cust_typeent']) > 0) {
- $sqlwhere[] = " (ts.fk_typent IN (".$this->db->sanitize(implode(',', $arrayquery['cust_typeent']))."))";
- }
- if (!empty($arrayquery['cust_saleman']) && count($arrayquery['cust_saleman']) > 0) {
- $sqlwhere[] = " (saleman.fk_user IN (".$this->db->sanitize(implode(',', $arrayquery['cust_saleman']))."))";
- }
- if (!empty($arrayquery['cust_country']) && count($arrayquery['cust_country']) > 0) {
- $sqlwhere[] = " (ts.fk_pays IN (".$this->db->sanitize(implode(',', $arrayquery['cust_country']))."))";
- }
- if (!empty($arrayquery['cust_effectif_id']) && count($arrayquery['cust_effectif_id']) > 0) {
- $sqlwhere[] = " (ts.fk_effectif IN (".$this->db->sanitize(implode(',', $arrayquery['cust_effectif_id']))."))";
- }
- if (!empty($arrayquery['cust_categ']) && count($arrayquery['cust_categ']) > 0) {
- $sqlwhere[] = " (custcateg.fk_categorie IN (".$this->db->sanitize(implode(',', $arrayquery['cust_categ']))."))";
- }
- if (!empty($arrayquery['cust_language']) && count($arrayquery['cust_language']) > 0) {
- $sqlwhere[] = " (ts.default_lang IN ('".$this->db->sanitize(implode("','", $arrayquery['cust_language']))."'))";
- }
- //Standard Extrafield feature
- if (!getDolGlobalString('MAIN_EXTRAFIELDS_DISABLED')) {
- $socstatic = new Societe($this->db);
- $elementtype = $socstatic->table_element;
- // fetch optionals attributes and labels
- dol_include_once('/core/class/extrafields.class.php');
- $extrafields = new ExtraFields($this->db);
- $extrafields->fetch_name_optionals_label($elementtype);
- foreach ($extrafields->attributes[$elementtype]['label'] as $key => $val) {
- if (($extrafields->attributes[$elementtype]['type'][$key] == 'varchar') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'text')) {
- if (!empty($arrayquery['options_'.$key])) {
- $sqlwhere[] = " (tse.".$key." LIKE '".$this->db->escape($arrayquery['options_'.$key])."')";
- }
- } elseif (($extrafields->attributes[$elementtype]['type'][$key] == 'int') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'double')) {
- if (!empty($arrayquery['options_'.$key.'_max'])) {
- $sqlwhere[] = " (tse.".$key." >= ".((float) $arrayquery["options_".$key."_max"])." AND tse.".$key." <= ".((float) $arrayquery["options_".$key."_min"]).")";
- }
- } elseif (($extrafields->attributes[$elementtype]['type'][$key] == 'date') ||
- ($extrafields->attributes[$elementtype]['type'][$key] == 'datetime')) {
- if (!empty($arrayquery['options_'.$key.'_end_dt'])) {
- $sqlwhere[] = " (tse.".$key." >= '".$this->db->idate($arrayquery["options_".$key."_st_dt"])."' AND tse.".$key." <= '".$this->db->idate($arrayquery["options_".$key."_end_dt"])."')";
- }
- } elseif ($extrafields->attributes[$elementtype]['type'][$key] == 'boolean') {
- if ($arrayquery['options_'.$key] != '') {
- $sqlwhere[] = " (tse.".$key." = ".((int) $arrayquery["options_".$key]).")";
- }
- } else {
- if (is_array($arrayquery['options_'.$key])) {
- $sqlwhere[] = " (tse.".$key." IN (".$this->db->sanitize("'".implode("','", $arrayquery["options_".$key])."'", 1)."))";
- } elseif (!empty($arrayquery['options_'.$key])) {
- $sqlwhere[] = " (tse.".$key." LIKE '".$this->db->escape($arrayquery["options_".$key])."')";
- }
- }
- }
- }
- }
- }
- if (count($sqlwhere) > 0) {
- $sql .= " WHERE ".implode(" AND ", $sqlwhere);
- }
- }
- dol_syslog(get_class($this)."::query_contact", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $this->contact_lines = array();
- $num = $this->db->num_rows($resql);
- $i = 0;
- if ($num) {
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- $this->contact_lines[$i] = $obj->rowid;
- $i++;
- }
- }
- $this->db->free($resql);
- return $num;
- } else {
- $this->error = "Error ".$this->db->lasterror();
- dol_syslog(get_class($this)."::query_contact ".$this->error, LOG_ERR);
- return -1;
- }
- }
- /**
- * Parse criteria to return a SQL qury formated
- *
- * @param string $column_to_test column to test
- * @param string $criteria Use %% as magic caracters. For exemple to find all item like <b>jean, joe, jim</b>, you can input <b>j%%</b>, you can also use ; as separator for value,
- * and use ! for except this value.
- * For exemple jean;joe;jim%%;!jimo;!jima%> will target all jean, joe, start with jim but not jimo and not everythnig taht start by jima
- * @return string Sql to use for the where condition
- */
- public function transformToSQL($column_to_test, $criteria)
- {
- $return_sql_criteria = '(';
- //This is a multiple value test
- if (preg_match('/;/', $criteria)) {
- $return_sql_not_like = array();
- $return_sql_like = array();
- $criteria_array = explode(';', $criteria);
- foreach ($criteria_array as $inter_criteria) {
- if (preg_match('/!/', $inter_criteria)) {
- $return_sql_not_like[] = '('.$column_to_test.' NOT LIKE \''.str_replace('!', '', $inter_criteria).'\')';
- } else {
- $return_sql_like[] = '('.$column_to_test.' LIKE \''.$inter_criteria.'\')';
- }
- }
- if (count($return_sql_like) > 0) {
- $return_sql_criteria .= '('.implode(' OR ', $return_sql_like).')';
- }
- if (count($return_sql_not_like) > 0) {
- $return_sql_criteria .= ' AND ('.implode(' AND ', $return_sql_not_like).')';
- }
- } else {
- $return_sql_criteria .= $column_to_test.' LIKE \''.$this->db->escape($criteria).'\'';
- }
- $return_sql_criteria .= ')';
- return $return_sql_criteria;
- }
- }
|