dolibarr  16.0.5
price.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
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  */
17 
23 if (!defined('NOTOKENRENEWAL')) {
24  define('NOTOKENRENEWAL', '1'); // Disables token renewal
25 }
26 if (!defined('NOREQUIREMENU')) {
27  define('NOREQUIREMENU', '1');
28 }
29 if (!defined('NOREQUIREAJAX')) {
30  define('NOREQUIREAJAX', '1');
31 }
32 if (!defined('NOREQUIRESOC')) {
33  define('NOREQUIRESOC', '1');
34 }
35 
36 require '../../main.inc.php';
37 
38 $output = GETPOST('output', 'alpha');
39 $amount = price2num(GETPOST('amount', 'alpha'));
40 $tva_tx = str_replace('*', '', GETPOST('tva_tx', 'alpha'));
41 
42 /*
43  * View
44  */
45 
46 top_httphead();
47 
48 //print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
49 
50 // Load original field value
51 if (!empty($output) && isset($amount) && isset($tva_tx)) {
52  $return = array();
53  $price = '';
54 
55  if (is_numeric($amount) && $amount != '') {
56  if ($output == 'price_ttc') {
57  $price = price2num($amount * (1 + ($tva_tx / 100)), 'MU');
58  $return['price_ht'] = $amount;
59  $return['price_ttc'] = (isset($price) && $price != '' ? price($price) : '');
60  } elseif ($output == 'price_ht') {
61  $price = price2num($amount / (1 + ($tva_tx / 100)), 'MU');
62  $return['price_ht'] = (isset($price) && $price != '' ? price($price) : '');
63  $return['price_ttc'] = ($tva_tx == 0 ? $price : $amount);
64  }
65  }
66 
67  echo json_encode($return);
68 }
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
top_httphead
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1407
price2num
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
Definition: functions.lib.php:5661
price
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.
Definition: functions.lib.php:5541