28 if (!defined(
'NOTOKENRENEWAL')) {
29 define(
'NOTOKENRENEWAL',
'1');
31 if (!defined(
'NOREQUIREMENU')) {
32 define(
'NOREQUIREMENU',
'1');
34 if (!defined(
'NOREQUIREHTML')) {
35 define(
'NOREQUIREHTML',
'1');
37 if (!defined(
'NOREQUIREAJAX')) {
38 define(
'NOREQUIREAJAX',
'1');
42 require
'../main.inc.php';
43 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
45 $place = (
GETPOST(
'place',
'aZ09') ?
GETPOST(
'place',
'aZ09') : 0);
47 $invoiceid =
GETPOST(
'invoiceid',
'int');
49 if (empty($user->rights->takepos->run)) {
60 $invoice->fetch($invoiceid);
62 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"facture where ref='(PROV-POS".$_SESSION[
"takeposterminal"].
"-".$place.
")'";
64 $obj = $db->fetch_object(
$resql);
66 $invoiceid = $obj->rowid;
71 $invoice->fetch($invoiceid);
76 $arrayofcss = array(
'/takepos/css/pos.css.php');
81 $langs->loadLangs(array(
'main',
'bills',
'cashdesk'));
83 if (!isset($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON) || !empty($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON)) {
84 $htmlReductionPercent =
'<span class="fa fa-2x fa-percent"></span>';
85 $htmlReductionAmount =
'<span class="fa fa-2x fa-money"></span><br>'.$langs->trans(
'Amount');
87 $htmlReductionPercent = $langs->trans(
'ReductionShort').
'<br>%';
88 $htmlReductionAmount = $langs->trans(
'ReductionShort').
'<br>'.$langs->trans(
'Amount');
91 <link rel=
"stylesheet" href=
"css/pos.css.php">
96 var reductionType =
'';
97 var reductionTotal =
'';
100 var htmlBtnOK =
'<span style="font-size: 14pt;">OK</span>';
101 var htmlReductionPercent =
'<?php echo dol_escape_js($htmlReductionPercent); ?>';
102 var htmlReductionAmount =
'<?php echo dol_escape_js($htmlReductionAmount); ?>';
113 jQuery(
'#reduction_total').val(reductionTotal);
114 jQuery(
"#reduction_type_percent").html(htmlReductionPercent);
115 jQuery(
'#reduction_type_amount').html(htmlReductionAmount);
123 function Edit(number)
125 console.log(
'Edit ' + number);
127 if (number ===
'p') {
128 if (editAction ===
'p' && reductionType ===
'percent'){
133 reductionType =
'percent';
134 }
else if (number ===
'a') {
135 if (editAction ===
'a' && reductionType ===
'amount'){
140 reductionType =
'amount';
143 if (editAction ===
'p'){
144 jQuery(
'#reduction_type_percent').html(htmlBtnOK);
145 jQuery(
'#reduction_type_amount').html(htmlReductionAmount);
146 }
else if (editAction ===
'a'){
147 jQuery(
'#reduction_type_amount').html(htmlBtnOK);
148 jQuery(
"#reduction_type_percent").html(htmlReductionPercent);
150 jQuery(
'#reduction_type_percent').html(htmlReductionPercent);
151 jQuery(
'#reduction_type_amount').html(htmlReductionAmount);
160 function AddReduction(reductionNumber)
162 console.log(
'AddReduction ' + reductionNumber);
164 reductionTotal += String(reductionNumber);
165 jQuery(
'#reduction_total').val(reductionTotal);
171 function ValidateReduction()
173 console.log(
'ValidateReduction');
175 if (reductionTotal.length <= 0) {
176 console.error(
'Error no reduction');
180 var reductionNumber = parseFloat(reductionTotal);
181 if (isNaN(reductionNumber)) {
182 console.error(
'Error not a valid number :', reductionNumber);
186 if (reductionType ===
'percent') {
187 var invoiceid = <?php echo ($invoiceid > 0 ? $invoiceid : 0); ?>;
188 parent.$(
"#poslines").load(
"invoice.php?action=update_reduction_global&token=<?php echo newToken(); ?>&place=<?php echo $place; ?>&number="+reductionNumber+
"&invoiceid="+invoiceid,
function() {
190 parent.$.colorbox.close();
192 }
else if (reductionType ===
'amount') {
193 var desc =
"<?php echo dol_escape_js($langs->transnoentities('Reduction')); ?>";
194 parent.$(
"#poslines").load(
"invoice.php?action=freezone&token=<?php echo newToken(); ?>&place=<?php echo $place; ?>&number=-"+reductionNumber+
"&desc="+desc,
function() {
196 parent.$.colorbox.close();
199 console.error(
'Error bad reduction type :', reductionType);
204 <div style=
"position:absolute; top:2%; left:5%; width:91%;">
207 print
'<input type="text" class="takepospay" id="reduction_total" name="reduction_total" style="width: 50%;" placeholder="'.$langs->trans(
'Reduction').
'">';
212 <div style=
"position:absolute; top:33%; left:5%; height:52%; width:92%;">
215 print
'<button type="button" class="calcbutton" onclick="AddReduction(7);">7</button>';
216 print
'<button type="button" class="calcbutton" onclick="AddReduction(8);">8</button>';
217 print
'<button type="button" class="calcbutton" onclick="AddReduction(9);">9</button>';
218 print
'<button type="button" class="calcbutton2" id="reduction_type_percent" onclick="Edit(\'p\');">'.$htmlReductionPercent.
'</button>';
219 print
'<button type="button" class="calcbutton" onclick="AddReduction(4);">4</button>';
220 print
'<button type="button" class="calcbutton" onclick="AddReduction(5);">5</button>';
221 print
'<button type="button" class="calcbutton" onclick="AddReduction(6);">6</button>';
222 print
'<button type="button" class="calcbutton2" id="reduction_type_amount" onclick="Edit(\'a\');">'.$htmlReductionAmount.
'</button>';
223 print
'<button type="button" class="calcbutton" onclick="AddReduction(1);">1</button>';
224 print
'<button type="button" class="calcbutton" onclick="AddReduction(2);">2</button>';
225 print
'<button type="button" class="calcbutton" onclick="AddReduction(3);">3</button>';
226 print
'<button type="button" class="calcbutton3 poscolorblue" onclick="Reset();"><span id="printtext" style="font-weight: bold; font-size: 18pt;">C</span></button>';
227 print
'<button type="button" class="calcbutton" onclick="AddReduction(0);">0</button>';
228 print
'<button type="button" class="calcbutton" onclick="AddReduction(\'.\');">.</button>';
229 print
'<button type="button" class="calcbutton"> </button>';
230 print
'<button type="button" class="calcbutton3 poscolordelete" onclick="parent.$.colorbox.close();"><span id="printtext" style="font-weight: bold; font-size: 18pt;">X</span></button>';
Class to manage invoices.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Ouput html header of a page.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.