modExpedition.class.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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 Description and activation file for the 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] = 'delivery';
  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] = 'delivery';
  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] = 'delivery_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] = 'delivery';
  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)) {
  217. $this->export_fields_array[$r] += array('sp.rowid'=>'IdContact', 'sp.lastname'=>'Lastname', 'sp.firstname'=>'Firstname', 'sp.note_public'=>'NotePublic');
  218. }
  219. //$this->export_TypeFields_array[$r]=array(
  220. // 's.rowid'=>"Numeric",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','co.label'=>'List:c_country:label:label',
  221. // '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",
  222. // 'c.date_creation'=>"Date",'c.date_commande'=>"Date",'c.amount_ht'=>"Numeric",'c.remise_percent'=>"Numeric",'c.total_ht'=>"Numeric",
  223. // 'c.total_ttc'=>"Numeric",'c.facture'=>"Boolean",'c.fk_statut'=>'Status','c.note_public'=>"Text",'c.date_livraison'=>'Date','ed.qty'=>"Text"
  224. //);
  225. $this->export_TypeFields_array[$r] = array(
  226. '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',
  227. 's.siren'=>'Text', 's.siret'=>'Text', 's.ape'=>'Text', 's.idprof4'=>'Text', 'c.ref'=>"Text", 'c.ref_customer'=>"Text", 'c.date_creation'=>"Date",
  228. 'c.date_delivery'=>"Date", 'c.tracking_number'=>"Numeric", 'c.height'=>"Numeric", 'c.width'=>"Numeric", 'c.weight'=>"Numeric", 'c.fk_statut'=>'Status',
  229. 'c.note_public'=>"Text", 'ed.qty'=>"Numeric", 'd.nom'=>'Text'
  230. );
  231. $this->export_entities_array[$r] = array(
  232. 's.rowid'=>"company", 's.nom'=>'company', 's.address'=>'company', 's.zip'=>'company', 's.town'=>'company', 'd.nom'=>'company', 'co.label'=>'company',
  233. 'co.code'=>'company', 's.fk_pays'=>'company', 's.phone'=>'company', 's.siren'=>'company', 's.ape'=>'company', 's.siret'=>'company', 's.idprof4'=>'company',
  234. 's.idprof5'=>'company', 's.idprof6'=>'company', 'c.rowid'=>"shipment", 'c.ref'=>"shipment", 'c.ref_customer'=>"shipment", 'c.fk_soc'=>"shipment",
  235. 'c.date_creation'=>"shipment", 'c.date_delivery'=>"shipment", 'c.tracking_number'=>'shipment', 'c.height'=>"shipment", 'c.width'=>"shipment",
  236. 'c.size'=>'shipment', 'c.size_units'=>'shipment', 'c.weight'=>"shipment", 'c.weight_units'=>'shipment', 'c.fk_statut'=>"shipment", 'c.note_public'=>"shipment",
  237. 'ed.rowid'=>'shipment_line', 'cd.description'=>'shipment_line', 'ed.qty'=>"shipment_line", 'p.rowid'=>'product', 'p.ref'=>'product', 'p.label'=>'product',
  238. 'p.weight'=>'product', 'p.weight_units'=>'product', 'p.volume'=>'product', 'p.volume_units'=>'product'
  239. );
  240. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT)) {
  241. $this->export_entities_array[$r] += array('sp.rowid'=>'contact', 'sp.lastname'=>'contact', 'sp.firstname'=>'contact', 'sp.note_public'=>'contact');
  242. }
  243. $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
  244. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT)) {
  245. $keyforselect = 'socpeople';
  246. $keyforelement = 'contact';
  247. $keyforaliasextra = 'extra3';
  248. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  249. }
  250. $keyforselect = 'expedition';
  251. $keyforelement = 'shipment';
  252. $keyforaliasextra = 'extra';
  253. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  254. $keyforselect = 'expeditiondet';
  255. $keyforelement = 'shipment_line';
  256. $keyforaliasextra = 'extra2';
  257. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  258. $keyforselect = 'product';
  259. $keyforelement = 'product';
  260. $keyforaliasextra = 'extraprod';
  261. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  262. $this->export_sql_start[$r] = 'SELECT DISTINCT ';
  263. $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'expedition as c';
  264. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'expedition_extrafields as extra ON c.rowid = extra.fk_object,';
  265. $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'societe as s';
  266. if (empty($user->rights->societe->client->voir)) {
  267. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe_commerciaux as sc ON sc.fk_soc = s.rowid';
  268. }
  269. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_departements as d ON s.fk_departement = d.rowid';
  270. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_country as co ON s.fk_pays = co.rowid,';
  271. $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'expeditiondet as ed';
  272. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'expeditiondet_extrafields as extra2 ON ed.rowid = extra2.fk_object';
  273. $this->export_sql_end[$r] .= ' , '.MAIN_DB_PREFIX.'commandedet as cd';
  274. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on cd.fk_product = p.rowid';
  275. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product_extrafields as extraprod ON p.rowid = extraprod.fk_object';
  276. if ($idcontacts && !empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT)) {
  277. $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 ('.$this->db->sanitize($idcontacts).')';
  278. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'socpeople as sp ON sp.rowid = ee.fk_socpeople';
  279. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'socpeople_extrafields as extra3 ON sp.rowid = extra3.fk_object';
  280. }
  281. $this->export_sql_end[$r] .= ' WHERE c.fk_soc = s.rowid AND c.rowid = ed.fk_expedition AND ed.fk_origin_line = cd.rowid';
  282. $this->export_sql_end[$r] .= ' AND c.entity IN ('.getEntity('expedition').')';
  283. if (empty($user->rights->societe->client->voir)) {
  284. $this->export_sql_end[$r] .= ' AND sc.fk_user = '.(empty($user) ? 0 : $user->id);
  285. }
  286. }
  287. /**
  288. * Function called when module is enabled.
  289. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  290. * It also creates data directories
  291. *
  292. * @param string $options Options when enabling module ('', 'noboxes')
  293. * @return int 1 if OK, 0 if KO
  294. */
  295. public function init($options = '')
  296. {
  297. global $conf, $langs;
  298. // Permissions
  299. $this->remove($options);
  300. //ODT template
  301. $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/shipments/template_shipment.odt';
  302. $dirodt = DOL_DATA_ROOT.'/doctemplates/shipments';
  303. $dest = $dirodt.'/template_shipment.odt';
  304. if (file_exists($src) && !file_exists($dest)) {
  305. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  306. dol_mkdir($dirodt);
  307. $result = dol_copy($src, $dest, 0, 0);
  308. if ($result < 0) {
  309. $langs->load("errors");
  310. $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
  311. return 0;
  312. }
  313. }
  314. $sql = array();
  315. $sql = array(
  316. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'shipping' AND entity = ".((int) $conf->entity),
  317. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','shipping',".((int) $conf->entity).")",
  318. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[3][2])."' AND type = 'delivery' AND entity = ".((int) $conf->entity),
  319. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[3][2])."','delivery',".((int) $conf->entity).")",
  320. );
  321. return $this->_init($sql, $options);
  322. }
  323. }