dolibarr 21.0.0-alpha
mod_project_universal.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2010 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
27require_once DOL_DOCUMENT_ROOT.'/core/modules/project/modules_project.php';
28
29
34{
38 public $db;
39
44 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
45
49 public $error = '';
50
56 public $nom = 'Universal';
57
61 public $name = 'Universal';
62
63
70 public function info($langs)
71 {
72 global $langs;
73
74 // Load translation files required by the page
75 $langs->loadLangs(array("projects", "admin"));
76
77 $form = new Form($this->db);
78
79 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
80 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
81 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
82 $texte .= '<input type="hidden" name="action" value="updateMask">';
83 $texte .= '<input type="hidden" name="maskconstproject" value="PROJECT_UNIVERSAL_MASK">';
84 $texte .= '<table class="nobordernopadding" width="100%">';
85
86 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Project"), $langs->transnoentities("Project"));
87 $tooltip .= $langs->trans("GenericMaskCodes2");
88 $tooltip .= $langs->trans("GenericMaskCodes3");
89 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Project"), $langs->transnoentities("Project"));
90 $tooltip .= $langs->trans("GenericMaskCodes5");
91 $tooltip .= '<br>'.$langs->trans("GenericMaskCodes5b");
92
93 // Prefix settings
94 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
95 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskproject" value="'.getDolGlobalString('PROJECT_UNIVERSAL_MASK').'">', $tooltip, 1, 1).'</td>';
96
97 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans("Modify").'"></td>';
98
99 $texte .= '</tr>';
100
101 $texte .= '</table>';
102 $texte .= '</form>';
103
104 return $texte;
105 }
106
112 public function getExample()
113 {
114 global $db, $langs;
115
116 require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
117 require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
118
119 $project = new Project($db);
120 $project->initAsSpecimen();
121 $thirdparty = new Societe($db);
122 $thirdparty->initAsSpecimen();
123
124 $numExample = $this->getNextValue($thirdparty, $project);
125
126 if (!$numExample) {
127 $numExample = $langs->trans('NotConfigured');
128 }
129
130 return $numExample;
131 }
132
140 public function getNextValue($objsoc, $project)
141 {
142 global $db, $langs;
143
144 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
145
146 // We define criterion search counter
147 $mask = getDolGlobalString('PROJECT_UNIVERSAL_MASK');
148
149 if (!$mask) {
150 $this->error = $langs->trans('NotConfigured');
151 return 0;
152 }
153
154 // Get entities
155 $entity = getEntity('projectnumber', 1, $project);
156
157 $date = (empty($project->date_c) ? dol_now() : $project->date_c);
158 $numFinal = get_next_value($db, $mask, 'projet', 'ref', '', (is_object($objsoc) ? $objsoc : ''), $date, 'next', false, null, $entity);
159
160 return $numFinal;
161 }
162}
Class to manage generation of HTML components Only common components must be here.
Class parent for numbering modules of tasks.
Class to manage projects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage the numbering module Universal for project references.
getExample()
Return an example of numbering.
info($langs)
Returns the description of the numbering model.
getNextValue($objsoc, $project)
Return next value.
get_next_value($db, $mask, $table, $field, $where='', $objsoc='', $date='', $mode='next', $bentityon=true, $objuser=null, $forceentity=null)
Return last or next value for a mask (according to area we should not reset)
dol_now($mode='auto')
Return date for now.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.