modExpedition.class.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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@capnetworks.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 <http://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. 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->special = 0;
  53. $this->picto = "sending";
  54. // Data directories to create when module is enabled
  55. $this->dirs = array("/expedition/temp",
  56. "/expedition/sending",
  57. "/expedition/sending/temp",
  58. "/expedition/receipt",
  59. "/expedition/receipt/temp",
  60. "/doctemplates/shipment",
  61. "/doctemplates/delivery"
  62. );
  63. // Config pages
  64. $this->config_page_url = array("confexped.php");
  65. // Dependencies
  66. $this->depends = array("modCommande");
  67. $this->requiredby = array();
  68. $this->conflictwith = array();
  69. $this->langfiles = array('deliveries','sendings');
  70. // Constants
  71. $this->const = array();
  72. $r=0;
  73. $this->const[$r][0] = "EXPEDITION_ADDON_PDF";
  74. $this->const[$r][1] = "chaine";
  75. $this->const[$r][2] = "rouget";
  76. $this->const[$r][3] = 'Nom du gestionnaire de generation des bons expeditions en PDF';
  77. $this->const[$r][4] = 0;
  78. $r++;
  79. $this->const[$r][0] = "EXPEDITION_ADDON_NUMBER";
  80. $this->const[$r][1] = "chaine";
  81. $this->const[$r][2] = "mod_expedition_safor";
  82. $this->const[$r][3] = 'Nom du gestionnaire de numerotation des expeditions';
  83. $this->const[$r][4] = 0;
  84. $r++;
  85. $this->const[$r][0] = "EXPEDITION_ADDON_PDF_ODT_PATH";
  86. $this->const[$r][1] = "chaine";
  87. $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/shipment";
  88. $this->const[$r][3] = "";
  89. $this->const[$r][4] = 0;
  90. $r++;
  91. $this->const[$r][0] = "LIVRAISON_ADDON_PDF";
  92. $this->const[$r][1] = "chaine";
  93. $this->const[$r][2] = "typhon";
  94. $this->const[$r][3] = 'Nom du gestionnaire de generation des bons de reception en PDF';
  95. $this->const[$r][4] = 0;
  96. $r++;
  97. $this->const[$r][0] = "LIVRAISON_ADDON_NUMBER";
  98. $this->const[$r][1] = "chaine";
  99. $this->const[$r][2] = "mod_livraison_jade";
  100. $this->const[$r][3] = 'Nom du gestionnaire de numerotation des bons de reception';
  101. $this->const[$r][4] = 0;
  102. $r++;
  103. $this->const[$r][0] = "LIVRAISON_ADDON_PDF_ODT_PATH";
  104. $this->const[$r][1] = "chaine";
  105. $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/delivery";
  106. $this->const[$r][3] = "";
  107. $this->const[$r][4] = 0;
  108. $r++;
  109. $this->const[$r][0] = "MAIN_SUBMODULE_EXPEDITION";
  110. $this->const[$r][1] = "chaine";
  111. $this->const[$r][2] = "1";
  112. $this->const[$r][3] = "Enable shipments";
  113. $this->const[$r][4] = 0;
  114. $r++;
  115. // Boxes
  116. $this->boxes = array();
  117. // Permissions
  118. $this->rights = array();
  119. $this->rights_class = 'expedition';
  120. $r=0;
  121. $r++;
  122. $this->rights[$r][0] = 101;
  123. $this->rights[$r][1] = 'Lire les expeditions';
  124. $this->rights[$r][2] = 'r';
  125. $this->rights[$r][3] = 1;
  126. $this->rights[$r][4] = 'lire';
  127. $r++;
  128. $this->rights[$r][0] = 102;
  129. $this->rights[$r][1] = 'Creer modifier les expeditions';
  130. $this->rights[$r][2] = 'w';
  131. $this->rights[$r][3] = 0;
  132. $this->rights[$r][4] = 'creer';
  133. $r++;
  134. $this->rights[$r][0] = 104;
  135. $this->rights[$r][1] = 'Valider les expeditions';
  136. $this->rights[$r][2] = 'd';
  137. $this->rights[$r][3] = 0;
  138. $this->rights[$r][4] = 'shipping_advance';
  139. $this->rights[$r][5] = 'validate';
  140. $r++;
  141. $this->rights[$r][0] = 105; // id de la permission
  142. $this->rights[$r][1] = 'Envoyer les expeditions aux clients'; // libelle de la permission
  143. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  144. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  145. $this->rights[$r][4] = 'shipping_advance';
  146. $this->rights[$r][5] = 'send';
  147. $r++;
  148. $this->rights[$r][0] = 106;
  149. $this->rights[$r][1] = 'Exporter les expeditions';
  150. $this->rights[$r][2] = 'r';
  151. $this->rights[$r][3] = 0;
  152. $this->rights[$r][4] = 'shipment';
  153. $this->rights[$r][5] = 'export';
  154. $r++;
  155. $this->rights[$r][0] = 109;
  156. $this->rights[$r][1] = 'Supprimer les expeditions';
  157. $this->rights[$r][2] = 'd';
  158. $this->rights[$r][3] = 0;
  159. $this->rights[$r][4] = 'supprimer';
  160. $r++;
  161. $this->rights[$r][0] = 1101;
  162. $this->rights[$r][1] = 'Lire les bons de livraison';
  163. $this->rights[$r][2] = 'r';
  164. $this->rights[$r][3] = 1;
  165. $this->rights[$r][4] = 'livraison';
  166. $this->rights[$r][5] = 'lire';
  167. $r++;
  168. $this->rights[$r][0] = 1102;
  169. $this->rights[$r][1] = 'Creer modifier les bons de livraison';
  170. $this->rights[$r][2] = 'w';
  171. $this->rights[$r][3] = 0;
  172. $this->rights[$r][4] = 'livraison';
  173. $this->rights[$r][5] = 'creer';
  174. $r++;
  175. $this->rights[$r][0] = 1104;
  176. $this->rights[$r][1] = 'Valider les bons de livraison';
  177. $this->rights[$r][2] = 'd';
  178. $this->rights[$r][3] = 0;
  179. $this->rights[$r][4] = 'livraison_advance';
  180. $this->rights[$r][5] = 'validate';
  181. $r++;
  182. $this->rights[$r][0] = 1109;
  183. $this->rights[$r][1] = 'Supprimer les bons de livraison';
  184. $this->rights[$r][2] = 'd';
  185. $this->rights[$r][3] = 0;
  186. $this->rights[$r][4] = 'livraison';
  187. $this->rights[$r][5] = 'supprimer';
  188. // Exports
  189. //--------
  190. $r=0;
  191. include_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
  192. $shipment=new Commande($this->db);
  193. $contact_arrays=$shipment->liste_type_contact('external','',0,0,'');
  194. if (is_array($contact_arrays) && count($contact_arrays)>0){
  195. $idcontacts=join(',',array_keys($shipment->liste_type_contact('external','',0,0,'')));
  196. } else {
  197. $idcontacts=0;
  198. }
  199. $r++;
  200. $this->export_code[$r]=$this->rights_class.'_'.$r;
  201. $this->export_label[$r]='Shipments'; // Translation key (used only if key ExportDataset_xxx_z not found)
  202. $this->export_permission[$r]=array(array("expedition","shipment","export"));
  203. $this->export_fields_array[$r]=array('s.rowid'=>"IdCompany",'s.nom'=>'ThirdParty','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','d.nom'=>'State','co.label'=>'Country','co.code'=>'CountryCode','s.phone'=>'Phone','s.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.idprof5'=>'ProfId5','s.idprof6'=>'ProfId6','c.rowid'=>"Id",'c.ref'=>"Ref",'c.ref_customer'=>"RefCustomer",'c.fk_soc'=>"IdCompany",'c.date_creation'=>"DateCreation",'c.date_delivery'=>"DateDeliveryPlanned",'c.tracking_number'=>"TrackingNumber",'c.height'=>"Height",'c.width'=>"Width",'c.size'=>"Depth",'c.size_units'=>'SizeUnits','c.weight'=>"Weight",'c.weight_units'=>"WeightUnits",'c.fk_statut'=>'Status','c.note_public'=>"NotePublic",'ed.rowid'=>'LineId','cd.description'=>'Description','ed.qty'=>"Qty",'p.rowid'=>'ProductId','p.ref'=>'ProductRef','p.label'=>'ProductLabel','p.weight'=>'ProductWeight','p.weight_units'=>'WeightUnits','p.volume'=>'ProductVolume','p.volume_units'=>'VolumeUnits');
  204. 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');
  205. //$this->export_TypeFields_array[$r]=array('s.rowid'=>"List:societe:nom",'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','s.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','c.ref'=>"Text",'c.ref_client'=>"Text",'c.date_creation'=>"Date",'c.date_commande'=>"Date",'c.amount_ht'=>"Numeric",'c.remise_percent'=>"Numeric",'c.total_ht'=>"Numeric",'c.total_ttc'=>"Numeric",'c.facture'=>"Boolean",'c.fk_statut'=>'Status','c.note_public'=>"Text",'c.date_livraison'=>'Date','ed.qty'=>"Text");
  206. $this->export_TypeFields_array[$r]=array('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','s.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','c.ref'=>"Text",'c.ref_customer'=>"Text",'c.date_creation'=>"Date",'c.date_delivery'=>"Date",'c.tracking_number'=>"Numeric",'c.height'=>"Numeric",'c.width'=>"Numeric",'c.weight'=>"Numeric",'c.fk_statut'=>'Status','c.note_public'=>"Text",'ed.qty'=>"Numeric",'d.nom'=>'Text');
  207. $this->export_entities_array[$r]=array('s.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','d.nom'=>'company','co.label'=>'company','co.code'=>'company','s.fk_pays'=>'company','s.phone'=>'company','s.siren'=>'company','s.ape'=>'company','s.siret'=>'company','s.idprof4'=>'company','s.idprof5'=>'company','s.idprof6'=>'company','c.rowid'=>"shipment",'c.ref'=>"shipment",'c.ref_customer'=>"shipment",'c.fk_soc'=>"shipment",'c.date_creation'=>"shipment",'c.date_delivery'=>"shipment",'c.tracking_number'=>'shipment','c.height'=>"shipment",'c.width'=>"shipment",'c.size'=>'shipment','c.size_units'=>'shipment','c.weight'=>"shipment",'c.weight_units'=>'shipment','c.fk_statut'=>"shipment",'c.note_public'=>"shipment",'ed.rowid'=>'shipment_line','cd.description'=>'shipment_line','ed.qty'=>"shipment_line",'p.rowid'=>'product','p.ref'=>'product','p.label'=>'product','p.weight'=>'product','p.weight_units'=>'product','p.volume'=>'product','p.volume_units'=>'product');
  208. 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');
  209. $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
  210. if ($idcontacts && ! empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT))
  211. {
  212. $keyforselect='socpeople'; $keyforelement='contact'; $keyforaliasextra='extra3';
  213. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  214. }
  215. $keyforselect='expedition'; $keyforelement='shipment'; $keyforaliasextra='extra';
  216. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  217. $keyforselect='expeditiondet'; $keyforelement='shipment_line'; $keyforaliasextra='extra2';
  218. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  219. $this->export_sql_start[$r]='SELECT DISTINCT ';
  220. $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'expedition as c';
  221. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'expedition_extrafields as extra ON c.rowid = extra.fk_object,';
  222. $this->export_sql_end[$r] .=' '.MAIN_DB_PREFIX.'societe as s';
  223. 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';
  224. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'c_departements as d ON s.fk_departement = d.rowid';
  225. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'c_country as co ON s.fk_pays = co.rowid,';
  226. $this->export_sql_end[$r] .=' '.MAIN_DB_PREFIX.'expeditiondet as ed';
  227. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'expeditiondet_extrafields as extra2 ON ed.rowid = extra2.fk_object';
  228. $this->export_sql_end[$r] .=' , '.MAIN_DB_PREFIX.'commandedet as cd';
  229. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on cd.fk_product = p.rowid';
  230. if ($idcontacts && ! empty($conf->global->SHIPMENT_ADD_CONTACTS_IN_EXPORT))
  231. {
  232. $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.')';
  233. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'socpeople as sp ON sp.rowid = ee.fk_socpeople';
  234. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'socpeople_extrafields as extra3 ON sp.rowid = extra3.fk_object';
  235. }
  236. $this->export_sql_end[$r] .=' WHERE c.fk_soc = s.rowid AND c.rowid = ed.fk_expedition AND ed.fk_origin_line = cd.rowid';
  237. $this->export_sql_end[$r] .=' AND c.entity IN ('.getEntity('shipment',1).')';
  238. if(!$user->rights->societe->client->voir) $this->export_sql_end[$r] .=' AND sc.fk_user = '.$user->id;
  239. }
  240. /**
  241. * Function called when module is enabled.
  242. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  243. * It also creates data directories
  244. *
  245. * @param string $options Options when enabling module ('', 'noboxes')
  246. * @return int 1 if OK, 0 if KO
  247. */
  248. function init($options='')
  249. {
  250. global $conf,$langs;
  251. // Permissions
  252. $this->remove($options);
  253. //ODT template
  254. $src=DOL_DOCUMENT_ROOT.'/install/doctemplates/shipment/template_shipment.odt';
  255. $dirodt=DOL_DATA_ROOT.'/doctemplates/shipment';
  256. $dest=$dirodt.'/template_shipment.odt';
  257. if (file_exists($src) && ! file_exists($dest))
  258. {
  259. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  260. dol_mkdir($dirodt);
  261. $result=dol_copy($src,$dest,0,0);
  262. if ($result < 0)
  263. {
  264. $langs->load("errors");
  265. $this->error=$langs->trans('ErrorFailToCopyFile',$src,$dest);
  266. return 0;
  267. }
  268. }
  269. $sql = array();
  270. $sql = array(
  271. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->const[0][2]."' AND entity = ".$conf->entity,
  272. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->const[0][2]."','shipping',".$conf->entity.")",
  273. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->const[3][2]."' AND entity = ".$conf->entity,
  274. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->const[3][2]."','delivery',".$conf->entity.")",
  275. );
  276. return $this->_init($sql,$options);
  277. }
  278. }