PageRenderTime 47ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/htdocs/core/modules/modProduct.class.php

https://github.com/asterix14/dolibarr
PHP | 187 lines | 97 code | 32 blank | 58 comment | 8 complexity | 29dec99fcd2645c6fadeb971b3c5e8ea MD5 | raw file
Possible License(s): LGPL-2.0
  1. <?php
  2. /* Copyright (C) 2003 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-2009 Regis Houssin <regis@dolibarr.fr>
  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 2 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 produit Module products
  23. * \brief Module pour gerer le suivi de produits predefinis
  24. * \file htdocs/core/modules/modProduct.class.php
  25. * \ingroup produit
  26. * \brief Fichier de description et activation du module Produit
  27. */
  28. include_once(DOL_DOCUMENT_ROOT ."/core/modules/DolibarrModules.class.php");
  29. /**
  30. * \class modProduct
  31. * \brief Classe de description et activation du module Produit
  32. */
  33. class modProduct extends DolibarrModules
  34. {
  35. /**
  36. * Constructor. Define names, constants, directories, boxes, permissions
  37. *
  38. * @param DoliDB $DB Database handler
  39. */
  40. function modProduct($DB)
  41. {
  42. global $conf;
  43. $this->db = $DB;
  44. $this->numero = 50;
  45. $this->family = "products";
  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 produits";
  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='product';
  54. // Data directories to create when module is enabled
  55. $this->dirs = array("/product/temp");
  56. // Dependencies
  57. $this->depends = array();
  58. $this->requiredby = array("modStock","modBarcode");
  59. // Config pages
  60. $this->config_page_url = array("produit.php@product");
  61. $this->langfiles = array("products","companies","stocks","bills");
  62. // Constants
  63. $this->const = array();
  64. $r=0;
  65. $this->const[$r][0] = "MAIN_SEARCHFORM_PRODUITSERVICE";
  66. $this->const[$r][1] = "yesno";
  67. $this->const[$r][2] = "1";
  68. $this->const[$r][3] = "Show form for quick product search";
  69. $this->const[$r][4] = 0;
  70. $r++;
  71. // Boxes
  72. $this->boxes = array();
  73. $this->boxes[0][1] = "box_produits.php";
  74. // Permissions
  75. $this->rights = array();
  76. $this->rights_class = 'produit';
  77. $r=0;
  78. $this->rights[$r][0] = 31; // id de la permission
  79. $this->rights[$r][1] = 'Lire les produits'; // libelle de la permission
  80. $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
  81. $this->rights[$r][3] = 1; // La permission est-elle une permission par defaut
  82. $this->rights[$r][4] = 'lire';
  83. $r++;
  84. $this->rights[$r][0] = 32; // id de la permission
  85. $this->rights[$r][1] = 'Creer/modifier les produits'; // libelle de la permission
  86. $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
  87. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  88. $this->rights[$r][4] = 'creer';
  89. $r++;
  90. $this->rights[$r][0] = 34; // id de la permission
  91. $this->rights[$r][1] = 'Supprimer les produits'; // libelle de la permission
  92. $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
  93. $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
  94. $this->rights[$r][4] = 'supprimer';
  95. $r++;
  96. $this->rights[$r][0] = 38; // Must be same permission than in service module
  97. $this->rights[$r][1] = 'Exporter les produits';
  98. $this->rights[$r][2] = 'r';
  99. $this->rights[$r][3] = 0;
  100. $this->rights[$r][4] = 'export';
  101. $r++;
  102. // Exports
  103. //--------
  104. $r=0;
  105. $r++;
  106. $this->export_code[$r]=$this->rights_class.'_'.$r;
  107. $this->export_label[$r]="Products"; // Translation key (used only if key ExportDataset_xxx_z not found)
  108. $this->export_permission[$r]=array(array("produit","export"));
  109. $this->export_fields_array[$r]=array('p.rowid'=>"Id",'p.ref'=>"Ref",'p.label'=>"Label",'p.description'=>"Description",'p.accountancy_code_sell'=>"ProductAccountancySellCode",'p.accountancy_code_buy'=>"ProductAccountancyBuyCode",'p.note'=>"Note",'p.length'=>"Length",'p.surface'=>"Surface",'p.volume'=>"Volume",'p.weight'=>"Weight",'p.customcode'=>'CustomCode','p.price_base_type'=>"PriceBase",'p.price'=>"UnitPriceHT",'p.price_ttc'=>"UnitPriceTTC",'p.tva_tx'=>'VATRate','p.tosell'=>"OnSell",'p.tobuy'=>"OnBuy",'p.datec'=>'DateCreation','p.tms'=>'DateModification');
  110. //if (! empty($conf->stock->enabled)) $this->export_fields_array[$r]=array_merge ($this->export_fields_array[$r],array('p.stock'=>'Stock','p.pmp'=>'PMPValue'));
  111. if (! empty($conf->stock->enabled)) $this->export_fields_array[$r]=array_merge ($this->export_fields_array[$r],array('p.pmp'=>'PMPValue'));
  112. if (! empty($conf->barcode->enabled)) $this->export_fields_array[$r]=array_merge ($this->export_fields_array[$r],array('p.barcode'=>'Barcode'));
  113. $this->export_entities_array[$r]=array('p.rowid'=>"product",'p.ref'=>"product",'p.label'=>"product",'p.description'=>"product",'p.accountancy_code_sell'=>'product','p.accountancy_code_sell'=>'product','p.note'=>"product",'p.length'=>"product",'p.surface'=>"product",'p.volume'=>"product",'p.weight'=>"product",'p.customcode'=>'product','p.price_base_type'=>"product",'p.price'=>"product",'p.price_ttc'=>"product",'p.tva_tx'=>"product",'p.tosell'=>"product",'p.tobuy'=>"product",'p.datec'=>"product",'p.tms'=>"product");
  114. //if (! empty($conf->stock->enabled)) $this->export_entities_array[$r]=array_merge ($this->export_entities_array[$r],array('p.stock'=>'product','p.pmp'=>'product'));
  115. if (! empty($conf->stock->enabled)) $this->export_entities_array[$r]=array_merge ($this->export_entities_array[$r],array('p.pmp'=>'product'));
  116. if (! empty($conf->barcode->enabled)) $this->export_entities_array[$r]=array_merge ($this->export_entities_array[$r],array('p.barcode'=>'product'));
  117. $this->export_sql_start[$r]='SELECT DISTINCT ';
  118. $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'product as p';
  119. $this->export_sql_end[$r] .=' WHERE p.fk_product_type = 0 AND p.entity = '.$conf->entity;
  120. // Imports
  121. //--------
  122. $r=0;
  123. $r++;
  124. $this->import_code[$r]=$this->rights_class.'_'.$r;
  125. $this->import_label[$r]="Products"; // Translation key
  126. $this->import_icon[$r]=$this->picto;
  127. $this->import_tables_array[$r]=array('p'=>MAIN_DB_PREFIX.'product');
  128. $this->import_tables_creator_array[$r]=array('p'=>'fk_user_author'); // Fields to store import user id
  129. $this->import_fields_array[$r]=array('p.ref'=>"Ref*",'p.label'=>"Label*",'p.description'=>"Description",'p.note'=>"Note",'p.price'=>"SellingPriceHT",'p.price_ttc'=>"SellingPriceTTC",'p.tva_tx'=>'VAT','p.tosell'=>"OnSell*",'p.tobuy'=>"OnBuy*",'p.fk_product_type'=>"Type*",'p.finished'=>'Nature','p.duration'=>"Duration",'p.weight'=>"Weight",'p.volume'=>"Volume",'p.datec'=>'DateCreation*');
  130. $this->import_entities_array[$r]=array(); // We define here only fields that use another picto
  131. $this->import_regex_array[$r]=array('p.ref'=>'[^ ]','p.tosell'=>'^[0|1]','p.tobuy'=>'^[0|1]','p.fk_product_type'=>'^[0|1]','p.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$');
  132. $this->import_examplevalues_array[$r]=array('p.ref'=>"PR123456",'p.label'=>"My product",'p.description'=>"This is a description example for record",'p.note'=>"Some note",'p.price'=>"100",'p.price_ttc'=>"110",'p.tva_tx'=>'10','p.tosell'=>"0 or 1",'p.tobuy'=>"0 or 1",'p.fk_product_type'=>"0 for product/1 for service",'p.finished'=>'','p.duration'=>"1y",'p.datec'=>'2008-12-31');
  133. }
  134. /**
  135. * \brief Fonction appelee lors de l'activation du module. Insere en base les constantes, boites, permissions du module.
  136. * Definit egalement les repertoires de donnees a creer pour ce module.
  137. */
  138. function init()
  139. {
  140. // Permissions
  141. $this->remove();
  142. $sql = array();
  143. return $this->_init($sql);
  144. }
  145. /**
  146. * \brief Fonction appelee lors de la desactivation d'un module.
  147. * Supprime de la base les constantes, boites et permissions du module.
  148. */
  149. function remove()
  150. {
  151. $sql = array();
  152. return $this->_remove($sql);
  153. }
  154. }
  155. ?>