dolibarr 21.0.0-alpha
vatrates.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
23if (!defined('NOTOKENRENEWAL')) {
24 define('NOTOKENRENEWAL', '1'); // Disables token renewal
25}
26if (!defined('NOREQUIREMENU')) {
27 define('NOREQUIREMENU', '1');
28}
29if (!defined('NOREQUIREAJAX')) {
30 define('NOREQUIREAJAX', '1');
31}
32
33// Load Dolibarr environment
34require '../../main.inc.php';
35
36$id = GETPOSTINT('id');
37$action = GETPOST('action', 'aZ09'); // 'getSellerVATRates' or 'getBuyerVATRates'
38$htmlname = GETPOST('htmlname', 'alpha');
39$selected = (GETPOST('selected') ? GETPOST('selected') : '-1');
40$productid = (GETPOSTINT('productid') ? GETPOSTINT('productid') : 0);
41
42// Security check
43$result = restrictedArea($user, 'societe', $id, '&societe', '', 'fk_soc', 'rowid', 0);
44
45
46/*
47 * View
48 */
49
50top_httphead('application/json');
51
52//print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
53
54// Load original field value
55if (!empty($id) && !empty($action) && !empty($htmlname)) {
56 $form = new Form($db);
57 $soc = new Societe($db);
58
59 $soc->fetch($id);
60
61 if ($action == 'getSellerVATRates') { // action = 'getSellerVATRates'
62 $seller = $mysoc;
63 $buyer = $soc;
64 } else { // action = 'getBuyerVATRates'
65 $buyer = $mysoc;
66 $seller = $soc;
67 }
68
69 $return = array();
70 $return['value'] = $form->load_tva('tva_tx', $selected, $seller, $buyer, $productid, 0, '', true);
71 $return['num'] = $form->num;
72 $return['error'] = $form->error;
73
74 echo json_encode($return);
75}
Class to manage generation of HTML components Only common components must be here.
Class to manage third parties objects (customers, suppliers, prospects...)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(!defined( 'NOREQUIREMENU')) if(!empty(GETPOST('seteventmessages', 'alpha'))) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.