dolibarr  16.0.5
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 
25 require_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 
62  public function info()
63  {
64  global $db, $conf, $langs;
65 
66  $langs->load("bills");
67 
68  $form = new Form($db);
69 
70  $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
71  $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
72  $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
73  $texte .= '<input type="hidden" name="action" value="updateMask">';
74  $texte .= '<input type="hidden" name="maskconst" value="EXPENSEREPORT_SAND_MASK">';
75  $texte .= '<table class="nobordernopadding" width="100%">';
76 
77  $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("ExpenseReport"), $langs->transnoentities("ExpenseReport"));
78  //$tooltip.=$langs->trans("GenericMaskCodes2");
79  $tooltip .= $langs->trans("GenericMaskCodes3");
80  $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("ExpenseReport"), $langs->transnoentities("ExpenseReport"));
81  $tooltip .= $langs->trans("GenericMaskCodes5");
82 
83  // Parametrage du prefix
84  $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
85  $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskvalue" value="'.$conf->global->EXPENSEREPORT_SAND_MASK.'">', $tooltip, 1, 1).'</td>';
86 
87  $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit" name="Button" value="'.$langs->trans("Modify").'"></td>';
88 
89  $texte .= '</tr>';
90 
91  $texte .= '</table>';
92  $texte .= '</form>';
93 
94  return $texte;
95  }
96 
102  public function getExample()
103  {
104  global $db, $conf, $langs, $user;
105 
106  $exp = new ExpenseReport($db);
107  $exp->initAsSpecimen();
108  $exp->fk_user_author = $user->id;
109 
110  $numExample = $this->getNextValue($exp);
111 
112  if (!$numExample) {
113  $numExample = $langs->trans('NotConfigured');
114  }
115  return $numExample;
116  }
117 
124  public function getNextValue($object)
125  {
126  global $db, $conf;
127 
128  require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
129 
130  // We get cursor rule
131  $mask = $conf->global->EXPENSEREPORT_SAND_MASK;
132 
133  if (!$mask) {
134  $this->error = 'NotConfigured';
135  return 0;
136  }
137 
138  $date = $object->date_valid; // $object->date does not exists
139  if (empty($date)) {
140  $this->error = 'Date valid not defined';
141  return 0;
142  }
143 
144  $fuser = null;
145  if ($object->fk_user_author > 0) {
146  $fuser = new User($db);
147  $fuser->fetch($object->fk_user_author);
148  }
149 
150  $numFinal = get_next_value($db, $mask, 'expensereport', 'ref', '', null, $date, 'next', true, $fuser);
151 
152  return $numFinal;
153  }
154 }
mod_expensereport_sand\getNextValue
getNextValue($object)
Return next free value.
Definition: mod_expensereport_sand.php:124
ModeleNumRefExpenseReport
Parent class for numbering masks of expense reports.
Definition: modules_expensereport.php:113
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
mod_expensereport_sand\info
info()
Returns the description of the numbering model.
Definition: mod_expensereport_sand.php:62
mod_expensereport_sand\getExample
getExample()
Return an example of numbering.
Definition: mod_expensereport_sand.php:102
User
Class to manage Dolibarr users.
Definition: user.class.php:44
get_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)
Definition: functions2.lib.php:970
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
ExpenseReport
Class to manage Trips and Expenses.
Definition: expensereport.class.php:36
mod_expensereport_sand
Class to manage expense report numbering rules Sand.
Definition: mod_expensereport_sand.php:31