dolibarr  20.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  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
25 //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
26 //if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language
27 //if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
28 //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
29 if (!defined('NOTOKENRENEWAL')) {
30  define('NOTOKENRENEWAL', '1');
31 }
32 if (!defined('NOREQUIREMENU')) {
33  define('NOREQUIREMENU', '1');
34 }
35 if (!defined('NOREQUIREHTML')) {
36  define('NOREQUIREHTML', '1');
37 }
38 if (!defined('NOREQUIREAJAX')) {
39  define('NOREQUIREAJAX', '1');
40 }
41 
42 // Load Dolibarr environment
43 require '../main.inc.php'; // Load $user and permissions
44 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
45 require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
46 require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
47 
48 global $mysoc;
49 
50 $langs->loadLangs(array("bills", "cashdesk"));
51 
52 $place = (GETPOST('place', 'aZ09') ? GETPOST('place', 'aZ09') : '0'); // $place is id of table for Bar or Restaurant
53 
54 $invoiceid = GETPOST('invoiceid', 'int');
55 
56 $idline = GETPOSTINT('idline');
57 $action = GETPOST('action', 'aZ09');
58 
59 if (!$user->hasRight('takepos', 'run')) {
61 }
62 
63 // get invoice
64 $invoice = new Facture($db);
65 if ($invoiceid > 0) {
66  $invoice->fetch($invoiceid);
67 } else {
68  $invoice->fetch('', '(PROV-POS'.$_SESSION['takeposterminal'].'-'.$place.')');
69 }
70 
71 
72 // get default vat rate
73 $constforcompanyid = 'CASHDESK_ID_THIRDPARTY'.$_SESSION['takeposterminal'];
74 $soc = new Societe($db);
75 if ($invoice->socid > 0) {
76  $soc->fetch($invoice->socid);
77 } else {
78  $soc->fetch(getDolGlobalInt($constforcompanyid));
79 }
80 $vatRateDefault = get_default_tva($mysoc, $soc);
81 
82 
83 /*
84  * View
85  */
86 
87 $arrayofcss = array('/takepos/css/pos.css.php');
88 $arrayofjs = array();
89 
90 top_htmlhead('', '', 0, 0, $arrayofjs, $arrayofcss);
91 ?>
92 <body>
93 
94 <script>
95  var vatRate = '<?php echo dol_escape_js($vatRateDefault); ?>';
96 
103  function ApplyVATRate(id, rate) {
104  console.log("Save selected VAT Rate into vatRate variable with value "+rate);
105  vatRate = rate;
106  jQuery('button.vat_rate').removeClass('selected');
107  jQuery('#vat_rate_'+id).addClass('selected');
108  }
109 
113  function Save() {
114  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);
115  parent.$("#poslines").load("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()});
116  parent.$.colorbox.close();
117  }
118 
119  $( document ).ready(function() {
120  $('#desc').focus()
121  });
122 </script>
123 
124 <br>
125 <center>
126 <form>
127 <input type="text" id="desc" name="desc" class="takepospay" style="width:40%;" placeholder="<?php echo $langs->trans('Description'); ?>">
128 <?php
129 if ($action == "freezone") {
130  echo '<input type="text" id="number" name="number" class="takepospay" style="width:15%;" placeholder="'.$langs->trans(getDolGlobalString("TAKEPOS_CHANGE_PRICE_HT") ? 'AmountHT' : 'AmountTTC').'">';
131 }
132 if ($action == "addnote") {
133  echo '<input type="hidden" id="number" name="number" value="'.$idline.'">';
134 }
135 ?>
136 <input type="hidden" name="place" class="takepospay" value="<?php echo $place; ?>">
137 <input type="submit" class="button takepospay clearboth" value="OK" onclick="Save(); return false;">
138 </form>
139 <?php
140 if ($action == 'freezone' && !getDolGlobalString("TAKEPOS_USE_DEFAULT_VATRATE_FOR_FREEZONE")) {
141  require_once DOL_DOCUMENT_ROOT.'/core/class/html.form.class.php';
142 
143  $form = new Form($db);
144  $num = $form->load_cache_vatrates("'".$mysoc->country_code."'");
145  if ($num > 0) {
146  print '<br><br>';
147  print $langs->trans('VAT').' : ';
148  foreach ($form->cache_vatrates as $rate) {
149  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>';
150  }
151  }
152 }
153 ?>
154 </center>
155 
156 </body>
157 </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 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.
Definition: main.inc.php:1786
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:123
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition: repair.php:126
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.