dolibarr 23.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 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
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
32include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
33
34
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 = [
78 [
79 "SUPPLIER_PROPOSAL_ADDON_PDF",
80 "chaine",
81 "aurore",
82 'Name of submodule to generate PDF for supplier quotation request',
83 0,
84 ],
85 [
86 "SUPPLIER_PROPOSAL_ADDON",
87 "chaine",
88 "mod_supplier_proposal_marbre",
89 'Name of submodule to number supplier quotation request',
90 0,
91 ],
92 [
93 "SUPPLIER_PROPOSAL_ADDON_PDF_ODT_PATH",
94 "chaine",
95 "DOL_DATA_ROOT".($conf->entity > 1 ? '/'.$conf->entity : '')."/doctemplates/supplier_proposals",
96 "",
97 0,
98 ],
99 ];
100
101 // Boxes
102 $this->boxes = array();
103
104 // Permissions
105 $this->rights = array();
106 $this->rights_class = 'supplier_proposal';
107 $r = 0;
108
109 $r++;
110 $this->rights[$r][0] = $this->numero + $r; // id de la permission
111 $this->rights[$r][1] = 'Read supplier proposals'; // libelle de la permission
112 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
113 $this->rights[$r][4] = 'lire';
114
115 $r++;
116 $this->rights[$r][0] = $this->numero + $r; // id de la permission
117 $this->rights[$r][1] = 'Create/modify supplier proposals'; // libelle de la permission
118 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
119 $this->rights[$r][4] = 'creer';
120
121 $r++;
122 $this->rights[$r][0] = $this->numero + $r; // id de la permission
123 $this->rights[$r][1] = 'Validate supplier proposals'; // libelle de la permission
124 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
125 $this->rights[$r][4] = 'validate_advance';
126
127 $r++;
128 $this->rights[$r][0] = $this->numero + $r; // id de la permission
129 $this->rights[$r][1] = 'Send supplier proposals'; // libelle de la permission
130 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
131 $this->rights[$r][4] = 'send_advance';
132
133 $r++;
134 $this->rights[$r][0] = $this->numero + $r; // id de la permission
135 $this->rights[$r][1] = 'Delete supplier proposals'; // libelle de la permission
136 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
137 $this->rights[$r][4] = 'supprimer';
138
139 $r++;
140 $this->rights[$r][0] = $this->numero + $r; // id de la permission
141 $this->rights[$r][1] = 'Close supplier price requests'; // libelle de la permission
142 $this->rights[$r][3] = 0; // La permission est-elle une permission par default
143 $this->rights[$r][4] = 'cloturer';
144
145 // Main menu entries
146 $this->menu = array(); // List of menus to add
147 $r = 0;
148 }
149
150
159 public function init($options = '')
160 {
161 global $conf, $langs;
162
163 // Remove permissions and default values
164 $this->remove($options);
165
166 //ODT template
167 $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/supplier_proposals/template_supplier_proposal.odt';
168 $dirodt = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/doctemplates/supplier_proposals';
169 $dest = $dirodt.'/template_supplier_proposal.odt';
170
171 if (file_exists($src) && !file_exists($dest)) {
172 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
173 dol_mkdir($dirodt);
174 $result = dol_copy($src, $dest, '0', 0);
175 if ($result < 0) {
176 $langs->load("errors");
177 $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
178 return 0;
179 }
180 }
181
182 $sql = array(
183 "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),
184 "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','supplier_proposal',".((int) $conf->entity).")",
185 );
186
187 return $this->_init($sql, $options);
188 }
189
190
191
200 public function remove($options = '')
201 {
202 $sql = array(
203 "DELETE FROM ".MAIN_DB_PREFIX."rights_def WHERE module = 'askpricesupplier'" // To delete/clean deprecated entries
204 );
205
206 return $this->_remove($sql, $options);
207 }
208}
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 $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after 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, $testvirus=0, $indexdatabase=0)
Copy a file to another file.
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:128