dolibarr 19.0.3
mod_expensereport_sand.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 Maxime Kohlhaas <support@atm-consulting.fr>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 * or see https://www.gnu.org/
17 */
18
25require_once DOL_DOCUMENT_ROOT.'/core/modules/expensereport/modules_expensereport.php';
26
27
32{
37 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
38
42 public $error = '';
43
49 public $nom = 'Sand';
50
54 public $name = 'Sand';
55
56
63 public function info($langs)
64 {
65 global $db, $conf, $langs;
66
67 $langs->load("bills");
68
69 $form = new Form($db);
70
71 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
72 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
73 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
74 $texte .= '<input type="hidden" name="action" value="updateMask">';
75 $texte .= '<input type="hidden" name="maskconst" value="EXPENSEREPORT_SAND_MASK">';
76 $texte .= '<table class="nobordernopadding" width="100%">';
77
78 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("ExpenseReport"), $langs->transnoentities("ExpenseReport"));
79 //$tooltip.=$langs->trans("GenericMaskCodes2");
80 $tooltip .= $langs->trans("GenericMaskCodes3");
81 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("ExpenseReport"), $langs->transnoentities("ExpenseReport"));
82 $tooltip .= $langs->trans("GenericMaskCodes5");
83
84 // Parametrage du prefix
85 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
86 $mask = !getDolGlobalString('EXPENSEREPORT_SAND_MASK') ? '' : $conf->global->EXPENSEREPORT_SAND_MASK;
87 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskvalue" value="'.$mask.'">', $tooltip, 1, 1).'</td>';
88
89 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans("Modify").'"></td>';
90
91 $texte .= '</tr>';
92
93 $texte .= '</table>';
94 $texte .= '</form>';
95
96 return $texte;
97 }
98
104 public function getExample()
105 {
106 global $db, $conf, $langs, $user;
107
108 $exp = new ExpenseReport($db);
109 $exp->initAsSpecimen();
110 $exp->fk_user_author = $user->id;
111
112 $numExample = $this->getNextValue($exp);
113
114 if (!$numExample) {
115 $numExample = $langs->trans('NotConfigured');
116 }
117 return $numExample;
118 }
119
126 public function getNextValue($object)
127 {
128 global $db, $conf;
129
130 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
131
132 // We get cursor rule
133 $mask = !getDolGlobalString('EXPENSEREPORT_SAND_MASK') ? '' : $conf->global->EXPENSEREPORT_SAND_MASK;
134
135 if (!$mask) {
136 $this->error = 'NotConfigured';
137 return 0;
138 }
139
140 $date = $object->date_valid; // $object->date does not exists
141 if (empty($date)) {
142 $this->error = 'Date valid not defined';
143 return 0;
144 }
145
146 $fuser = null;
147 if ($object->fk_user_author > 0) {
148 $fuser = new User($db);
149 $fuser->fetch($object->fk_user_author);
150 }
151
152 $numFinal = get_next_value($db, $mask, 'expensereport', 'ref', '', null, $date, 'next', true, $fuser);
153
154 return $numFinal;
155 }
156}
Class to manage Trips and Expenses.
Class to manage generation of HTML components Only common components must be here.
Parent class for numbering masks of expense reports.
Class to manage Dolibarr users.
Class to manage expense report numbering rules Sand.
info($langs)
Returns the description of the numbering model.
getExample()
Return an example of numbering.
getNextValue($object)
Return next free 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)
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.