modProductBatch.class.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
  5. * Copyright (C) 2013-2014 Cedric GROSS <c.gross@kreiz-it.fr>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  19. */
  20. /**
  21. * \defgroup productbatch Module batch number management
  22. * \brief Management module for batch number, eat-by and sell-by date for product
  23. * \file htdocs/core/modules/modProductBatch.class.php
  24. * \ingroup productbatch
  25. * \brief Description and activation file for the module productbatch
  26. */
  27. include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
  28. /**
  29. * Description and activation class for module productdluo
  30. */
  31. class modProductBatch extends DolibarrModules
  32. {
  33. /**
  34. * Constructor. Define names, constants, directories, boxes, permissions
  35. *
  36. * @param DoliDB $db Database handler
  37. */
  38. public function __construct($db)
  39. {
  40. global $langs, $conf;
  41. $this->db = $db;
  42. $this->numero = 39000;
  43. $this->family = "products";
  44. $this->module_position = '45';
  45. $this->name = preg_replace('/^mod/i', '', get_class($this));
  46. $this->description = "Batch number, eat-by and sell-by date management module";
  47. $this->rights_class = 'productbatch';
  48. // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
  49. $this->version = 'dolibarr';
  50. // Key used in llx_const table to save module status enabled/disabled (where dluo is value of property name of module in uppercase)
  51. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  52. $this->picto = 'lot';
  53. $this->module_parts = array();
  54. // Data directories to create when module is enabled.
  55. $this->dirs = array();
  56. // Config pages. Put here list of php page, stored into productdluo/admin directory, to use to setup module.
  57. $this->config_page_url = array("product_lot.php@product");
  58. // Dependencies
  59. $this->hidden = false; // A condition to hide module
  60. $this->depends = array("modProduct", "modStock", "modExpedition", "modFournisseur"); // List of module class names as string that must be enabled if this module is enabled
  61. $this->requiredby = array(); // List of module ids to disable if this one is disabled
  62. $this->conflictwith = array(); // List of module class names as string this module is in conflict with
  63. $this->phpmin = array(5, 6); // Minimum version of PHP required by module
  64. $this->need_dolibarr_version = array(3, 0); // Minimum version of Dolibarr required by module
  65. $this->langfiles = array("productbatch");
  66. // Constants
  67. // Constants
  68. $this->const = array();
  69. $r = 0;
  70. $this->const[$r][0] = "PRODUCTBATCH_LOT_ADDON";
  71. $this->const[$r][1] = "chaine";
  72. $this->const[$r][2] = "mod_lot_free";
  73. $this->const[$r][3] = 'Module to control lot number';
  74. $this->const[$r][4] = 0;
  75. $r++;
  76. $this->const[$r][0] = "PRODUCTBATCH_SN_ADDON";
  77. $this->const[$r][1] = "chaine";
  78. $this->const[$r][2] = "mod_sn_free";
  79. $this->const[$r][3] = 'Module to control serial number';
  80. $this->const[$r][4] = 0;
  81. $r++;
  82. $this->tabs = array();
  83. // Dictionaries
  84. if (!isset($conf->productbatch->enabled)) {
  85. $conf->productbatch = new stdClass();
  86. $conf->productbatch->enabled = 0;
  87. }
  88. $this->dictionaries = array();
  89. // Boxes
  90. $this->boxes = array(); // List of boxes
  91. // Permissions
  92. $this->rights = array(); // Permission array used by this module
  93. $r = 0;
  94. // Menus
  95. //-------
  96. $this->menu = 1; // This module add menu entries. They are coded into menu manager.
  97. // Exports
  98. $r = 0;
  99. }
  100. /**
  101. * Function called when module is enabled.
  102. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  103. * It also creates data directories
  104. *
  105. * @param string $options Options when enabling module ('', 'noboxes')
  106. * @return int 1 if OK, 0 if KO
  107. */
  108. public function init($options = '')
  109. {
  110. global $db, $conf;
  111. $sql = array();
  112. if (!empty($conf->cashdesk->enabled)) {
  113. if (empty($conf->global->CASHDESK_NO_DECREASE_STOCK)) {
  114. include_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
  115. $res = dolibarr_set_const($db, "CASHDESK_NO_DECREASE_STOCK", 1, 'chaine', 0, '', $conf->entity);
  116. }
  117. }
  118. return $this->_init($sql, $options);
  119. }
  120. }