modExpedition.class.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <?php
  2. /* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2005-2011 Regis Houssin <regis.houssin@inodbox.com>
  5. * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
  6. * Copyright (C) 2013 Philippe Grand <philippe.grand@atoo-net.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. */
  21. /**
  22. * \defgroup expedition Module shipping
  23. * \brief Module pour gerer les expeditions de produits
  24. * \file htdocs/core/modules/modExpedition.class.php
  25. * \ingroup expedition
  26. * \brief Fichier de description et activation du module Expedition
  27. */
  28. include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
  29. /**
  30. * Class to describe and enable module Expedition
  31. */
  32. class modExpedition extends DolibarrModules
  33. {
  34. /**
  35. * Constructor. Define names, constants, directories, boxes, permissions
  36. *
  37. * @param DoliDB $db Database handler
  38. */
  39. public function __construct($db)
  40. {
  41. global $conf, $user;
  42. $this->db = $db;
  43. $this->numero = 80;
  44. $this->family = "crm";
  45. $this->module_position = '40';
  46. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  47. $this->name = preg_replace('/^mod/i', '', get_class($this));
  48. $this->description = "Gestion des expeditions";
  49. // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
  50. $this->version = 'dolibarr';
  51. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  52. $this->picto = "dolly";
  53. // Data directories to create when module is enabled
  54. $this->dirs = array("/expedition/temp",
  55. "/expedition/sending",
  56. "/expedition/sending/temp",
  57. "/expedition/receipt",
  58. "/expedition/receipt/temp",
  59. "/doctemplates/shipments",
  60. "/doctemplates/deliveries"
  61. );
  62. // Config pages
  63. $this->config_page_url = array("confexped.php");
  64. // Dependencies
  65. $this->depends = array("modCommande");
  66. $this->requiredby = array();
  67. $this->conflictwith = array();
  68. $this->langfiles = array('deliveries', 'sendings');
  69. // Constants
  70. $this->const = array();
  71. $r = 0;
  72. $this->const[$r][0] = "EXPEDITION_ADDON_PDF";
  73. $this->const[$r][1] = "chaine";
  74. $this->const[$r][2] = "rouget";
  75. $this->const[$r][3] = 'Nom du gestionnaire de generation des bons expeditions en PDF';
  76. $this->const[$r][4] = 0;
  77. $r++;
  78. $this->const[$r][0] = "EXPEDITION_ADDON_NUMBER";
  79. $this->const[$r][1] = "chaine";
  80. $this->const[$r][2] = "mod_expedition_safor";
  81. $this->const[$r][3] = 'Name for numbering manager for shipments';
  82. $this->const[$r][4] = 0;
  83. $r++;
  84. $this->const[$r][0] = "EXPEDITION_ADDON_PDF_ODT_PATH";
  85. $this->const[$r][1] = "chaine";
  86. $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/shipments";
  87. $this->const[$r][3] = "";
  88. $this->const[$r][4] = 0;
  89. $r++;
  90. $this->const[$r][0] = "DELIVERY_ADDON_PDF";
  91. $this->const[$r][1] = "chaine";
  92. $this->const[$r][2] = "typhon";
  93. $this->const[$r][3] = 'Nom du gestionnaire de generation des bons de reception en PDF';
  94. $this->const[$r][4] = 0;
  95. $r++;
  96. $this->const[$r][0] = "DELIVERY_ADDON_NUMBER";
  97. $this->const[$r][1] = "chaine";
  98. $this->const[$r][2] = "mod_delivery_jade";
  99. $this->const[$r][3] = 'Nom du gestionnaire de numerotation des bons de reception';
  100. $this->const[$r][4] = 0;
  101. $r++;
  102. $this->const[$r][0] = "DELIVERY_ADDON_PDF_ODT_PATH";
  103. $this->const[$r][1] = "chaine";
  104. $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/deliveries";
  105. $this->const[$r][3] = "";
  106. $this->const[$r][4] = 0;
  107. $r++;
  108. $this->const[$r][0] = "MAIN_SUBMODULE_EXPEDITION";
  109. $this->const[$r][1] = "chaine";
  110. $this->const[$r][2] = "1";
  111. $this->const[$r][3] = "Enable delivery receipts";
  112. $this->const[$r][4] = 0;
  113. $r++;
  114. // Boxes
  115. $this->boxes = array(
  116. 0=>array('file'=>'box_shipments.php', 'enabledbydefaulton'=>'Home'),
  117. );
  118. // Permissions
  119. $this->rights = array();
  120. $this->rights_class = 'expedition';
  121. $r = 0;
  122. $r++;
  123. $this->rights[$r][0] = 101;
  124. $this->rights[$r][1] = 'Lire les expeditions';
  125. $this->rights[$r][2] = 'r';
  126. $this->rights[$r][3] = 0;
  127. $this->rights[$r][4] = 'lire';
  128. $r++;
  129. $this->rights[$r][0] = 102;
  130. $this->rights[$r][1] = 'Creer modifier les expeditions';
  131. $this->rights[$r][2] = 'w';
  132. $this->rights[$r][3] = 0;
  133. $this->rights[$r][4] = 'creer';
  134. $r++;
  135. $this->rights[$r][0] = 104;
  136. $this->rights[$r][1] = 'Valider les expeditions';
  137. $this->rights[$r][2] = 'd';
  138. $this->rights[$r][3] = 0;
  139. $this->rights[$r][4] = 'shipping_advance';
  140. $this->rights[$r][5] = 'validate';
  141. $r++;
  142. $this->rights[$r][0] = 105; // id de la permission
  143. $this->rights[$r][1] = 'Envoyer les expeditions aux clients'; // libelle de la permission
  144. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  145. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  146. $this->rights[$r][4] = 'shipping_advance';
  147. $this->rights[$r][5] = 'send';
  148. $r++;
  149. $this->rights[$r][0] = 106;
  150. $this->rights[$r][1] = 'Exporter les expeditions';
  151. $this->rights[$r][2] = 'r';
  152. $this->rights[$r][3] = 0;
  153. $this->rights[$r][4] = 'shipment';
  154. $this->rights[$r][5] = 'export';
  155. $r++;
  156. $this->rights[$r][0] = 109;
  157. $this->rights[$r][1] = 'Supprimer les expeditions';
  158. $this->rights[$r][2] = 'd';
  159. $this->rights[$r][3] = 0;
  160. $this->rights[$r][4] = 'supprimer';
  161. $r++;
  162. $this->rights[$r][0] = 1101;
  163. $this->rights[$r][1] = 'Read delivery receipts';
  164. $this->rights[$r][2] = 'r';
  165. $this->rights[$r][3] = 0;
  166. $this->rights[$r][4] = 'livraison';
  167. $this->rights[$r][5] = 'lire';
  168. $r++;
  169. $this->rights[$r][0] = 1102;
  170. $this->rights[$r][1] = 'Create/modify delivery receipts';
  171. $this->rights[$r][2] = 'w';
  172. $this->rights[$r][3] = 0;
  173. $this->rights[$r][4] = 'livraison';
  174. $this->rights[$r][5] = 'creer';
  175. $r++;
  176. $this->rights[$r][0] = 1104;
  177. $this->rights[$r][1] = 'Validate delivery receipts';
  178. $this->rights[$r][2] = 'd';
  179. $this->rights[$r][3] = 0;
  180. $this->rights[$r][4] = 'livraison_advance';
  181. $this->rights[$r][5] = 'validate';
  182. $r++;
  183. $this->rights[$r][0] = 1109;
  184. $this->rights[$r][1] = 'Delete delivery receipts';
  185. $this->rights[$r][2] = 'd';
  186. $this->rights[$r][3] = 0;
  187. $this->rights[$r][4] = 'livraison';
  188. $this->rights[$r][5] = 'supprimer';
  189. // Menus
  190. //-------
  191. $this->menu = 1; // This module add menu entries. They are coded into menu manager.
  192. // Exports
  193. //--------
  194. $r = 0;
  195. include_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
  196. $shipment = new Commande($this->db);
  197. $contact_arrays = $shipment->liste_type_contact('external', '', 0, 0, '');
  198. if (is_array($contact_arrays) && count($contact_arrays) > 0) {
  199. $idcontacts = join(',', array_keys($shipment->liste_type_contact('external', '', 0, 0, '')));
  200. } else {
  201. $idcontacts = 0;
  202. }
  203. $r++;
  204. $this->export_code[$r] = $this->rights_class.'_'.$r;
  205. $this->export_label[$r] = 'Shipments'; // Translation key (used only if key ExportDataset_xxx_z not found)
  206. $this->export_permission[$r] = array(array("expedition", "shipment", "export"));
  207. $this->export_fields_array[$r] = array(
  208. 's.rowid'=>"IdCompany", 's.nom'=>'ThirdParty', 's.address'=>'Address', 's.zip'=>'Zip', 's.town'=>'Town', 'd.nom'=>'State', 'co.label'=>'Country',
  209. 'co.code'=>'CountryCode', 's.phone'=>'Phone', 's.siren'=>'ProfId1', 's.siret'=>'ProfId2', 's.ape'=>'ProfId3', 's.idprof4'=>'ProfId4', 's.idprof5'=>'ProfId5',
  210. 's.idprof6'=>'ProfId6', 'c.rowid'=>"Id", 'c.ref'=>"Ref", 'c.ref_customer'=>"RefCustomer", 'c.fk_soc'=>"IdCompany", 'c.date_creation'=>"DateCreation",
  211. 'c.date_delivery'=>"DateDeliveryPlanned", 'c.tracking_number'=>"TrackingNumber", 'c.height'=>"Height", 'c.width'=>"Width", 'c.size'=>"Depth",
  212. 'c.size_units'=>'SizeUnits', 'c.weight'=>"Weight", 'c.weight_units'=>"WeightUnits", 'c.fk_statut'=>'Status', 'c.note_public'=>"NotePublic",
  213. 'ed.rowid'=>'LineId', 'cd.description'=>'Description', 'ed.qty'=>"Qty", 'p.rowid'=>'ProductId', 'p.ref'=>'ProductRef', 'p.label'=>'ProductLabel',
  214. 'p.weight'=>'ProductWeight', 'p.weight_units'=>'WeightUnits', 'p.volume'=>'ProductVolume', 'p.volume_units'=>'VolumeUnits'
  215. );
  216. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT)) $this->export_fields_array[$r] += array('sp.rowid'=>'IdContact', 'sp.lastname'=>'Lastname', 'sp.firstname'=>'Firstname', 'sp.note_public'=>'NotePublic');
  217. //$this->export_TypeFields_array[$r]=array(
  218. // 's.rowid'=>"List:societe:nom",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','co.label'=>'List:c_country:label:label',
  219. // 'co.code'=>'Text','s.phone'=>'Text','s.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','c.ref'=>"Text",'c.ref_client'=>"Text",
  220. // 'c.date_creation'=>"Date",'c.date_commande'=>"Date",'c.amount_ht'=>"Numeric",'c.remise_percent'=>"Numeric",'c.total_ht'=>"Numeric",
  221. // 'c.total_ttc'=>"Numeric",'c.facture'=>"Boolean",'c.fk_statut'=>'Status','c.note_public'=>"Text",'c.date_livraison'=>'Date','ed.qty'=>"Text"
  222. //);
  223. $this->export_TypeFields_array[$r] = array(
  224. 's.nom'=>'Text', 's.address'=>'Text', 's.zip'=>'Text', 's.town'=>'Text', 'co.label'=>'List:c_country:label:label', 'co.code'=>'Text', 's.phone'=>'Text',
  225. 's.siren'=>'Text', 's.siret'=>'Text', 's.ape'=>'Text', 's.idprof4'=>'Text', 'c.ref'=>"Text", 'c.ref_customer'=>"Text", 'c.date_creation'=>"Date",
  226. 'c.date_delivery'=>"Date", 'c.tracking_number'=>"Numeric", 'c.height'=>"Numeric", 'c.width'=>"Numeric", 'c.weight'=>"Numeric", 'c.fk_statut'=>'Status',
  227. 'c.note_public'=>"Text", 'ed.qty'=>"Numeric", 'd.nom'=>'Text'
  228. );
  229. $this->export_entities_array[$r] = array(
  230. 's.rowid'=>"company", 's.nom'=>'company', 's.address'=>'company', 's.zip'=>'company', 's.town'=>'company', 'd.nom'=>'company', 'co.label'=>'company',
  231. 'co.code'=>'company', 's.fk_pays'=>'company', 's.phone'=>'company', 's.siren'=>'company', 's.ape'=>'company', 's.siret'=>'company', 's.idprof4'=>'company',
  232. 's.idprof5'=>'company', 's.idprof6'=>'company', 'c.rowid'=>"shipment", 'c.ref'=>"shipment", 'c.ref_customer'=>"shipment", 'c.fk_soc'=>"shipment",
  233. 'c.date_creation'=>"shipment", 'c.date_delivery'=>"shipment", 'c.tracking_number'=>'shipment', 'c.height'=>"shipment", 'c.width'=>"shipment",
  234. 'c.size'=>'shipment', 'c.size_units'=>'shipment', 'c.weight'=>"shipment", 'c.weight_units'=>'shipment', 'c.fk_statut'=>"shipment", 'c.note_public'=>"shipment",
  235. 'ed.rowid'=>'shipment_line', 'cd.description'=>'shipment_line', 'ed.qty'=>"shipment_line", 'p.rowid'=>'product', 'p.ref'=>'product', 'p.label'=>'product',
  236. 'p.weight'=>'product', 'p.weight_units'=>'product', 'p.volume'=>'product', 'p.volume_units'=>'product'
  237. );
  238. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT)) $this->export_entities_array[$r] += array('sp.rowid'=>'contact', 'sp.lastname'=>'contact', 'sp.firstname'=>'contact', 'sp.note_public'=>'contact');
  239. $this->export_dependencies_array[$r] = array('shipment_line'=>'ed.rowid', 'product'=>'ed.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
  240. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT))
  241. {
  242. $keyforselect = 'socpeople'; $keyforelement = 'contact'; $keyforaliasextra = 'extra3';
  243. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  244. }
  245. $keyforselect = 'expedition'; $keyforelement = 'shipment'; $keyforaliasextra = 'extra';
  246. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  247. $keyforselect = 'expeditiondet'; $keyforelement = 'shipment_line'; $keyforaliasextra = 'extra2';
  248. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  249. $keyforselect = 'product'; $keyforelement = 'product'; $keyforaliasextra = 'extraprod';
  250. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  251. $this->export_sql_start[$r] = 'SELECT DISTINCT ';
  252. $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'expedition as c';
  253. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'expedition_extrafields as extra ON c.rowid = extra.fk_object,';
  254. $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'societe as s';
  255. if (!$user->rights->societe->client->voir) $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe_commerciaux as sc ON sc.fk_soc = s.rowid';
  256. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_departements as d ON s.fk_departement = d.rowid';
  257. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_country as co ON s.fk_pays = co.rowid,';
  258. $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'expeditiondet as ed';
  259. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'expeditiondet_extrafields as extra2 ON ed.rowid = extra2.fk_object';
  260. $this->export_sql_end[$r] .= ' , '.MAIN_DB_PREFIX.'commandedet as cd';
  261. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on cd.fk_product = p.rowid';
  262. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product_extrafields as extraprod ON p.rowid = extraprod.fk_object';
  263. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT)) {
  264. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'element_contact as ee ON ee.element_id = cd.fk_commande AND ee.fk_c_type_contact IN ('.$idcontacts.')';
  265. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'socpeople as sp ON sp.rowid = ee.fk_socpeople';
  266. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'socpeople_extrafields as extra3 ON sp.rowid = extra3.fk_object';
  267. }
  268. $this->export_sql_end[$r] .= ' WHERE c.fk_soc = s.rowid AND c.rowid = ed.fk_expedition AND ed.fk_origin_line = cd.rowid';
  269. $this->export_sql_end[$r] .= ' AND c.entity IN ('.getEntity('expedition').')';
  270. if (!$user->rights->societe->client->voir) $this->export_sql_end[$r] .= ' AND sc.fk_user = '.$user->id;
  271. }
  272. /**
  273. * Function called when module is enabled.
  274. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  275. * It also creates data directories
  276. *
  277. * @param string $options Options when enabling module ('', 'noboxes')
  278. * @return int 1 if OK, 0 if KO
  279. */
  280. public function init($options = '')
  281. {
  282. global $conf, $langs;
  283. // Permissions
  284. $this->remove($options);
  285. //ODT template
  286. $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/shipments/template_shipment.odt';
  287. $dirodt = DOL_DATA_ROOT.'/doctemplates/shipments';
  288. $dest = $dirodt.'/template_shipment.odt';
  289. if (file_exists($src) && !file_exists($dest))
  290. {
  291. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  292. dol_mkdir($dirodt);
  293. $result = dol_copy($src, $dest, 0, 0);
  294. if ($result < 0)
  295. {
  296. $langs->load("errors");
  297. $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
  298. return 0;
  299. }
  300. }
  301. $sql = array();
  302. $sql = array(
  303. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'shipping' AND entity = ".$conf->entity,
  304. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','shipping',".$conf->entity.")",
  305. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[3][2])."' AND type = 'delivery' AND entity = ".$conf->entity,
  306. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[3][2])."','delivery',".$conf->entity.")",
  307. );
  308. return $this->_init($sql, $options);
  309. }
  310. }