modCommande.class.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. /* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
  5. * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
  6. * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
  7. * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
  8. * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. /**
  24. * \defgroup commande Module orders
  25. * \brief Module pour gerer le suivi des commandes
  26. * \file htdocs/core/modules/modCommande.class.php
  27. * \ingroup commande
  28. * \brief Fichier de description et activation du module Commande
  29. */
  30. include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
  31. /**
  32. * Class to describe module customer orders
  33. */
  34. class modCommande extends DolibarrModules
  35. {
  36. /**
  37. * Constructor. Define names, constants, directories, boxes, permissions
  38. *
  39. * @param DoliDB $db Database handler
  40. */
  41. function __construct($db)
  42. {
  43. global $conf, $user;
  44. $this->db = $db;
  45. $this->numero = 25;
  46. $this->family = "crm";
  47. $this->module_position = '30';
  48. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  49. $this->name = preg_replace('/^mod/i','',get_class($this));
  50. $this->description = "Gestion des commandes clients";
  51. // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
  52. $this->version = 'dolibarr';
  53. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  54. $this->picto='order';
  55. // Data directories to create when module is enabled
  56. $this->dirs = array("/commande/temp");
  57. // Config pages
  58. $this->config_page_url = array("commande.php");
  59. // Dependancies
  60. $this->depends = array("modSociete");
  61. $this->requiredby = array("modExpedition");
  62. $this->conflictwith = array();
  63. $this->langfiles = array('orders', 'bills', 'companies','products', 'deliveries', 'sendings');
  64. // Constants
  65. $this->const = array();
  66. $r=0;
  67. $this->const[$r][0] = "COMMANDE_ADDON_PDF";
  68. $this->const[$r][1] = "chaine";
  69. $this->const[$r][2] = "einstein";
  70. $this->const[$r][3] = 'Name of PDF model of order';
  71. $this->const[$r][4] = 0;
  72. $r++;
  73. $this->const[$r][0] = "COMMANDE_ADDON";
  74. $this->const[$r][1] = "chaine";
  75. $this->const[$r][2] = "mod_commande_marbre";
  76. $this->const[$r][3] = 'Name of numbering numerotation rules of order';
  77. $this->const[$r][4] = 0;
  78. $r++;
  79. $this->const[$r][0] = "COMMANDE_ADDON_PDF_ODT_PATH";
  80. $this->const[$r][1] = "chaine";
  81. $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/orders";
  82. $this->const[$r][3] = "";
  83. $this->const[$r][4] = 0;
  84. /*$r++;
  85. $this->const[$r][0] = "COMMANDE_DRAFT_WATERMARK";
  86. $this->const[$r][1] = "chaine";
  87. $this->const[$r][2] = "__(Draft)__";
  88. $this->const[$r][3] = 'Watermark to show on draft orders';
  89. $this->const[$r][4] = 0;*/
  90. // Boxes
  91. $this->boxes = array(
  92. 0=>array('file'=>'box_commandes.php','enabledbydefaulton'=>'Home'),
  93. 2=>array('file'=>'box_graph_orders_permonth.php','enabledbydefaulton'=>'Home')
  94. );
  95. // Permissions
  96. $this->rights = array();
  97. $this->rights_class = 'commande';
  98. $r=0;
  99. $r++;
  100. $this->rights[$r][0] = 81;
  101. $this->rights[$r][1] = 'Lire les commandes clients';
  102. $this->rights[$r][2] = 'r';
  103. $this->rights[$r][3] = 0;
  104. $this->rights[$r][4] = 'lire';
  105. $r++;
  106. $this->rights[$r][0] = 82;
  107. $this->rights[$r][1] = 'Creer/modifier les commandes clients';
  108. $this->rights[$r][2] = 'w';
  109. $this->rights[$r][3] = 0;
  110. $this->rights[$r][4] = 'creer';
  111. $r++;
  112. $this->rights[$r][0] = 84;
  113. $this->rights[$r][1] = 'Valider les commandes clients';
  114. $this->rights[$r][2] = 'd';
  115. $this->rights[$r][3] = 0;
  116. $this->rights[$r][4] = 'order_advance';
  117. $this->rights[$r][5] = 'validate';
  118. $r++;
  119. $this->rights[$r][0] = 86;
  120. $this->rights[$r][1] = 'Envoyer les commandes clients';
  121. $this->rights[$r][2] = 'd';
  122. $this->rights[$r][3] = 0;
  123. $this->rights[$r][4] = 'order_advance';
  124. $this->rights[$r][5] = 'send';
  125. $r++;
  126. $this->rights[$r][0] = 87;
  127. $this->rights[$r][1] = 'Cloturer les commandes clients';
  128. $this->rights[$r][2] = 'd';
  129. $this->rights[$r][3] = 0;
  130. $this->rights[$r][4] = 'cloturer';
  131. $r++;
  132. $this->rights[$r][0] = 88;
  133. $this->rights[$r][1] = 'Annuler les commandes clients';
  134. $this->rights[$r][2] = 'd';
  135. $this->rights[$r][3] = 0;
  136. $this->rights[$r][4] = 'order_advance';
  137. $this->rights[$r][5] = 'annuler';
  138. $r++;
  139. $this->rights[$r][0] = 89;
  140. $this->rights[$r][1] = 'Supprimer les commandes clients';
  141. $this->rights[$r][2] = 'd';
  142. $this->rights[$r][3] = 0;
  143. $this->rights[$r][4] = 'supprimer';
  144. $r++;
  145. $this->rights[$r][0] = 1421;
  146. $this->rights[$r][1] = 'Exporter les commandes clients et attributs';
  147. $this->rights[$r][2] = 'r';
  148. $this->rights[$r][3] = 0;
  149. $this->rights[$r][4] = 'commande';
  150. $this->rights[$r][5] = 'export';
  151. // Menus
  152. //-------
  153. $this->menu = 1; // This module add menu entries. They are coded into menu manager.
  154. // Exports
  155. //--------
  156. $r=0;
  157. $r++;
  158. $this->export_code[$r]=$this->rights_class.'_'.$r;
  159. $this->export_label[$r]='CustomersOrdersAndOrdersLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
  160. $this->export_permission[$r]=array(array("commande","commande","export"));
  161. $this->export_fields_array[$r]=array(
  162. 's.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','d.nom'=>'State','co.label'=>'Country',
  163. 'co.code'=>"CountryCode",'s.phone'=>'Phone','s.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','c.rowid'=>"Id",
  164. 'c.ref'=>"Ref",'c.ref_client'=>"RefCustomer",'c.fk_soc'=>"IdCompany",'c.date_creation'=>"DateCreation",'c.date_commande'=>"OrderDate",
  165. 'c.date_livraison'=>"DateDeliveryPlanned",'c.amount_ht'=>"Amount",'c.remise_percent'=>"GlobalDiscount",'c.total_ht'=>"TotalHT",
  166. 'c.total_ttc'=>"TotalTTC",'c.facture'=>"Billed",'c.fk_statut'=>'Status','c.note_public'=>"Note",'c.date_livraison'=>'DeliveryDate',
  167. 'c.fk_user_author'=>'CreatedById','uc.login'=>'CreatedByLogin','c.fk_user_valid'=>'ValidatedById','uv.login'=>'ValidatedByLogin',
  168. 'pj.ref'=>'ProjectRef','cd.rowid'=>'LineId','cd.label'=>"Label",'cd.description'=>"LineDescription",'cd.product_type'=>'TypeOfLineServiceOrProduct',
  169. 'cd.tva_tx'=>"LineVATRate",'cd.qty'=>"LineQty",'cd.total_ht'=>"LineTotalHT",'cd.total_tva'=>"LineTotalVAT",'cd.total_ttc'=>"LineTotalTTC",
  170. 'p.rowid'=>'ProductId','p.ref'=>'ProductRef','p.label'=>'ProductLabel'
  171. );
  172. if (! empty($conf->multicurrency->enabled))
  173. {
  174. $this->export_fields_array[$r]['c.multicurrency_code'] = 'Currency';
  175. $this->export_fields_array[$r]['c.multicurrency_tx'] = 'CurrencyRate';
  176. $this->export_fields_array[$r]['c.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
  177. $this->export_fields_array[$r]['c.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
  178. $this->export_fields_array[$r]['c.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
  179. }
  180. //$this->export_TypeFields_array[$r]=array(
  181. // 's.rowid'=>"List:societe:nom",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','co.label'=>'List:c_country:label:label',
  182. // '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",
  183. // 'c.date_creation'=>"Date",'c.date_commande'=>"Date",'c.amount_ht'=>"Numeric",'c.remise_percent'=>"Numeric",'c.total_ht'=>"Numeric",
  184. // 'c.total_ttc'=>"Numeric",'c.facture'=>"Boolean",'c.fk_statut'=>'Status','c.note_public'=>"Text",'c.date_livraison'=>'Date','cd.description'=>"Text",
  185. // 'cd.product_type'=>'Boolean','cd.tva_tx'=>"Numeric",'cd.qty'=>"Numeric",'cd.total_ht'=>"Numeric",'cd.total_tva'=>"Numeric",'cd.total_ttc'=>"Numeric",
  186. // 'p.rowid'=>'List:product:ref','p.ref'=>'Text','p.label'=>'Text'
  187. //);
  188. $this->export_TypeFields_array[$r]=array(
  189. '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',
  190. 's.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','c.ref'=>"Text",'c.ref_client'=>"Text",'c.date_creation'=>"Date",
  191. 'c.date_commande'=>"Date",'c.date_livraison'=>"Date",'c.amount_ht'=>"Numeric",'c.remise_percent'=>"Numeric",'c.total_ht'=>"Numeric",
  192. 'c.total_ttc'=>"Numeric",'c.facture'=>"Boolean",'c.fk_statut'=>'Status','c.note_public'=>"Text",'c.date_livraison'=>'Date','pj.ref'=>'Text',
  193. 'cd.description'=>"Text",'cd.product_type'=>'Boolean','cd.tva_tx'=>"Numeric",'cd.qty'=>"Numeric",'cd.total_ht'=>"Numeric",'cd.total_tva'=>"Numeric",
  194. 'cd.total_ttc'=>"Numeric",'p.rowid'=>'List:product:ref','p.ref'=>'Text','p.label'=>'Text','d.nom'=>'Text'
  195. );
  196. $this->export_entities_array[$r]=array(
  197. 's.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','d.nom'=>'company','co.label'=>'company',
  198. 'co.code'=>'company','s.phone'=>'company','s.siren'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.siret'=>'company','c.rowid'=>"order",
  199. 'c.ref'=>"order",'c.ref_client'=>"order",'c.fk_soc'=>"order",'c.date_creation'=>"order",'c.date_commande'=>"order",'c.amount_ht'=>"order",
  200. 'c.remise_percent'=>"order",'c.total_ht'=>"order",'c.total_ttc'=>"order",'c.facture'=>"order",'c.fk_statut'=>"order",'c.note'=>"order",
  201. 'c.date_livraison'=>"order",'pj.ref'=>'project','cd.rowid'=>'order_line','cd.label'=>"order_line",'cd.description'=>"order_line",
  202. 'cd.product_type'=>'order_line','cd.tva_tx'=>"order_line",'cd.qty'=>"order_line",'cd.total_ht'=>"order_line",'cd.total_tva'=>"order_line",
  203. 'cd.total_ttc'=>"order_line",'p.rowid'=>'product','p.ref'=>'product','p.label'=>'product'
  204. );
  205. $this->export_dependencies_array[$r]=array('order_line'=>'cd.rowid','product'=>'cd.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
  206. $keyforselect='commande'; $keyforelement='order'; $keyforaliasextra='extra';
  207. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  208. $keyforselect='commandedet'; $keyforelement='order_line'; $keyforaliasextra='extra2';
  209. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  210. $keyforselect='product'; $keyforelement='product'; $keyforaliasextra='extra3';
  211. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  212. $this->export_sql_start[$r]='SELECT DISTINCT ';
  213. $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'societe as s';
  214. if (empty($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';
  215. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'c_departements as d ON s.fk_departement = d.rowid';
  216. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'c_country as co ON s.fk_pays = co.rowid,';
  217. $this->export_sql_end[$r] .=' '.MAIN_DB_PREFIX.'commande as c';
  218. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'projet as pj ON c.fk_projet = pj.rowid';
  219. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'user as uc ON c.fk_user_author = uc.rowid';
  220. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'user as uv ON c.fk_user_valid = uv.rowid';
  221. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'commande_extrafields as extra ON c.rowid = extra.fk_object';
  222. $this->export_sql_end[$r] .=' , '.MAIN_DB_PREFIX.'commandedet as cd';
  223. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'commandedet_extrafields as extra2 on cd.rowid = extra2.fk_object';
  224. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on cd.fk_product = p.rowid';
  225. $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product_extrafields as extra3 on p.rowid = extra3.fk_object';
  226. $this->export_sql_end[$r] .=' WHERE c.fk_soc = s.rowid AND c.rowid = cd.fk_commande';
  227. $this->export_sql_end[$r] .=' AND c.entity IN ('.getEntity('commande').')';
  228. if (empty($user->rights->societe->client->voir)) $this->export_sql_end[$r] .=' AND sc.fk_user = '.(empty($user)?0:$user->id);
  229. }
  230. /**
  231. * Function called when module is enabled.
  232. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  233. * It also creates data directories
  234. *
  235. * @param string $options Options when enabling module ('', 'newboxdefonly', 'noboxes')
  236. * @return int 1 if OK, 0 if KO
  237. */
  238. function init($options='')
  239. {
  240. global $conf,$langs;
  241. // Permissions
  242. $this->remove($options);
  243. //ODT template
  244. $src=DOL_DOCUMENT_ROOT.'/install/doctemplates/orders/template_order.odt';
  245. $dirodt=DOL_DATA_ROOT.'/doctemplates/orders';
  246. $dest=$dirodt.'/template_order.odt';
  247. if (file_exists($src) && ! file_exists($dest))
  248. {
  249. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  250. dol_mkdir($dirodt);
  251. $result=dol_copy($src,$dest,0,0);
  252. if ($result < 0)
  253. {
  254. $langs->load("errors");
  255. $this->error=$langs->trans('ErrorFailToCopyFile',$src,$dest);
  256. return 0;
  257. }
  258. }
  259. $sql = array(
  260. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'order' AND entity = ".$conf->entity,
  261. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','order',".$conf->entity.")"
  262. );
  263. return $this->_init($sql,$options);
  264. }
  265. }