dolibarr  17.0.4
modSupplierProposal.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2015 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  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  */
22 
31 include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
32 
33 
38 {
39 
45  public function __construct($db)
46  {
47  global $conf;
48 
49  $this->db = $db;
50  $this->numero = 1120;
51 
52  $this->family = "srm";
53  $this->module_position = '35';
54  $this->name = preg_replace('/^mod/i', '', get_class($this));
55  $this->description = "supplier_proposalDESC";
56 
57  $this->version = 'dolibarr';
58 
59  $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
60  $this->picto = 'supplier_proposal';
61 
62  // Data directories to create when module is enabled.
63  $this->dirs = array();
64 
65  // Config pages. Put here list of php page names stored in admin directory used to setup module.
66  $this->config_page_url = array("supplier_proposal.php");
67 
68  // Dependencies
69  $this->hidden = false; // A condition to hide module
70  $this->depends = array('modFournisseur'); // List of module class names as string that must be enabled if this module is enabled
71  $this->requiredby = array(); // List of module ids to disable if this one is disabled
72  $this->conflictwith = array(); // List of module class names as string this module is in conflict with
73  $this->phpmin = array(7, 0); // Minimum version of PHP required by module
74  $this->langfiles = array("supplier_proposal");
75 
76  // Constants
77  $this->const = array();
78  $r = 0;
79 
80  $this->const[$r][0] = "SUPPLIER_PROPOSAL_ADDON_PDF";
81  $this->const[$r][1] = "chaine";
82  $this->const[$r][2] = "aurore";
83  $this->const[$r][3] = 'Name of submodule to generate PDF for supplier quotation request';
84  $this->const[$r][4] = 0;
85  $r++;
86 
87  $this->const[$r][0] = "SUPPLIER_PROPOSAL_ADDON";
88  $this->const[$r][1] = "chaine";
89  $this->const[$r][2] = "mod_supplier_proposal_marbre";
90  $this->const[$r][3] = 'Name of submodule to number supplier quotation request';
91  $this->const[$r][4] = 0;
92  $r++;
93 
94  $this->const[$r][0] = "SUPPLIER_PROPOSAL_ADDON_PDF_ODT_PATH";
95  $this->const[$r][1] = "chaine";
96  $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/supplier_proposals";
97  $this->const[$r][3] = "";
98  $this->const[$r][4] = 0;
99 
100  // Boxes
101  $this->boxes = array();
102 
103  // Permissions
104  $this->rights = array();
105  $this->rights_class = 'supplier_proposal';
106  $r = 0;
107 
108  $r++;
109  $this->rights[$r][0] = $this->numero + $r; // id de la permission
110  $this->rights[$r][1] = 'Read supplier proposals'; // libelle de la permission
111  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
112  $this->rights[$r][4] = 'lire';
113 
114  $r++;
115  $this->rights[$r][0] = $this->numero + $r; // id de la permission
116  $this->rights[$r][1] = 'Create/modify supplier proposals'; // libelle de la permission
117  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
118  $this->rights[$r][4] = 'creer';
119 
120  $r++;
121  $this->rights[$r][0] = $this->numero + $r; // id de la permission
122  $this->rights[$r][1] = 'Validate supplier proposals'; // libelle de la permission
123  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
124  $this->rights[$r][4] = 'validate_advance';
125 
126  $r++;
127  $this->rights[$r][0] = $this->numero + $r; // id de la permission
128  $this->rights[$r][1] = 'Envoyer les demandes fournisseurs'; // libelle de la permission
129  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
130  $this->rights[$r][4] = 'send_advance';
131 
132  $r++;
133  $this->rights[$r][0] = $this->numero + $r; // id de la permission
134  $this->rights[$r][1] = 'Delete supplier proposals'; // libelle de la permission
135  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
136  $this->rights[$r][4] = 'supprimer';
137 
138  $r++;
139  $this->rights[$r][0] = $this->numero + $r; // id de la permission
140  $this->rights[$r][1] = 'Close supplier price requests'; // libelle de la permission
141  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
142  $this->rights[$r][4] = 'cloturer';
143 
144  // Main menu entries
145  $this->menu = array(); // List of menus to add
146  $r = 0;
147  }
148 
149 
158  public function init($options = '')
159  {
160  global $conf, $langs;
161 
162  // Remove permissions and default values
163  $this->remove($options);
164 
165  //ODT template
166  $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/supplier_proposals/template_supplier_proposal.odt';
167  $dirodt = DOL_DATA_ROOT.'/doctemplates/supplier_proposals';
168  $dest = $dirodt.'/template_supplier_proposal.odt';
169 
170  if (file_exists($src) && !file_exists($dest)) {
171  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
172  dol_mkdir($dirodt);
173  $result = dol_copy($src, $dest, 0, 0);
174  if ($result < 0) {
175  $langs->load("errors");
176  $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
177  return 0;
178  }
179  }
180 
181  $sql = array(
182  "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'supplier_proposal' AND entity = ".((int) $conf->entity),
183  "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','supplier_proposal',".((int) $conf->entity).")",
184  );
185 
186  return $this->_init($sql, $options);
187  }
188 
189 
190 
199  public function remove($options = '')
200  {
201  $sql = array(
202  "DELETE FROM ".MAIN_DB_PREFIX."rights_def WHERE module = 'askpricesupplier'" // To delete/clean deprecated entries
203  );
204 
205  return $this->_remove($sql, $options);
206  }
207 }
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_remove($array_sql, $options='')
Disable function.
Class to describe and enable module SupplierProposal.
init($options='')
Function called when module is enabled.
print *****$script_file(".$version.") pid cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_copy($srcfile, $destfile, $newmask=0, $overwriteifexists=1)
Copy a file to another file.
Definition: files.lib.php:713
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition: repair.php:122
$conf db
API class for accounts.
Definition: inc.php:41