dolibarr 18.0.6
mod_supplier_payment_brodator.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
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/supplier_payment/modules_supplier_payment.php';
26
27
32{
37 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
38
42 public $error = '';
43
49 public $nom = 'Brodator';
50
54 public $name = 'Brodator';
55
56
62 public function info()
63 {
64 global $conf, $langs, $db;
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="maskconstsupplierpayment" value="SUPPLIER_PAYMENT_BRODATOR_MASK">';
75 $texte .= '<table class="nobordernopadding" width="100%">';
76
77 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Order"), $langs->transnoentities("Order"));
78 $tooltip .= $langs->trans("GenericMaskCodes2");
79 $tooltip .= $langs->trans("GenericMaskCodes3");
80 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Order"), $langs->transnoentities("Order"));
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="masksupplierpayment" value="'.getDolGlobalString("SUPPLIER_PAYMENT_BRODATOR_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 $conf, $langs, $mysoc;
105
106 $old_code_client = $mysoc->code_client;
107 $mysoc->code_client = 'CCCCCCCCCC';
108 $numExample = $this->getNextValue($mysoc, '');
109 $mysoc->code_client = $old_code_client;
110
111 if (!$numExample) {
112 $numExample = $langs->trans('NotConfigured');
113 }
114 return $numExample;
115 }
116
124 public function getNextValue($objsoc, $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 = getDolGlobalString("SUPPLIER_PAYMENT_BRODATOR_MASK");
132
133 if (!$mask) {
134 $this->error = 'NotConfigured';
135 return 0;
136 }
137
138 $numFinal = get_next_value($db, $mask, 'paiementfourn', 'ref', '', $objsoc, $object->datepaye);
139
140 return $numFinal;
141 }
142
143
144 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
152 public function commande_get_num($objsoc, $objforref)
153 {
154 // phpcs:enable
155 return $this->getNextValue($objsoc, $objforref);
156 }
157}
Class to manage generation of HTML components Only common components must be here.
ModeleNumRefSupplierPayments.
Class to manage customer payment numbering rules Ant.
getExample()
Return an example of numbering.
getNextValue($objsoc, $object)
Return next free value.
info()
Returns the description of the numbering model.
commande_get_num($objsoc, $objforref)
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.