dolibarr 21.0.0-beta
freezone.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2018 Andreu Bisquerra <jove@bisquerra.com>
3 * Copyright (C) 2020 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
27//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language
28//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
29//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
30if (!defined('NOTOKENRENEWAL')) {
31 define('NOTOKENRENEWAL', '1');
32}
33if (!defined('NOREQUIREMENU')) {
34 define('NOREQUIREMENU', '1');
35}
36if (!defined('NOREQUIREHTML')) {
37 define('NOREQUIREHTML', '1');
38}
39if (!defined('NOREQUIREAJAX')) {
40 define('NOREQUIREAJAX', '1');
41}
42
43// Load Dolibarr environment
44require '../main.inc.php'; // Load $user and permissions
45require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
46require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
47require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
48
49global $mysoc;
59$langs->loadLangs(array("bills", "cashdesk"));
60
61$place = (GETPOST('place', 'aZ09') ? GETPOST('place', 'aZ09') : '0'); // $place is id of table for Bar or Restaurant
62
63$invoiceid = GETPOST('invoiceid', 'int');
64
65$idline = GETPOSTINT('idline');
66$action = GETPOST('action', 'aZ09');
67
68if (!$user->hasRight('takepos', 'run')) {
70}
71
72// get invoice
73$invoice = new Facture($db);
74if ($invoiceid > 0) {
75 $invoice->fetch($invoiceid);
76} else {
77 $invoice->fetch('', '(PROV-POS'.$_SESSION['takeposterminal'].'-'.$place.')');
78}
79
80
81// get default vat rate
82$constforcompanyid = 'CASHDESK_ID_THIRDPARTY'.$_SESSION['takeposterminal'];
83$soc = new Societe($db);
84if ($invoice->socid > 0) {
85 $soc->fetch($invoice->socid);
86} else {
87 $soc->fetch(getDolGlobalInt($constforcompanyid));
88}
89$vatRateDefault = get_default_tva($mysoc, $soc);
90
91
92/*
93 * View
94 */
95
96$arrayofcss = array('/takepos/css/pos.css.php');
97$arrayofjs = array();
98
99top_htmlhead('', '', 0, 0, $arrayofjs, $arrayofcss);
100?>
101<body>
102
103<script>
104 var vatRate = '<?php echo dol_escape_js($vatRateDefault); ?>';
105
112 function ApplyVATRate(id, rate) {
113 console.log("Save selected VAT Rate into vatRate variable with value "+rate);
114 vatRate = rate;
115 jQuery('button.vat_rate').removeClass('selected');
116 jQuery('#vat_rate_'+id).addClass('selected');
117 }
118
122 function Save() {
123 console.log("We click so we call page invoice.php with invoiceid=<?php echo $invoiceid; ?>, place=<?php echo $place; ?>, amount="+$("#number").val()+", tva_tx="+vatRate);
124 parent.$("#poslines").load("<?php echo DOL_URL_ROOT; ?>/takepos/invoice.php?action=freezone&token=<?php echo newToken(); ?>&invoiceid=<?php echo $invoiceid; ?>&place=<?php echo $place; ?>&number="+$("#number").val()+"&tva_tx="+vatRate, {desc:$("#desc").val()});
125 parent.$.colorbox.close();
126 }
127
128 $( document ).ready(function() {
129 $('#desc').focus()
130 });
131</script>
132
133<br>
134<center>
135<form>
136<input type="text" id="desc" name="desc" class="takepospay" style="width:40%;" placeholder="<?php echo $langs->trans('Description'); ?>">
137<?php
138if ($action == "freezone" && $user->hasRight('takepos', 'run')) {
139 echo '<input type="text" id="number" name="number" class="takepospay" style="width:15%;" placeholder="'.$langs->trans(getDolGlobalString("TAKEPOS_CHANGE_PRICE_HT") ? 'AmountHT' : 'AmountTTC').'">';
140}
141if ($action == "addnote" && $user->hasRight('takepos', 'run')) {
142 echo '<input type="hidden" id="number" name="number" value="'.$idline.'">';
143}
144?>
145<input type="hidden" name="place" class="takepospay" value="<?php echo $place; ?>">
146<input type="submit" class="button takepospay clearboth" value="OK" onclick="Save(); return false;">
147</form>
148<?php
149if ($action == 'freezone' && !getDolGlobalString("TAKEPOS_USE_DEFAULT_VATRATE_FOR_FREEZONE") && $user->hasRight('takepos', 'run')) {
150 require_once DOL_DOCUMENT_ROOT.'/core/class/html.form.class.php';
151
152 $form = new Form($db);
153 $num = $form->load_cache_vatrates("'".$mysoc->country_code."'");
154 if ($num > 0) {
155 print '<br><br>';
156 print $langs->trans('VAT').' : ';
157 foreach ($form->cache_vatrates as $rate) {
158 print '<button type="button" class="button item_value vat_rate'.($rate['txtva'] == $vatRateDefault ? ' selected' : '').'" id="vat_rate_'.$rate['rowid'].'" onclick="ApplyVATRate(\''.$rate['rowid'].'\', \''.$rate['txtva'].'\');">'.$rate['txtva'].' %</button>';
159 }
160 }
161}
162?>
163</center>
164
165</body>
166</html>
Class to manage invoices.
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
get_default_tva(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Function that return vat rate of a product line (according to seller, buyer and product vat rate) VAT...
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs=array(), $arrayofcss=array(), $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Output html header of a page.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:149
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:152
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.