modPropale.class.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. <?php
  2. /* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2010 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) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
  7. * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
  8. * Copyright (C) 2020 Ahmad Jamaly Rabib <rabib@metroworks.co.jp>
  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 <https://www.gnu.org/licenses/>.
  22. */
  23. /**
  24. * \defgroup propale Module commercial proposals
  25. * \brief Module to manage commercial proposals
  26. * \file htdocs/core/modules/modPropale.class.php
  27. * \ingroup propale
  28. * \brief Description and activation file for the module customer proposal
  29. */
  30. include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
  31. /**
  32. * Class to describe and enable module Propale
  33. */
  34. class modPropale extends DolibarrModules
  35. {
  36. /**
  37. * Constructor. Define names, constants, directories, boxes, permissions
  38. *
  39. * @param DoliDB $db Database handler
  40. */
  41. public function __construct($db)
  42. {
  43. global $conf, $user;
  44. $this->db = $db;
  45. $this->numero = 20;
  46. $this->family = "crm";
  47. $this->module_position = '10';
  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 propositions commerciales";
  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 = 'propal';
  55. // Data directories to create when module is enabled
  56. $this->dirs = array("/propale/temp");
  57. // Dependencies
  58. $this->hidden = false; // A condition to hide module
  59. $this->depends = array("modSociete"); // List of module class names as string that must be enabled if this module is enabled
  60. $this->requiredby = array(); // List of module ids to disable if this one is disabled
  61. $this->conflictwith = array(); // List of module class names as string this module is in conflict with
  62. $this->phpmin = array(5, 6); // Minimum version of PHP required by module
  63. $this->config_page_url = array("propal.php");
  64. $this->langfiles = array("propal", "bills", "companies", "deliveries", "products");
  65. // Constants
  66. $this->const = array();
  67. $r = 0;
  68. $this->const[$r][0] = "PROPALE_ADDON_PDF";
  69. $this->const[$r][1] = "chaine";
  70. $this->const[$r][2] = "azur";
  71. $this->const[$r][3] = 'Name of the proposal generation manager in PDF format';
  72. $this->const[$r][4] = 0;
  73. $r++;
  74. $this->const[$r][0] = "PROPALE_ADDON";
  75. $this->const[$r][1] = "chaine";
  76. $this->const[$r][2] = "mod_propale_marbre";
  77. $this->const[$r][3] = 'Name of proposal numbering manager';
  78. $this->const[$r][4] = 0;
  79. $r++;
  80. $this->const[$r][0] = "PROPALE_VALIDITY_DURATION";
  81. $this->const[$r][1] = "chaine";
  82. $this->const[$r][2] = "15";
  83. $this->const[$r][3] = 'Duration of validity of business proposals';
  84. $this->const[$r][4] = 0;
  85. $r++;
  86. $this->const[$r][0] = "PROPALE_ADDON_PDF_ODT_PATH";
  87. $this->const[$r][1] = "chaine";
  88. $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/proposals";
  89. $this->const[$r][3] = "";
  90. $this->const[$r][4] = 0;
  91. $r++;
  92. /*$this->const[$r][0] = "PROPALE_DRAFT_WATERMARK";
  93. $this->const[$r][2] = "__(Draft)__";
  94. $this->const[$r][3] = 'Watermark to show on draft proposals';
  95. $this->const[$r][4] = 0;
  96. $r++;*/
  97. // Boxes
  98. $this->boxes = array(
  99. 0=>array('file'=>'box_graph_propales_permonth.php', 'enabledbydefaulton'=>'Home'),
  100. 1=>array('file'=>'box_propales.php', 'enabledbydefaulton'=>'Home'),
  101. );
  102. // Permissions
  103. $this->rights = array();
  104. $this->rights_class = 'propale';
  105. $r = 0;
  106. $r++;
  107. $this->rights[$r][0] = 21; // id de la permission
  108. $this->rights[$r][1] = 'Read commercial proposals'; // libelle de la permission
  109. $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
  110. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  111. $this->rights[$r][4] = 'lire';
  112. $r++;
  113. $this->rights[$r][0] = 22; // id de la permission
  114. $this->rights[$r][1] = 'Create and update commercial proposals'; // libelle de la permission
  115. $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
  116. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  117. $this->rights[$r][4] = 'creer';
  118. $r++;
  119. $this->rights[$r][0] = 24; // id de la permission
  120. $this->rights[$r][1] = 'Validate commercial proposals'; // Validate proposal
  121. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  122. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  123. $this->rights[$r][4] = 'propal_advance';
  124. $this->rights[$r][5] = 'validate';
  125. $r++;
  126. $this->rights[$r][0] = 25; // id de la permission
  127. $this->rights[$r][1] = 'Send commercial proposals to customers'; // libelle de la permission
  128. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  129. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  130. $this->rights[$r][4] = 'propal_advance';
  131. $this->rights[$r][5] = 'send';
  132. $r++;
  133. $this->rights[$r][0] = 26; // id de la permission
  134. $this->rights[$r][1] = 'Close commercial proposals'; // Set proposal to signed or refused
  135. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  136. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  137. $this->rights[$r][4] = 'propal_advance';
  138. $this->rights[$r][5] = 'close';
  139. $r++;
  140. $this->rights[$r][0] = 27; // id de la permission
  141. $this->rights[$r][1] = 'Delete commercial proposals'; // libelle de la permission
  142. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  143. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  144. $this->rights[$r][4] = 'supprimer';
  145. $r++;
  146. $this->rights[$r][0] = 28; // id de la permission
  147. $this->rights[$r][1] = 'Exporting commercial proposals and attributes'; // libelle de la permission
  148. $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
  149. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  150. $this->rights[$r][4] = '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] = 'ProposalsAndProposalsLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
  160. $this->export_permission[$r] = array(array("propale", "export"));
  161. $this->export_fields_array[$r] = array(
  162. 's.rowid'=>"IdCompany", 's.nom'=>'CompanyName', 'ps.nom'=>'ParentCompany', 's.address'=>'Address', 's.zip'=>'Zip', 's.town'=>'Town', 'co.code'=>'CountryCode', 's.phone'=>'Phone',
  163. 's.siren'=>'ProfId1', 's.siret'=>'ProfId2', 's.ape'=>'ProfId3', 's.idprof4'=>'ProfId4', 'c.rowid'=>"Id", 'c.ref'=>"Ref", 'c.ref_client'=>"RefCustomer",
  164. 'c.fk_soc'=>"IdCompany", 'c.datec'=>"DateCreation", 'c.datep'=>"DatePropal", 'c.fin_validite'=>"DateEndPropal",
  165. 'c.total_ht'=>"TotalHT", 'c.total_ttc'=>"TotalTTC", 'c.fk_statut'=>'Status', 'c.note_public'=>"Note", 'c.date_livraison'=>'DeliveryDate',
  166. 'c.fk_user_author'=>'CreatedById', 'uc.login'=>'CreatedByLogin', 'c.fk_user_valid'=>'ValidatedById', 'uv.login'=>'ValidatedByLogin',
  167. 'pj.ref'=>'ProjectRef', 'cd.rowid'=>'LineId', 'cd.description'=>"LineDescription", 'cd.product_type'=>'TypeOfLineServiceOrProduct',
  168. 'cd.tva_tx'=>"LineVATRate", 'cd.qty'=>"LineQty", 'cd.total_ht'=>"LineTotalHT", 'cd.total_tva'=>"LineTotalVAT", 'cd.total_ttc'=>"LineTotalTTC",
  169. 'p.rowid'=>'ProductId', 'p.ref'=>'ProductRef', 'p.label'=>'ProductLabel'
  170. );
  171. if (!empty($conf->multicurrency->enabled)) {
  172. $this->export_fields_array[$r]['c.multicurrency_code'] = 'Currency';
  173. $this->export_fields_array[$r]['c.multicurrency_tx'] = 'CurrencyRate';
  174. $this->export_fields_array[$r]['c.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
  175. $this->export_fields_array[$r]['c.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
  176. $this->export_fields_array[$r]['c.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
  177. }
  178. // Add multicompany field
  179. if (!empty($conf->global->MULTICOMPANY_ENTITY_IN_EXPORT_IF_SHARED)) {
  180. $nbofallowedentities = count(explode(',', getEntity('propal')));
  181. if (!empty($conf->multicompany->enabled) && $nbofallowedentities > 1) {
  182. $this->export_fields_array[$r]['c.entity'] = 'Entity';
  183. }
  184. }
  185. //$this->export_TypeFields_array[$r]=array(
  186. // 's.rowid'=>"Numeric",'s.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','co.code'=>'Text','s.phone'=>'Text',
  187. // 's.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','c.ref'=>"Text",'c.ref_client'=>"Text",'c.datec'=>"Date",'c.datep'=>"Date",
  188. // 'c.fin_validite'=>"Date",'c.total_ht'=>"Numeric",'c.total_ttc'=>"Numeric",'c.fk_statut'=>'Status','c.note_public'=>"Text",
  189. // 'c.date_livraison'=>'Date','cd.description'=>"Text",'cd.product_type'=>'Boolean','cd.tva_tx'=>"Numeric",'cd.qty'=>"Numeric",'cd.total_ht'=>"Numeric",
  190. // 'cd.total_tva'=>"Numeric",'cd.total_ttc'=>"Numeric",'p.rowid'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text'
  191. //);
  192. $this->export_TypeFields_array[$r] = array(
  193. 's.nom'=>'Text', 'ps.nom'=>'Text', 's.address'=>'Text', 's.zip'=>'Text', 's.town'=>'Text', 'co.code'=>'Text', 's.phone'=>'Text', 's.siren'=>'Text', 's.siret'=>'Text',
  194. 's.ape'=>'Text', 's.idprof4'=>'Text', 'c.ref'=>"Text", 'c.ref_client'=>"Text", 'c.datec'=>"Date", 'c.datep'=>"Date", 'c.fin_validite'=>"Date",
  195. 'c.total_ht'=>"Numeric", 'c.total_ttc'=>"Numeric", 'c.fk_statut'=>'Status', 'c.note_public'=>"Text", 'c.date_livraison'=>'Date',
  196. 'pj.ref'=>'Text', 'cd.description'=>"Text", 'cd.product_type'=>'Boolean', 'cd.tva_tx'=>"Numeric", 'cd.qty'=>"Numeric", 'cd.total_ht'=>"Numeric",
  197. 'cd.total_tva'=>"Numeric", 'cd.total_ttc'=>"Numeric", 'p.ref'=>'Text', 'p.label'=>'Text',
  198. 'c.entity'=>'List:entity:label:rowid',
  199. );
  200. $this->export_entities_array[$r] = array(
  201. 's.rowid'=>"company", 's.nom'=>'company', 'ps.nom'=>'company', 's.address'=>'company', 's.zip'=>'company', 's.town'=>'company', 'co.code'=>'company', 's.phone'=>'company',
  202. 's.siren'=>'company', 's.ape'=>'company', 's.idprof4'=>'company', 's.siret'=>'company', 'c.rowid'=>"propal", 'c.ref'=>"propal", 'c.ref_client'=>"propal",
  203. 'c.fk_soc'=>"propal", 'c.datec'=>"propal", 'c.datep'=>"propal", 'c.fin_validite'=>"propal", 'c.total_ht'=>"propal",
  204. 'c.total_ttc'=>"propal", 'c.fk_statut'=>"propal", 'c.note_public'=>"propal", 'c.date_livraison'=>"propal", 'pj.ref'=>'project', 'cd.rowid'=>'propal_line',
  205. 'cd.description'=>"propal_line", 'cd.product_type'=>'propal_line', 'cd.tva_tx'=>"propal_line", 'cd.qty'=>"propal_line",
  206. 'cd.total_ht'=>"propal_line", 'cd.total_tva'=>"propal_line", 'cd.total_ttc'=>"propal_line", 'p.rowid'=>'product', 'p.ref'=>'product', 'p.label'=>'product'
  207. );
  208. $this->export_dependencies_array[$r] = array('propal_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
  209. $keyforselect = 'propal';
  210. $keyforelement = 'propal';
  211. $keyforaliasextra = 'extra';
  212. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  213. $keyforselect = 'propaldet';
  214. $keyforelement = 'propal_line';
  215. $keyforaliasextra = 'extra2';
  216. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  217. $keyforselect = 'product';
  218. $keyforelement = 'product';
  219. $keyforaliasextra = 'extra3';
  220. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  221. $keyforselect = 'societe';
  222. $keyforelement = 'company';
  223. $keyforaliasextra = 'extra4';
  224. include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
  225. $this->export_sql_start[$r] = 'SELECT DISTINCT ';
  226. $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'societe as s ';
  227. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe_extrafields as extra4 ON s.rowid = extra4.fk_object';
  228. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe as ps ON ps.rowid = s.parent';
  229. if (empty($user->rights->societe->client->voir)) {
  230. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe_commerciaux as sc ON sc.fk_soc = s.rowid';
  231. }
  232. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_country as co ON s.fk_pays = co.rowid,';
  233. $this->export_sql_end[$r] .= ' '.MAIN_DB_PREFIX.'propal as c';
  234. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet as pj ON c.fk_projet = pj.rowid';
  235. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user as uc ON c.fk_user_author = uc.rowid';
  236. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'user as uv ON c.fk_user_valid = uv.rowid';
  237. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'propal_extrafields as extra ON c.rowid = extra.fk_object';
  238. $this->export_sql_end[$r] .= ', '.MAIN_DB_PREFIX.'propaldet as cd';
  239. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'propaldet_extrafields as extra2 on cd.rowid = extra2.fk_object';
  240. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (cd.fk_product = p.rowid)';
  241. $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product_extrafields as extra3 on p.rowid = extra3.fk_object';
  242. $this->export_sql_end[$r] .= ' WHERE c.fk_soc = s.rowid AND c.rowid = cd.fk_propal';
  243. $this->export_sql_end[$r] .= ' AND c.entity IN ('.getEntity('propal').')';
  244. if (empty($user->rights->societe->client->voir)) {
  245. $this->export_sql_end[$r] .= ' AND sc.fk_user = '.(empty($user) ? 0 : $user->id);
  246. }
  247. // Imports
  248. //--------
  249. $r = 0;
  250. $r++;
  251. $this->import_code[$r] = $this->rights_class.'_'.$r;
  252. $this->import_label[$r] = 'Proposals'; // Translation key
  253. $this->import_icon[$r] = $this->picto;
  254. $this->import_entities_array[$r] = array(); // We define here only fields that use another icon that the one defined into import_icon
  255. $this->import_tables_array[$r] = array('c' => MAIN_DB_PREFIX.'propal', 'extra' => MAIN_DB_PREFIX.'propal_extrafields');
  256. $this->import_tables_creator_array[$r] = array('c'=>'fk_user_author'); // Fields to store import user id
  257. $this->import_fields_array[$r] = array(
  258. 'c.ref' => 'Ref*',
  259. 'c.ref_client' => 'RefCustomer',
  260. 'c.fk_soc' => 'ThirdPartyName*',
  261. 'c.datec' => 'DateCreation',
  262. 'c.datep' => 'DatePropal',
  263. 'c.fin_validite' => 'DateEndPropal',
  264. 'c.total_ht' => 'TotalHT',
  265. 'c.total_ttc' => 'TotalTTC',
  266. 'c.fk_statut' => 'Status*',
  267. 'c.note_public' => 'Note',
  268. 'c.date_livraison' => 'DeliveryDate',
  269. 'c.fk_user_valid' => 'ValidatedById'
  270. );
  271. if (!empty($conf->multicurrency->enabled)) {
  272. $this->import_fields_array[$r]['c.multicurrency_code'] = 'Currency';
  273. $this->import_fields_array[$r]['c.multicurrency_tx'] = 'CurrencyRate';
  274. $this->import_fields_array[$r]['c.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
  275. $this->import_fields_array[$r]['c.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
  276. $this->import_fields_array[$r]['c.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
  277. }
  278. // Add extra fields
  279. $import_extrafield_sample = array();
  280. $sql = "SELECT name, label, fieldrequired FROM ".MAIN_DB_PREFIX."extrafields WHERE type <> 'separate' AND elementtype = 'propal' AND entity IN (0, ".$conf->entity.")";
  281. $resql = $this->db->query($sql);
  282. if ($resql) {
  283. while ($obj = $this->db->fetch_object($resql)) {
  284. $fieldname = 'extra.'.$obj->name;
  285. $fieldlabel = ucfirst($obj->label);
  286. $this->import_fields_array[$r][$fieldname] = $fieldlabel.($obj->fieldrequired ? '*' : '');
  287. $import_extrafield_sample[$fieldname] = $fieldlabel;
  288. }
  289. }
  290. // End add extra fields
  291. $this->import_fieldshidden_array[$r] = ['extra.fk_object' => 'lastrowid-'.MAIN_DB_PREFIX.'propal'];
  292. $this->import_regex_array[$r] = ['c.ref' => '[^ ]'];
  293. $import_sample = [
  294. 'c.ref' => 'PROV0077',
  295. 'c.ref_client' => 'Client1',
  296. 'c.fk_soc' => 'MyBigCompany',
  297. 'c.datec' => '2020-01-01',
  298. 'c.datep' => '2020-01-01',
  299. 'c.fin_validite' => '2020-01-01',
  300. 'c.total_ht' => '0',
  301. 'c.total_ttc' => '0',
  302. 'c.fk_statut' => '1',
  303. 'c.note_public' => '',
  304. 'c.date_livraison' => '2020-01-01',
  305. 'c.fk_user_valid' => '1',
  306. 'c.multicurrency_code' => '',
  307. 'c.multicurrency_tx' => '1',
  308. 'c.multicurrency_total_ht' => '0',
  309. 'c.multicurrency_total_tva' => '0',
  310. 'c.multicurrency_total_ttc' => '0'
  311. ];
  312. $this->import_examplevalues_array[$r] = array_merge($import_sample, $import_extrafield_sample);
  313. $this->import_updatekeys_array[$r] = array('c.ref'=>'Ref');
  314. $this->import_convertvalue_array[$r] = array(
  315. 'c.ref' => array(
  316. 'rule'=>'getrefifauto',
  317. 'class'=>(empty($conf->global->PROPALE_ADDON) ? 'mod_propale_marbre' : $conf->global->PROPALE_ADDON),
  318. 'path'=>"/core/modules/propale/".(empty($conf->global->PROPALE_ADDON) ? 'mod_propale_marbre' : $conf->global->PROPALE_ADDON).'.php',
  319. 'classobject'=>'Propal',
  320. 'pathobject'=>'/comm/propal/class/propal.class.php',
  321. ),
  322. 'c.fk_soc' => array(
  323. 'rule' => 'fetchidfromref',
  324. 'file' => '/societe/class/societe.class.php',
  325. 'class' => 'Societe',
  326. 'method' => 'fetch',
  327. 'element' => 'ThirdParty'
  328. )
  329. );
  330. //Import Proposal Lines
  331. $r++;
  332. $this->import_code[$r] = $this->rights_class.'line_'.$r;
  333. $this->import_label[$r] = "ProposalLines"; // Translation key
  334. $this->import_icon[$r] = $this->picto;
  335. $this->import_entities_array[$r] = array(); // We define here only fields that use another icon that the one defined into import_icon
  336. $this->import_tables_array[$r] = array(
  337. 'cd' => MAIN_DB_PREFIX.'propaldet',
  338. 'extra' => MAIN_DB_PREFIX.'propaldet_extrafields'
  339. );
  340. $this->import_fields_array[$r] = array(
  341. 'cd.fk_propal' => 'Proposal*',
  342. 'cd.fk_parent_line' => 'ParentLine',
  343. 'cd.fk_product' => 'IdProduct',
  344. 'cd.description' => 'LineDescription',
  345. 'cd.product_type' => 'TypeOfLineServiceOrProduct',
  346. 'cd.tva_tx' => 'LineVATRate',
  347. 'cd.qty' => 'LineQty',
  348. 'cd.remise_percent' => 'Reduc. Percent',
  349. 'cd.price' => 'Price',
  350. 'cd.subprice' => 'Sub Price',
  351. 'cd.total_ht' => 'LineTotalHT',
  352. 'cd.total_tva' => 'LineTotalVAT',
  353. 'cd.total_ttc' => 'LineTotalTTC',
  354. 'cd.date_start' => 'Start Date',
  355. 'cd.date_end' => 'End Date',
  356. 'cd.buy_price_ht' => 'LineBuyPriceHT'
  357. );
  358. if (!empty($conf->multicurrency->enabled)) {
  359. $this->import_fields_array[$r]['cd.multicurrency_code'] = 'Currency';
  360. $this->import_fields_array[$r]['cd.multicurrency_subprice'] = 'CurrencyRate';
  361. $this->import_fields_array[$r]['cd.multicurrency_total_ht'] = 'MulticurrencyAmountHT';
  362. $this->import_fields_array[$r]['cd.multicurrency_total_tva'] = 'MulticurrencyAmountVAT';
  363. $this->import_fields_array[$r]['cd.multicurrency_total_ttc'] = 'MulticurrencyAmountTTC';
  364. }
  365. // Add extra fields
  366. $import_extrafield_sample = array();
  367. $sql = "SELECT name, label, fieldrequired FROM ".MAIN_DB_PREFIX."extrafields WHERE type <> 'separate' AND elementtype = 'propaldet' AND entity IN (0, ".$conf->entity.")";
  368. $resql = $this->db->query($sql);
  369. if ($resql) {
  370. while ($obj = $this->db->fetch_object($resql)) {
  371. $fieldname = 'extra.'.$obj->name;
  372. $fieldlabel = ucfirst($obj->label);
  373. $this->import_fields_array[$r][$fieldname] = $fieldlabel.($obj->fieldrequired ? '*' : '');
  374. $import_extrafield_sample[$fieldname] = $fieldlabel;
  375. }
  376. }
  377. // End add extra fields
  378. $this->import_fieldshidden_array[$r] = array('extra.fk_object' => 'lastrowid-'.MAIN_DB_PREFIX.'propaldet');
  379. $this->import_regex_array[$r] = array('cd.product_type' => '[0|1]$');
  380. $import_sample = array(
  381. 'cd.fk_propal' => 'PROV(0001)',
  382. 'cd.fk_parent_line' => '',
  383. 'cd.fk_product' => '',
  384. 'cd.description' => 'Line description',
  385. 'cd.product_type' => '1',
  386. 'cd.tva_tx' => '0',
  387. 'cd.qty' => '2',
  388. 'cd.remise_percent' => '0',
  389. 'cd.price' => '',
  390. 'cd.subprice' => '5000',
  391. 'cd.total_ht' => '10000',
  392. 'cd.total_tva' => '0',
  393. 'cd.total_ttc' => '10100',
  394. 'cd.date_start' => '',
  395. 'cd.date_end' => '',
  396. 'cd.buy_price_ht' => '7000',
  397. 'cd.multicurrency_code' => 'JPY',
  398. 'cd.multicurrency_tx' => '1',
  399. 'cd.multicurrency_total_ht' => '10000',
  400. 'cd.multicurrency_total_tva' => '0',
  401. 'cd.multicurrency_total_ttc' => '10100'
  402. );
  403. $this->import_examplevalues_array[$r] = array_merge($import_sample, $import_extrafield_sample);
  404. $this->import_updatekeys_array[$r] = array('cd.fk_propal' => 'Quotation Id', 'cd.fk_product' => 'Product Id');
  405. $this->import_convertvalue_array[$r] = array(
  406. 'cd.fk_propal' => array(
  407. 'rule'=>'fetchidfromref',
  408. 'file'=>'/comm/propal/class/propal.class.php',
  409. 'class'=>'Propal',
  410. 'method'=>'fetch'
  411. )
  412. );
  413. }
  414. /**
  415. * Function called when module is enabled.
  416. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  417. * It also creates data directories
  418. *
  419. * @param string $options Options when enabling module ('', 'noboxes')
  420. * @return int 1 if OK, 0 if KO
  421. */
  422. public function init($options = '')
  423. {
  424. global $conf, $langs;
  425. // Remove permissions and default values
  426. $this->remove($options);
  427. //ODT template
  428. $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/proposals/template_proposal.odt';
  429. $dirodt = DOL_DATA_ROOT.'/doctemplates/proposals';
  430. $dest = $dirodt.'/template_proposal.odt';
  431. if (file_exists($src) && !file_exists($dest)) {
  432. require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
  433. dol_mkdir($dirodt);
  434. $result = dol_copy($src, $dest, 0, 0);
  435. if ($result < 0) {
  436. $langs->load("errors");
  437. $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
  438. return 0;
  439. }
  440. }
  441. $sql = array(
  442. "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'propal' AND entity = ".((int) $conf->entity),
  443. "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','propal',".((int) $conf->entity).")",
  444. );
  445. return $this->_init($sql, $options);
  446. }
  447. }