29require
'../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
42$langs->loadLangs(array(
'companies',
'products',
'admin'));
44$action =
GETPOST(
'action',
'aZ09');
45$cancel =
GETPOST(
'cancel',
'aZ09');
46$currencycode =
GETPOST(
'currencycode',
'alpha');
48if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICURRENCY_USE_LIMIT_BY_CURRENCY')) {
50 $currencycode = (!empty($currencycode) ? $currencycode :
$conf->currency);
53$mainmaxdecimalsunit =
'MAIN_MAX_DECIMALS_UNIT'.(!empty($currencycode) ?
'_'.$currencycode :
'');
54$mainmaxdecimalstot =
'MAIN_MAX_DECIMALS_TOT'.(!empty($currencycode) ?
'_'.$currencycode :
'');
55$mainmaxdecimalsshown =
'MAIN_MAX_DECIMALS_SHOWN'.(!empty($currencycode) ?
'_'.$currencycode :
'');
56$mainroundingruletot =
'MAIN_ROUNDING_RULE_TOT'.(!empty($currencycode) ?
'_'.$currencycode :
'');
58$valmainmaxdecimalsunit =
GETPOSTINT($mainmaxdecimalsunit);
59$valmainmaxdecimalstot =
GETPOSTINT($mainmaxdecimalstot);
60$valmainmaxdecimalsshown =
GETPOST($mainmaxdecimalsshown,
'alpha');
61$valmainroundingruletot =
price2num(
GETPOST($mainroundingruletot,
'alphanohtml'),
'', 2);
72if ($action ==
'update' && !$cancel) {
75 if ($valmainmaxdecimalsunit > $MAXDEC
76 || $valmainmaxdecimalstot > $MAXDEC
77 || $valmainmaxdecimalsshown > $MAXDEC) {
79 setEventMessages($langs->trans(
"ErrorDecimalLargerThanAreForbidden", $MAXDEC),
null,
'errors');
83 if ($valmainmaxdecimalsunit < 0
84 || $valmainmaxdecimalstot < 0
85 || $valmainmaxdecimalsshown < 0) {
86 $langs->load(
"errors");
88 setEventMessages($langs->trans(
"ErrorNegativeValueNotAllowed"),
null,
'errors');
92 if ($valmainroundingruletot) {
93 if ((
float) $valmainroundingruletot * pow(10, $valmainmaxdecimalstot) < 1) {
94 $langs->load(
"errors");
96 setEventMessages($langs->trans(
"ErrorMAIN_ROUNDING_RULE_TOTCanMAIN_MAX_DECIMALS_TOT"),
null,
'errors');
101 if ((
float) $valmainmaxdecimalsshown == 0) {
102 $langs->load(
"errors");
107 if (! $error && ((
float) $valmainmaxdecimalsshown < $valmainmaxdecimalsunit || (
float) $valmainmaxdecimalsshown < $valmainmaxdecimalstot)) {
108 $langs->load(
"errors");
121 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?mainmenu=home&leftmenu=setup".(!empty($currencycode) ?
'¤cycode='.$currencycode :
''));
131$form =
new Form($db);
133$title = $langs->trans(
"LimitsSetup");
136llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-limits');
140$aCurrencies = array(
$conf->currency);
142if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICURRENCY_USE_LIMIT_BY_CURRENCY')) {
143 require_once DOL_DOCUMENT_ROOT .
'/core/lib/multicurrency.lib.php';
145 $sql =
"SELECT rowid, code FROM " . MAIN_DB_PREFIX .
"multicurrency";
146 $sql .=
" WHERE entity = " . ((int)
$conf->entity);
147 $sql .=
" AND code <> '" . $db->escape(
$conf->currency) .
"'";
148 $resql = $db->query($sql);
150 while ($obj = $db->fetch_object($resql)) {
151 $aCurrencies[] = $obj->code;
155 if (!empty($aCurrencies) && count($aCurrencies) > 1) {
162print
'<span class="opacitymedium">'.$langs->trans(
"LimitsDesc").
"</span><br>\n";
165if ($action ==
'edit') {
166 print
'<form method="POST" action="' . $_SERVER[
"PHP_SELF"] .
'">';
167 print
'<input type="hidden" name="token" value="' .
newToken() .
'">';
168 print
'<input type="hidden" name="action" value="update">';
169 if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICURRENCY_USE_LIMIT_BY_CURRENCY')) {
170 print
'<input type="hidden" name="currencycode" value="' . $currencycode .
'">';
175 print
'<table class="noborder centpercent">';
176 print
'<tr class="liste_titre"><td>'.$langs->trans(
"Parameters").
'</td><td>'.$langs->trans(
"Value").
'</td></tr>';
178 print
'<tr class="oddeven"><td>';
179 print $form->textwithpicto($langs->trans(
"MAIN_MAX_DECIMALS_UNIT"), $langs->trans(
"ParameterActiveForNextInputOnly"));
180 print
'</td><td><input class="flat right" name="'.$mainmaxdecimalsunit.
'" size="3" value="'.(GETPOSTISSET($mainmaxdecimalsunit) ?
GETPOST($mainmaxdecimalsunit) :
getDolGlobalInt(
'MAIN_MAX_DECIMALS_UNIT', 0)).
'"></td></tr>';
182 print
'<tr class="oddeven"><td>';
183 print $form->textwithpicto($langs->trans(
"MAIN_MAX_DECIMALS_TOT"), $langs->trans(
"ParameterActiveForNextInputOnly"));
184 print
'</td><td><input class="flat right" name="'.$mainmaxdecimalstot.
'" size="3" value="'.(GETPOSTISSET($mainmaxdecimalstot) ?
GETPOST($mainmaxdecimalstot) :
getDolGlobalInt(
'MAIN_MAX_DECIMALS_TOT', 0)).
'"></td></tr>';
186 print
'<tr class="oddeven"><td>'.$langs->trans(
"MAIN_MAX_DECIMALS_SHOWN").
'</td>';
187 print
'<td><input class="flat right" name="'.$mainmaxdecimalsshown.
'" size="3" value="'.(GETPOSTISSET($mainmaxdecimalsshown) ?
GETPOST($mainmaxdecimalsshown) :
getDolGlobalString(
'MAIN_MAX_DECIMALS_SHOWN')).
'"></td></tr>';
189 print
'<tr class="oddeven"><td>';
190 print $form->textwithpicto($langs->trans(
"MAIN_ROUNDING_RULE_TOT"), $langs->trans(
"ParameterActiveForNextInputOnly"));
191 print
'</td><td><input class="flat right" name="'.$mainroundingruletot.
'" size="3" value="'.(GETPOSTISSET($mainroundingruletot) ?
GETPOST($mainroundingruletot) :
getDolGlobalString(
'MAIN_ROUNDING_RULE_TOT')).
'"></td></tr>';
195 print
'<div class="center">';
196 print
'<input class="button button-save" type="submit" name="save" value="'.$langs->trans(
"Save").
'">';
198 print
'<input class="button button-cancel" type="submit" name="cancel" value="'.$langs->trans(
"Cancel").
'">';
205 print
'<div class="div-table-responsive-no-min">';
206 print
'<table class="noborder centpercent">';
207 print
'<tr class="liste_titre"><td>'.$langs->trans(
"Parameter").
'</td><td class="right">'.$langs->trans(
"Value").
'</td></tr>';
209 print
'<tr class="oddeven"><td>';
210 print $form->textwithpicto($langs->trans(
"MAIN_MAX_DECIMALS_UNIT"), $langs->trans(
"ParameterActiveForNextInputOnly"));
211 print
'</td><td align="right">'.(isset(
$conf->global->$mainmaxdecimalsunit) ?
$conf->global->$mainmaxdecimalsunit :
$conf->global->MAIN_MAX_DECIMALS_UNIT).
'</td></tr>';
213 print
'<tr class="oddeven"><td>';
214 print $form->textwithpicto($langs->trans(
"MAIN_MAX_DECIMALS_TOT"), $langs->trans(
"ParameterActiveForNextInputOnly"));
215 print
'</td><td align="right">'.(isset(
$conf->global->$mainmaxdecimalstot) ?
$conf->global->$mainmaxdecimalstot :
$conf->global->MAIN_MAX_DECIMALS_TOT).
'</td></tr>';
217 print
'<tr class="oddeven"><td>'.$langs->trans(
"MAIN_MAX_DECIMALS_SHOWN").
'</td>';
218 print
'<td align="right">'.(isset(
$conf->global->$mainmaxdecimalsshown) ?
$conf->global->$mainmaxdecimalsshown :
$conf->global->MAIN_MAX_DECIMALS_SHOWN).
'</td></tr>';
220 print
'<tr class="oddeven"><td>';
221 print $form->textwithpicto($langs->trans(
"MAIN_ROUNDING_RULE_TOT"), $langs->trans(
"ParameterActiveForNextInputOnly"));
222 print
'</td><td align="right">'.(isset(
$conf->global->$mainroundingruletot) ?
$conf->global->$mainroundingruletot : (
getDolGlobalString(
'MAIN_ROUNDING_RULE_TOT') ?
$conf->global->MAIN_ROUNDING_RULE_TOT :
'')).
'</td></tr>';
227 print
'<div class="tabsAction">';
228 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=edit&token='.
newToken().(!empty($currencycode) ?
'¤cycode='.$currencycode :
'').
'">'.$langs->trans(
"Modify").
'</a>';
232if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICURRENCY_USE_LIMIT_BY_CURRENCY')) {
233 if (!empty($aCurrencies) && count($aCurrencies) > 1) {
238if (empty($mysoc->country_code)) {
239 $langs->load(
"errors");
240 $warnpicto =
img_warning($langs->trans(
"WarningMandatorySetupNotComplete"));
241 print
'<br><a href="'.DOL_URL_ROOT.
'/admin/company.php?mainmenu=home">'.$warnpicto.
' '.$langs->trans(
"WarningMandatorySetupNotComplete").
'</a>';
246 print
'<span class="opacitymedium">'.$langs->trans(
"NumberFormatForATotalPrice",
'1234.56789').
':</span> '.
price(
price2num(1234.56789,
'MT'), 0, $langs, 1, -1, -1, $currencycode).
"<br>\n";
252 $tmparray =
calcul_price_total(1, $qty * (
float)
price2num($s,
'MU'), 0, $vat, 0, 0, 0,
'HT', 0, 0, $mysoc);
253 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
254 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
255 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
":</span> ".$vat.
'%';
256 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ".$tmparray[0].
' / '.$tmparray[1].
' / '.$tmparray[2].
"<br>\n";
261 $tmparray =
calcul_price_total(1, $qty * (
float)
price2num($s,
'MU'), 0, $vat, 0, 0, 0,
'HT', 0, 0, $mysoc);
262 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
263 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
264 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
":</span> ".$vat.
'%';
265 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ".$tmparray[0].
' / '.$tmparray[1].
' / '.$tmparray[2].
"<br>\n";
270 $tmparray =
calcul_price_total(1, $qty * (
float)
price2num($s,
'MU'), 0, $vat, 0, 0, 0,
'HT', 0, 0, $mysoc);
271 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
272 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
273 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
":</span> ".$vat.
'%';
274 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ".$tmparray[0].
' / '.$tmparray[1].
' / '.$tmparray[2].
"<br>\n";
277 $vat_rates = array();
279 $sql =
"SELECT taux as vat_rate, t.code as vat_code, t.localtax1 as localtax_rate1, t.localtax2 as localtax_rate2";
280 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_tva as t, ".MAIN_DB_PREFIX.
"c_country as c";
281 $sql .=
" WHERE t.active=1 AND t.fk_pays = c.rowid AND c.code='".$db->escape($mysoc->country_code).
"' AND (t.taux <> 0 OR t.localtax1 <> '0' OR t.localtax2 <> '0')";
282 $sql .=
" AND t.entity IN (".getEntity(
'c_tva').
")";
283 $sql .=
" ORDER BY t.taux ASC";
284 $resql = $db->query($sql);
286 $num = $db->num_rows($resql);
288 for ($i = 0; $i < $num; $i++) {
289 $obj = $db->fetch_object($resql);
290 $vat_rates[] = array(
'vat_rate' => $obj->vat_rate,
'code' => $obj->vat_code,
'localtax_rate1' => $obj->localtax_rate1,
'locltax_rate2' => $obj->localtax_rate2);
297 if (count($vat_rates)) {
298 foreach ($vat_rates as $vatarray) {
299 $vat = $vatarray[
'vat_rate'];
300 for ($qty = 1; $qty <= 2; $qty++) {
301 $vattxt = $vat.($vatarray[
'code'] ?
' ('.$vatarray[
'code'].
')' :
'');
306 $tmparray =
calcul_price_total($qty, (
float)
price2num($s,
'MU'), 0, $vat, -1, -1, 0,
'HT', 0, 0, $mysoc, $localtax_array);
307 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
308 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
309 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
':</span> '.$vat.
'%';
310 print($vatarray[
'code'] ?
' ('.$vatarray[
'code'].
')' :
'');
311 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ";
312 print $tmparray[0].
' / '.$tmparray[1].($tmparray[9] ?
'+'.$tmparray[9] :
'').($tmparray[10] ?
'+'.$tmparray[10] :
'').
' / '.$tmparray[2];
318 $vattxt = $vat.($vatarray[
'code'] ?
' ('.$vatarray[
'code'].
')' :
'');
323 $tmparray =
calcul_price_total($qty, (
float)
price2num($s,
'MU'), 0, $vat, -1, -1, 0,
'HT', 0, 0, $mysoc, $localtax_array);
324 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
325 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
326 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
':</span> '.$vat.
'%';
327 print($vatarray[
'code'] ?
' ('.$vatarray[
'code'].
')' :
'');
328 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ";
329 print $tmparray[0].
' / '.$tmparray[1].($tmparray[9] ?
'+'.$tmparray[9] :
'').($tmparray[10] ?
'+'.$tmparray[10] :
'').
' / '.$tmparray[2];
338 $localtax_array = array();
343 $tmparray =
calcul_price_total($qty, (
float)
price2num($s,
'MU'), 0, $vat, -1, -1, 0,
'HT', 0, 0, $mysoc, $localtax_array);
344 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
345 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
346 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
":</span> ".$vat.
'%';
347 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ".$tmparray[0].
' / '.$tmparray[1].
' / '.$tmparray[2].
"<br>\n";
352 $tmparray =
calcul_price_total($qty, (
float)
price2num($s,
'MU'), 0, $vat, -1, -1, 0,
'HT', 0, 0, $mysoc, $localtax_array);
353 print
'<span class="opacitymedium">'.$langs->trans(
"UnitPriceOfProduct").
":</span> ".
price2num($s,
'MU');
354 print
' x <span class="opacitymedium">'.$langs->trans(
"Quantity").
":</span> ".$qty;
355 print
' - <span class="opacitymedium">'.$langs->trans(
"VAT").
":</span> ".$vat.
'%';
356 print
' -> <span class="opacitymedium">'.$langs->trans(
"TotalPriceAfterRounding").
":</span> ".$tmparray[0].
' / '.$tmparray[1].
' / '.$tmparray[2].
"<br>\n";
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
multicurrencyLimitPrepareHead($aCurrencies)
Prepare array with list of currency tabs.
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller='', $localtaxes_array=[], $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code='')
Calculate totals (net, vat, ...) of a line.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.