123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143 |
- <?php
- /* Copyright (C) 2005-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2009-2017 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2011-2014 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2013 Cedric GROSS <c.gross@kreiz-it.fr>
- * Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
- * Copyright (C) 2015 Bahfir Abbes <bafbes@gmail.com>
- * Copyright (C) 2022 Ferran Marcet <fmarcet@2byte.es>
- *
- * 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/core/triggers/interface_50_modAgenda_ActionsAuto.class.php
- * \ingroup agenda
- * \brief Trigger file for agenda module
- */
- require_once DOL_DOCUMENT_ROOT.'/core/triggers/dolibarrtriggers.class.php';
- /**
- * Class of triggered functions for agenda module
- */
- class InterfaceActionsAuto extends DolibarrTriggers
- {
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- $this->name = preg_replace('/^Interface/i', '', get_class($this));
- $this->family = "agenda";
- $this->description = "Triggers of this module add actions in agenda according to setup made in agenda setup.";
- // 'development', 'experimental', 'dolibarr' or version
- $this->version = self::VERSION_DOLIBARR;
- $this->picto = 'action';
- }
- /**
- * Function called when a Dolibarrr business event is done.
- * All functions "runTrigger" are triggered if file is inside directory htdocs/core/triggers or htdocs/module/code/triggers (and declared)
- *
- * Following properties may be set before calling trigger. The may be completed by this trigger to be used for writing the event into database:
- * $object->actiontypecode (translation action code: AC_OTH, ...)
- * $object->actionmsg (note, long text)
- * $object->actionmsg2 (label, short text)
- * $object->sendtoid (id of contact or array of ids of contacts)
- * $object->socid (id of thirdparty)
- * $object->fk_project
- * $object->fk_element (ID of object to link action event to)
- * $object->elementtype (->element of object to link action to)
- * $object->module (if defined, elementtype in llx_actioncomm will be elementtype@module)
- *
- * @param string $action Event action code ('CONTRACT_MODIFY', 'RECRUITMENTCANDIDATURE_MODIFIY', or example by external module: 'SENTBYSMS'...)
- * @param Object $object Object
- * @param User $user Object user
- * @param Translate $langs Object langs
- * @param conf $conf Object conf
- * @return int <0 if KO, 0 if no triggered ran, >0 if OK
- */
- public function runTrigger($action, $object, User $user, Translate $langs, Conf $conf)
- {
- if (empty($conf->agenda) || empty($conf->agenda->enabled)) {
- return 0; // Module not active, we do nothing
- }
- // Do not log events when trigger is for creating event (infinite loop)
- if (preg_match('/^ACTION_/', $action)) {
- return 0;
- }
- $key = 'MAIN_AGENDA_ACTIONAUTO_'.$action;
- //var_dump($action.' - '.$conf->global->$key);exit;
- // Do not log events not enabled for this action
- // GUI allow to set this option only if entry exists into table llx_c_action_trigger
- if (empty($conf->global->$key)) {
- return 0;
- }
- $langs->load("agenda");
- if (empty($object->actiontypecode)) {
- $object->actiontypecode = 'AC_OTH_AUTO';
- }
- // Actions
- if ($action == 'COMPANY_CREATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "companies"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("NewCompanyToDolibarr", $object->name);
- }
- $object->actionmsg = $langs->transnoentities("NewCompanyToDolibarr", $object->name);
- $object->sendtoid = 0;
- $object->socid = $object->id;
- } elseif ($action == 'COMPANY_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "companies"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("COMPANY_MODIFYInDolibarr", $object->name);
- }
- $object->actionmsg = $langs->transnoentities("COMPANY_MODIFYInDolibarr", $object->name);
- $object->sendtoid = 0;
- $object->socid = $object->id;
- } elseif ($action == 'COMPANY_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- dol_syslog('Trigger called with property actionmsg2 on object not defined', LOG_ERR);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'CONTACT_CREATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "companies"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("CONTACT_CREATEInDolibarr", $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("CONTACT_CREATEInDolibarr", $object->getFullName($langs));
- $object->sendtoid = array($object->id => $object->id);
- $object->socid = $object->socid;
- } elseif ($action == 'CONTACT_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "companies"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("CONTACT_MODIFYInDolibarr", $object->name);
- }
- $object->actionmsg = $langs->transnoentities("CONTACT_MODIFYInDolibarr", $object->name);
- $object->sendtoid = array($object->id => $object->id);
- $object->socid = $object->socid;
- } elseif ($action == 'CONTRACT_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "contracts"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ContractValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("ContractValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'CONTRACT_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "contracts"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ContractSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ContractSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'PROPAL_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("PropalValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'PROPAL_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) $object->actionmsg2 = $langs->transnoentities("PropalBackToDraftInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->actionmsg = $langs->transnoentities("PropalBackToDraftInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'PROPAL_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProposalSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ProposalSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'PROPAL_CLOSE_SIGNED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalClosedSignedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("PropalClosedSignedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'PROPAL_CLASSIFY_BILLED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalClassifiedBilledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("PropalClassifiedBilledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'PROPAL_CLOSE_REFUSED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalClosedRefusedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("PropalClosedRefusedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("OrderValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_CLOSE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderDeliveredInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("OrderDeliveredInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_CLASSIFY_BILLED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderBilledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("OrderBilledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_CANCEL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderCanceledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("OrderCanceledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("OrderSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'BILL_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("InvoiceValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_UNVALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceBackToDraftInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InvoiceBackToDraftInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("InvoiceSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'BILL_PAYED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- // Values for this action can't be defined by caller.
- $object->actionmsg2 = $langs->transnoentities("InvoicePaidInDolibarr", $object->ref);
- $object->actionmsg = $langs->transnoentities("InvoicePaidInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_CANCEL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceCanceledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InvoiceCanceledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'FICHINTER_CREATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionCreatedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InterventionCreatedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- $object->fk_element = 0;
- $object->elementtype = '';
- } elseif ($action == 'FICHINTER_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("InterventionValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- $object->fk_element = 0;
- $object->elementtype = '';
- } elseif ($action == 'FICHINTER_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionModifiedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InterventionModifiedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- $object->fk_element = 0;
- $object->elementtype = '';
- } elseif ($action == 'FICHINTER_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("InterventionSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'FICHINTER_CLASSIFY_BILLED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionClassifiedBilledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InterventionClassifiedBilledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'FICHINTER_CLASSIFY_UNBILLED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionClassifiedUnbilledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InterventionClassifiedUnbilledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'FICHINTER_DELETE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "interventions"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InterventionDeletedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InterventionDeletedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- $object->fk_element = 0;
- $object->elementtype = '';
- } elseif ($action == 'SHIPPING_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "sendings"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ShippingValidated", ($object->newref ? $object->newref : $object->ref));
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ShippingValidated", ($object->newref ? $object->newref : $object->ref));
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'SHIPPING_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "sendings"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ShippingSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ShippingSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'RECEPTION_VALIDATE') {
- $langs->load("agenda");
- $langs->load("other");
- $langs->load("receptions");
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ReceptionValidated", ($object->newref ? $object->newref : $object->ref));
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ReceptionValidated", ($object->newref ? $object->newref : $object->ref));
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'RECEPTION_SENTBYMAIL') {
- $langs->load("agenda");
- $langs->load("other");
- $langs->load("receptions");
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ReceptionSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ReceptionSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'PROPOSAL_SUPPLIER_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("PropalValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'PROPOSAL_SUPPLIER_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProposalSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ProposalSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'PROPOSAL_SUPPLIER_CLOSE_SIGNED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalClosedSignedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("PropalClosedSignedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'PROPOSAL_SUPPLIER_CLOSE_REFUSED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "propal"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("PropalClosedRefusedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("PropalClosedRefusedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_CREATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderCreatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("OrderCreatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("OrderValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_APPROVE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderApprovedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("OrderApprovedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_REFUSE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders", "main"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderRefusedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("OrderRefusedInDolibarr", $object->ref);
- if (!empty($object->refuse_note)) {
- $object->actionmsg .= '<br>';
- $object->actionmsg .= $langs->trans("Reason") . ': '.$object->refuse_note;
- }
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_CANCEL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders", "main"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("OrderCanceledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("OrderCanceledInDolibarr", $object->ref);
- if (!empty($object->cancel_note)) {
- $object->actionmsg .= '<br>';
- $object->actionmsg .= $langs->trans("Reason") . ': '.$object->cancel_note;
- }
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_SUBMIT') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("SupplierOrderSubmitedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("SupplierOrderSubmitedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- if (!empty($object->context['comments'])) {
- $object->actionmsg .= '<br>';
- $object->actionmsg .= $langs->trans("Comment") . ': '.$object->context['comments'];
- }
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_RECEIVE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("SupplierOrderReceivedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("SupplierOrderReceivedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'ORDER_SUPPLIER_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("SupplierOrderSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("SupplierOrderSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'ORDER_SUPPLIER_CLASSIFY_BILLED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("SupplierOrderClassifiedBilled", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("SupplierOrderClassifiedBilled", $object->ref);
- }
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_SUPPLIER_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- }
- $object->actionmsg = $langs->transnoentities("InvoiceValidatedInDolibarr", ($object->newref ? $object->newref : $object->ref));
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_SUPPLIER_UNVALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceBackToDraftInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InvoiceBackToDraftInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_SUPPLIER_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills", "orders"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("SupplierInvoiceSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("SupplierInvoiceSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'BILL_SUPPLIER_PAYED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoicePaidInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InvoicePaidInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'BILL_SUPPLIER_CANCELED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "bills"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("InvoiceCanceledInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("InvoiceCanceledInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'MEMBER_VALIDATE') {
- // Members
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberValidatedInDolibarr", $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberValidatedInDolibarr", $object->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$object->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->type;
- $object->sendtoid = 0;
- } elseif ($action == 'MEMBER_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberModifiedInDolibarr", $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberModifiedInDolibarr", $object->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$object->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->type;
- $object->sendtoid = 0;
- } elseif ($action == 'MEMBER_SUBSCRIPTION_CREATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- $member = (isset($this->context['member']) ? $this->context['member'] : null);
- if (!is_object($member)) { // This should not happen
- dol_syslog("Execute a trigger MEMBER_SUBSCRIPTION_CREATE with context key 'member' not an object");
- include_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- $member = new Adherent($this->db);
- $member->fetch($object->fk_adherent);
- }
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberSubscriptionAddedInDolibarr", $object->id, $member->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberSubscriptionAddedInDolibarr", $object->id, $member->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$member->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->fk_type;
- $object->actionmsg .= "\n".$langs->transnoentities("Amount").': '.$object->amount;
- $object->actionmsg .= "\n".$langs->transnoentities("Period").': '.dol_print_date($object->dateh, 'day').' - '.dol_print_date($object->datef, 'day');
- $object->sendtoid = 0;
- if (isset($object->fk_soc) && $object->fk_soc > 0) {
- $object->socid = $object->fk_soc;
- }
- } elseif ($action == 'MEMBER_SUBSCRIPTION_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- $member = $this->context['member'];
- if (!is_object($member)) { // This should not happen
- include_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
- $member = new Adherent($this->db);
- $member->fetch($object->fk_adherent);
- }
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberSubscriptionModifiedInDolibarr", $object->id, $member->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberSubscriptionModifiedInDolibarr", $object->id, $member->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$member->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->fk_type;
- $object->actionmsg .= "\n".$langs->transnoentities("Amount").': '.$object->amount;
- $object->actionmsg .= "\n".$langs->transnoentities("Period").': '.dol_print_date($object->dateh, 'day').' - '.dol_print_date($object->datef, 'day');
- $object->sendtoid = 0;
- if ($object->fk_soc > 0) {
- $object->socid = $object->fk_soc;
- }
- } elseif ($action == 'MEMBER_SUBSCRIPTION_DELETE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberSubscriptionDeletedInDolibarr", $object->ref, $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberSubscriptionDeletedInDolibarr", $object->ref, $object->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$object->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->fk_type;
- $object->actionmsg .= "\n".$langs->transnoentities("Amount").': '.$object->amount;
- $object->actionmsg .= "\n".$langs->transnoentities("Period").': '.dol_print_date($object->dateh, 'day').' - '.dol_print_date($object->datef, 'day');
- $object->sendtoid = 0;
- if (isset($object->fk_soc) && $object->fk_soc > 0) {
- $object->socid = $object->fk_soc;
- }
- } elseif ($action == 'MEMBER_RESILIATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberResiliatedInDolibarr", $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberResiliatedInDolibarr", $object->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$object->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->type;
- $object->sendtoid = 0;
- } elseif ($action == 'MEMBER_DELETE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberDeletedInDolibarr", $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberDeletedInDolibarr", $object->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$object->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->type;
- $object->sendtoid = 0;
- } elseif ($action == 'MEMBER_EXCLUDE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "members"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("MemberExcludedInDolibarr", $object->getFullName($langs));
- }
- $object->actionmsg = $langs->transnoentities("MemberExcludedInDolibarr", $object->getFullName($langs));
- $object->actionmsg .= "\n".$langs->transnoentities("Member").': '.$object->getFullName($langs);
- $object->actionmsg .= "\n".$langs->transnoentities("Type").': '.$object->type;
- $object->sendtoid = 0;
- } elseif ($action == 'PROJECT_CREATE') {
- // Projects
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProjectCreatedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("ProjectCreatedInDolibarr", $object->ref);
- $object->actionmsg .= "\n".$langs->transnoentities("Project").': '.$object->ref;
- $object->sendtoid = 0;
- } elseif ($action == 'PROJECT_VALIDATE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProjectValidatedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("ProjectValidatedInDolibarr", $object->ref);
- $object->actionmsg .= "\n".$langs->transnoentities("Project").': '.$object->ref;
- $object->sendtoid = 0;
- } elseif ($action == 'PROJECT_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProjectModifiedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("ProjectModifiedInDolibarr", $object->ref);
- //$object->actionmsg .= "\n".$langs->transnoentities("Task").': ???';
- if (!empty($object->usage_opportunity) && is_object($object->oldcopy) && $object->opp_status != $object->oldcopy->opp_status) {
- $object->actionmsg .= "\n".$langs->transnoentitiesnoconv("OpportunityStatus").': '.$object->oldcopy->opp_status.' -> '.$object->opp_status;
- }
- $object->sendtoid = 0;
- } elseif ($action == 'PROJECT_SENTBYMAIL') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProjectSentByEMail", $object->ref);
- }
- if (empty($object->actionmsg)) {
- $object->actionmsg = $langs->transnoentities("ProjectSentByEMail", $object->ref);
- }
- // Parameters $object->sendtoid defined by caller
- //$object->sendtoid=0;
- } elseif ($action == 'PROJECT_CLOSE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("ProjectClosedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("ProjectClosedInDolibarr", $object->ref);
- $object->sendtoid = 0;
- } elseif ($action == 'TASK_CREATE') {
- // Project tasks
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("TaskCreatedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("TaskCreatedInDolibarr", $object->ref);
- $object->actionmsg .= "\n".$langs->transnoentities("Task").': '.$object->ref;
- $object->sendtoid = 0;
- } elseif ($action == 'TASK_MODIFY') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("TaskModifiedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("TaskModifieddInDolibarr", $object->ref);
- $object->actionmsg .= "\n".$langs->transnoentities("Task").': '.$object->ref;
- $object->sendtoid = 0;
- } elseif ($action == 'TASK_DELETE') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("TaskDeletedInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("TaskDeletedInDolibarr", $object->ref);
- $object->actionmsg .= "\n".$langs->transnoentities("Task").': '.$object->ref;
- $object->sendtoid = 0;
- } elseif ($action == 'TICKET_ASSIGNED') {
- // Load translation files required by the page
- $langs->loadLangs(array("agenda", "other", "projects"));
- if (empty($object->actionmsg2)) {
- $object->actionmsg2 = $langs->transnoentities("TICKET_ASSIGNEDInDolibarr", $object->ref);
- }
- $object->actionmsg = $langs->transnoentities("TICKET_ASSIGNEDInDolibarr", $object->ref);
- if ($object->oldcopy->fk_user_assign > 0) {
- $tmpuser = new User($this->db);
- $tmpuser->fetch($object->oldcopy->fk_user_assign);
- $object->actionmsg .= "\n".$langs->transnoentities("OldUser").': '.$tmpuser->getFullName($langs);
- } else {
- $object->actionmsg .= "\n".$langs->transnoentities("OldUser").': '.$langs->trans("None");
- }
- if ($object->fk_user_assign > 0) {
- $tmpuser = new User($this->db);
- $tmpuser->fetch($object->fk_user_assign);
- $object->actionmsg .= "\n".$langs->transnoentities("NewUser").': '.$tmpuser->getFullName($langs);
- } else {
- $object->actionmsg .= "\n".$langs->transnoentities("NewUser").': '.$langs->trans("None");
- }
- $object->sendtoid = 0;
- } else {
- // TODO Merge all previous cases into this generic one
- // $action = PASSWORD, BILL_DELETE, TICKET_CREATE, TICKET_MODIFY, TICKET_DELETE, CONTACT_SENTBYMAIL, RECRUITMENTCANDIDATURE_MODIFY, ...
- // Can also be a value defined by an external module like SENTBYSMS, COMPANY_SENTBYSMS, MEMBER_SENTBYSMS, ...
- // Note: We are here only if $conf->global->MAIN_AGENDA_ACTIONAUTO_action is on (tested at begining of this function).
- // Note that these key can be set in agenda setup, only if defined into llx_c_action_trigger
- // Load translation files required by the page
- if (empty($object->actionmsg2)) {
- $langs->loadLangs(array("agenda", "other"));
- if ($langs->transnoentities($action."InDolibarr", (empty($object->newref) ? $object->ref : $object->newref)) != $action."InDolibarr") { // specific translation key
- $object->actionmsg2 = $langs->transnoentities($action."InDolibarr", (empty($object->newref) ? $object->ref : $object->newref));
- } else { // generic translation key
- $tmp = explode('_', $action);
- $object->actionmsg2 = $langs->transnoentities($tmp[count($tmp) - 1]."InDolibarr", (empty($object->newref) ? $object->ref : $object->newref));
- }
- }
- if (empty($object->actionmsg)) {
- $langs->loadLangs(array("agenda", "other"));
- if ($langs->transnoentities($action."InDolibarr", (empty($object->newref) ? $object->ref : $object->newref)) != $action."InDolibarr") { // specific translation key
- $object->actionmsg = $langs->transnoentities($action."InDolibarr", (empty($object->newref) ? $object->ref : $object->newref));
- } else { // generic translation key
- $tmp = explode('_', $action);
- $object->actionmsg = $langs->transnoentities($tmp[count($tmp) - 1]."InDolibarr", (empty($object->newref) ? $object->ref : $object->newref));
- }
- }
- if (!isset($object->sendtoid) || !is_array($object->sendtoid)) {
- $object->sendtoid = 0;
- }
- }
- // If trackid is not defined, we set it.
- // Note that it should be set by caller. This is for compatibility purpose only.
- if (empty($object->trackid)) {
- // See also similar list into emailcollector.class.php
- if (preg_match('/^COMPANY_/', $action)) {
- $object->trackid = 'thi'.$object->id;
- } elseif (preg_match('/^CONTACT_/', $action)) {
- $object->trackid = 'ctc'.$object->id;
- } elseif (preg_match('/^CONTRACT_/', $action)) {
- $object->trackid = 'con'.$object->id;
- } elseif (preg_match('/^PROPAL_/', $action)) {
- $object->trackid = 'pro'.$object->id;
- } elseif (preg_match('/^ORDER_/', $action)) {
- $object->trackid = 'ord'.$object->id;
- } elseif (preg_match('/^BILL_/', $action)) {
- $object->trackid = 'inv'.$object->id;
- } elseif (preg_match('/^FICHINTER_/', $action)) {
- $object->trackid = 'int'.$object->id;
- } elseif (preg_match('/^SHIPPING_/', $action)) {
- $object->trackid = 'shi'.$object->id;
- } elseif (preg_match('/^RECEPTION_/', $action)) {
- $object->trackid = 'rec'.$object->id;
- } elseif (preg_match('/^PROPOSAL_SUPPLIER/', $action)) {
- $object->trackid = 'spr'.$object->id;
- } elseif (preg_match('/^ORDER_SUPPLIER_/', $action)) {
- $object->trackid = 'sor'.$object->id;
- } elseif (preg_match('/^BILL_SUPPLIER_/', $action)) {
- $object->trackid = 'sin'.$object->id;
- } elseif (preg_match('/^MEMBER_SUBSCRIPTION_/', $action)) {
- $object->trackid = 'sub'.$object->id;
- } elseif (preg_match('/^MEMBER_/', $action)) {
- $object->trackid = 'mem'.$object->id;
- } elseif (preg_match('/^PROJECT_/', $action)) {
- $object->trackid = 'proj'.$object->id;
- } elseif (preg_match('/^TASK_/', $action)) {
- $object->trackid = 'tas'.$object->id;
- } elseif (preg_match('/^TICKET_/', $action)) {
- $object->trackid = 'tic'.$object->id;
- } elseif (preg_match('/^USER_/', $action)) {
- $object->trackid = 'use'.$object->id;
- } else {
- $object->trackid = '';
- }
- }
- /* Seems no more required: We have the data in dedicated field now.
- if (!empty($user->login)) {
- $object->actionmsg = dol_concatdesc($langs->transnoentities("Author").': '.$user->login, $object->actionmsg);
- } elseif (isset($object->origin_email)) {
- $object->actionmsg = dol_concatdesc($langs->transnoentities("Author").': '.$object->origin_email, $object->actionmsg);
- }
- */
- dol_syslog("Trigger '".$this->name."' for action '".$action."' launched by ".__FILE__.". id=".$object->id);
- // Add entry in event table
- $now = dol_now();
- if (isset($_SESSION['listofnames-'.$object->trackid])) {
- $attachs = $_SESSION['listofnames-'.$object->trackid];
- if ($attachs && strpos($action, 'SENTBYMAIL')) {
- $object->actionmsg = dol_concatdesc($object->actionmsg, "\n".$langs->transnoentities("AttachedFiles").': '.$attachs);
- }
- }
- require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
- require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
- $contactforaction = new Contact($this->db);
- $societeforaction = new Societe($this->db);
- // Set contactforaction if there is only 1 contact.
- if (is_array($object->sendtoid)) {
- if (count($object->sendtoid) == 1) {
- $contactforaction->fetch(reset($object->sendtoid));
- }
- } else {
- if ($object->sendtoid > 0) {
- $contactforaction->fetch($object->sendtoid);
- }
- }
- // Set societeforaction.
- if (isset($object->socid) && $object->socid > 0) {
- $societeforaction->fetch($object->socid);
- } elseif (isset($object->fk_soc) && $object->fk_soc > 0) {
- $societeforaction->fetch($object->fk_soc);
- } elseif (isset($object->thirdparty) && isset($object->thirdparty->id) && $object->thirdparty->id > 0) {
- $societeforaction = $object->thirdparty;
- }
- $projectid = isset($object->fk_project) ? $object->fk_project : 0;
- if ($object->element == 'project') {
- $projectid = $object->id;
- }
- $elementid = $object->id; // id of object
- $elementtype = $object->element;
- $elementmodule = (empty($object->module) ? '' : $object->module);
- if ($object->element == 'subscription') {
- $elementid = $object->fk_adherent;
- $elementtype = 'member';
- }
- //var_dump($societeforaction);var_dump($contactforaction);var_dump($elementid);var_dump($elementtype);exit;
- // Insertion action
- require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
- $actioncomm = new ActionComm($this->db);
- $actioncomm->type_code = $object->actiontypecode; // Type of event ('AC_OTH', 'AC_OTH_AUTO', 'AC_XXX'...)
- $actioncomm->code = 'AC_'.$action;
- $actioncomm->label = $object->actionmsg2;
- $actioncomm->note_private = $object->actionmsg;
- $actioncomm->fk_project = $projectid;
- $actioncomm->datep = $now;
- $actioncomm->datef = $now;
- $actioncomm->durationp = 0;
- $actioncomm->percentage = -1; // Not applicable
- $actioncomm->socid = $societeforaction->id;
- $actioncomm->contact_id = $contactforaction->id; // deprecated, use ->socpeopleassigned instead
- $actioncomm->authorid = $user->id; // User saving action
- $actioncomm->userownerid = $user->id; // Owner of action
- // Fields defined when action is an email (content should be into object->actionmsg to be added into event note, subject should be into object->actionms2 to be added into event label)
- if (!property_exists($object, 'email_fields_no_propagate_in_actioncomm') || empty($object->email_fields_no_propagate_in_actioncomm)) {
- $actioncomm->email_msgid = empty($object->email_msgid) ? null : $object->email_msgid;
- $actioncomm->email_from = empty($object->email_from) ? null : $object->email_from;
- $actioncomm->email_sender = empty($object->email_sender) ? null : $object->email_sender;
- $actioncomm->email_to = empty($object->email_to) ? null : $object->email_to;
- $actioncomm->email_tocc = empty($object->email_tocc) ? null : $object->email_tocc;
- $actioncomm->email_tobcc = empty($object->email_tobcc) ? null : $object->email_tobcc;
- $actioncomm->email_subject = empty($object->email_subject) ? null : $object->email_subject;
- $actioncomm->errors_to = empty($object->errors_to) ? null : $object->errors_to;
- }
- // Object linked (if link is for thirdparty, contact, project it is a recording error. We should not have links in link table
- // for such objects because there is already a dedicated field into table llx_actioncomm or llx_actioncomm_resources.
- if (!in_array($elementtype, array('societe', 'contact', 'project'))) {
- $actioncomm->fk_element = $elementid;
- $actioncomm->elementtype = $elementtype.($elementmodule ? '@'.$elementmodule : '');
- }
- if (property_exists($object, 'attachedfiles') && is_array($object->attachedfiles) && count($object->attachedfiles) > 0) {
- $actioncomm->attachedfiles = $object->attachedfiles;
- }
- if (property_exists($object, 'sendtouserid') && is_array($object->sendtouserid) && count($object->sendtouserid) > 0) {
- $actioncomm->userassigned = $object->sendtouserid;
- }
- if (property_exists($object, 'sendtoid') && is_array($object->sendtoid) && count($object->sendtoid) > 0) {
- foreach ($object->sendtoid as $val) {
- $actioncomm->socpeopleassigned[$val] = $val;
- }
- }
- $ret = $actioncomm->create($user); // User creating action
- if ($ret > 0 && !empty($conf->global->MAIN_COPY_FILE_IN_EVENT_AUTO)) {
- if (property_exists($object, 'attachedfiles') && is_array($object->attachedfiles) && array_key_exists('paths', $object->attachedfiles) && count($object->attachedfiles['paths']) > 0) {
- foreach ($object->attachedfiles['paths'] as $key => $filespath) {
- $srcfile = $filespath;
- $destdir = $conf->agenda->dir_output.'/'.$ret;
- $destfile = $destdir.'/'.$object->attachedfiles['names'][$key];
- if (dol_mkdir($destdir) >= 0) {
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- dol_copy($srcfile, $destfile);
- }
- }
- }
- }
- unset($object->actionmsg);
- unset($object->actionmsg2);
- unset($object->actiontypecode); // When several action are called on same object, we must be sure to not reuse value of first action.
- if ($ret > 0) {
- $_SESSION['LAST_ACTION_CREATED'] = $ret;
- return 1;
- } else {
- $this->error = "Failed to insert event : ".$actioncomm->error." ".join(',', $actioncomm->errors);
- $this->errors = $actioncomm->errors;
- dol_syslog("interface_modAgenda_ActionsAuto.class.php: ".$this->error, LOG_ERR);
- return -1;
- }
- }
- }
|