dolibarr 22.0.5
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 .= '<input type="hidden" name="page_y" value="">';
85
86 $texte .= '<table class="nobordernopadding centpercent">';
87
88 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Project"), $langs->transnoentities("Project"));
89 $tooltip .= $langs->trans("GenericMaskCodes1");
90 $tooltip .= $langs->trans("GenericMaskCodes2");
91 $tooltip .= $langs->trans("GenericMaskCodes3");
92 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Project"), $langs->transnoentities("Project"));
93 $tooltip .= $langs->trans("GenericMaskCodes5");
94 $tooltip .= '<br>'.$langs->trans("GenericMaskCodes5b");
95
96 // Prefix settings
97 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
98 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskproject" value="'.getDolGlobalString('PROJECT_UNIVERSAL_MASK').'">', $tooltip, 1, 'help', 'valignmiddle', 0, 3, $this->name).'</td>';
99
100 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans("Save").'"></td>';
101
102 $texte .= '</tr>';
103
104 $texte .= '</table>';
105 $texte .= '</form>';
106
107 return $texte;
108 }
109
115 public function getExample()
116 {
117 global $db, $langs;
118
119 require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
120 require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
121
122 $project = new Project($db);
123 $project->initAsSpecimen();
124 $thirdparty = new Societe($db);
125 $thirdparty->initAsSpecimen();
126
127 $numExample = $this->getNextValue($thirdparty, $project);
128
129 if (!$numExample) {
130 $numExample = $langs->trans('NotConfigured');
131 }
132
133 return $numExample;
134 }
135
143 public function getNextValue($objsoc, $project)
144 {
145 global $db, $langs;
146
147 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
148
149 // We define criterion search counter
150 $mask = getDolGlobalString('PROJECT_UNIVERSAL_MASK');
151
152 if (!$mask) {
153 $this->error = $langs->trans('NotConfigured');
154 return 0;
155 }
156
157 // Get entities
158 $entity = getEntity('projectnumber', 1, $project);
159
160 $date = (empty($project->date_c) ? dol_now() : $project->date_c);
161 $numFinal = get_next_value($db, $mask, 'projet', 'ref', '', (is_object($objsoc) ? $objsoc : ''), $date, 'next', false, null, $entity);
162
163 return $numFinal;
164 }
165}
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, $objbookkeeping=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.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:161