dolibarr  x.y.z
receipt.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2008 Jeremie Ollivier <jeremie.o@laposte.net>
3  * Copyright (C) 2011 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2012 Marcos García <marcosgdf@gmail.com>
5  * Copyright (C) 2018 Andreu Bisquerra <jove@bisquerra.com>
6  * Copyright (C) 2019 Josep Lluís Amador <joseplluis@lliuretic.cat>
7  * Copyright (C) 2021 Nicolas ZABOURI <info@inovea-conseil.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  */
22 
29 if (!isset($action)) {
30  //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Not disabled cause need to load personalized language
31  //if (! defined('NOREQUIREDB')) define('NOREQUIREDB', '1'); // Not disabled cause need to load personalized language
32  //if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC', '1');
33  //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN', '1');
34  if (!defined('NOTOKENRENEWAL')) {
35  define('NOTOKENRENEWAL', '1');
36  }
37  if (!defined('NOREQUIREMENU')) {
38  define('NOREQUIREMENU', '1');
39  }
40  if (!defined('NOREQUIREHTML')) {
41  define('NOREQUIREHTML', '1');
42  }
43  if (!defined('NOREQUIREAJAX')) {
44  define('NOREQUIREAJAX', '1');
45  }
46 
47  require '../main.inc.php'; // If this file is called from send.php avoid load again
48 }
49 include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
50 
51 $langs->loadLangs(array("main", "bills", "cashdesk", "companies"));
52 
53 $place = (GETPOST('place', 'aZ09') ? GETPOST('place', 'aZ09') : 0); // $place is id of table for Bar or Restaurant
54 
55 $facid = GETPOST('facid', 'int');
56 
57 $action = GETPOST('action', 'aZ09');
58 $gift = GETPOST('gift', 'int');
59 
60 if (empty($user->rights->takepos->run)) {
62 }
63 
64 
65 /*
66  * View
67  */
68 
69 top_httphead('text/html', 1);
70 
71 if ($place > 0) {
72  $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."facture where ref='(PROV-POS".$db->escape($_SESSION["takeposterminal"]."-".$place).")'";
73  $resql = $db->query($sql);
74  $obj = $db->fetch_object($resql);
75  if ($obj) {
76  $facid = $obj->rowid;
77  }
78 }
79 $object = new Facture($db);
80 $object->fetch($facid);
81 
82 // Call to external receipt modules if exist
83 $parameters = array();
84 $hookmanager->initHooks(array('takeposfrontend'));
85 $reshook = $hookmanager->executeHooks('TakeposReceipt', $parameters, $object);
86 if (!empty($hookmanager->resPrint)) {
87  print $hookmanager->resPrint;
88  return; // Receipt page can be called by the takepos/send.php page that use ob_start/end so we must use return and not exit to stop page
89 }
90 
91 // IMPORTANT: This file is sended to 'Takepos Printing' application. Keep basic file. No external files as css, js... If you need images use absolute path.
92 ?>
93 <body>
94 <style>
95 .right {
96  text-align: right;
97 }
98 .center {
99  text-align: center;
100 }
101 .left {
102  text-align: left;
103 }
104 </style>
105 <center>
106 <font size="4">
107 <?php echo '<b>'.$mysoc->name.'</b>'; ?>
108 </font>
109 </center>
110 <br>
111 <p class="left">
112 <?php
113 $constFreeText = 'TAKEPOS_HEADER'.$_SESSION['takeposterminal'];
114 if (!empty($conf->global->TAKEPOS_HEADER) || !empty($conf->global->{$constFreeText})) {
115  $newfreetext = '';
116  $substitutionarray = getCommonSubstitutionArray($langs);
117  if (!empty($conf->global->TAKEPOS_HEADER)) {
118  $newfreetext .= make_substitutions($conf->global->TAKEPOS_HEADER, $substitutionarray);
119  }
120  if (!empty($conf->global->{$constFreeText})) {
121  $newfreetext .= make_substitutions($conf->global->{$constFreeText}, $substitutionarray);
122  }
123  print nl2br($newfreetext);
124 }
125 ?>
126 </p>
127 <p class="right">
128 <?php
129 print $langs->trans('Date')." ".dol_print_date($object->date, 'day').'<br>';
130 if (!empty($conf->global->TAKEPOS_RECEIPT_NAME)) {
131  print $conf->global->TAKEPOS_RECEIPT_NAME." ";
132 }
133 if ($object->statut == Facture::STATUS_DRAFT) {
134  print str_replace(")", "", str_replace("-", " ".$langs->trans('Place')." ", str_replace("(PROV-POS", $langs->trans("Terminal")." ", $object->ref)));
135 } else {
136  print $object->ref;
137 }
138 if ($conf->global->TAKEPOS_SHOW_CUSTOMER) {
139  if ($object->socid != $conf->global->{'CASHDESK_ID_THIRDPARTY'.$_SESSION["takeposterminal"]}) {
140  $soc = new Societe($db);
141  if ($object->socid > 0) {
142  $soc->fetch($object->socid);
143  } else {
144  $soc->fetch($conf->global->{'CASHDESK_ID_THIRDPARTY'.$_SESSION["takeposterminal"]});
145  }
146  print "<br>".$langs->trans("Customer").': '.$soc->name;
147  }
148 }
149 ?>
150 </p>
151 <br>
152 
153 <table width="100%" style="border-top-style: double;">
154  <thead>
155  <tr>
156  <th class="center"><?php print $langs->trans("Label"); ?></th>
157  <th class="right"><?php print $langs->trans("Qty"); ?></th>
158  <th class="right"><?php if ($gift != 1) {
159  print $langs->trans("Price");
160  } ?></th>
161  <?php if (!empty($conf->global->TAKEPOS_SHOW_HT_RECEIPT)) { ?>
162  <th class="right"><?php if ($gift != 1) {
163  print $langs->trans("TotalHT");
164  } ?></th>
165  <?php } ?>
166  <th class="right"><?php if ($gift != 1) {
167  print $langs->trans("TotalTTC");
168  } ?></th>
169  </tr>
170  </thead>
171  <tbody>
172  <?php
173  if ($action == 'without_details') {
174  $qty = GETPOST('qty', 'int') > 0 ? GETPOST('qty', 'int') : 1;
175  print '<tr>';
176  print '<td>' . GETPOST('label', 'alphanohtml') . '</td>';
177  print '<td class="right">' . $qty . '</td>';
178  print '<td class="right">' . price(price2num($object->total_ttc / $qty, 'MU'), 1) . '</td>';
179  if (!empty($conf->global->TAKEPOS_SHOW_HT_RECEIPT)) {
180  print '<td class="right">' . price($object->total_ht, 1) . '</td>';
181  }
182  print '<td class="right">' . price($object->total_ttc, 1) . '</td>';
183  print '</tr>';
184  } else {
185  foreach ($object->lines as $line) {
186  ?>
187  <tr>
188  <td>
189  <?php if (!empty($line->product_label)) {
190  echo $line->product_label;
191  } else {
192  echo $line->description;
193  } ?>
194  </td>
195  <td class="right"><?php echo $line->qty; ?></td>
196  <td class="right"><?php if ($gift != 1) {
197  echo price(price2num($line->total_ttc / $line->qty, 'MT'), 1);
198  } ?></td>
199  <?php
200  if (!empty($conf->global->TAKEPOS_SHOW_HT_RECEIPT)) { ?>
201  <td class="right"><?php if ($gift != 1) {
202  echo price($line->total_ht, 1);
203  } ?></td>
204  <?php
205  }
206  ?>
207  <td class="right"><?php if ($gift != 1) {
208  echo price($line->total_ttc, 1);
209  } ?></td>
210  </tr>
211  <?php
212  }
213  }
214  ?>
215  </tbody>
216 </table>
217 <br>
218 <table class="right">
219 <tr>
220  <th class="right"><?php if ($gift != 1) {
221  echo $langs->trans("TotalHT");
222  } ?></th>
223  <td class="right"><?php if ($gift != 1) {
224  echo price($object->total_ht, 1, '', 1, - 1, - 1, $conf->currency)."\n";
225  } ?></td>
226 </tr>
227 <?php if ($conf->global->TAKEPOS_TICKET_VAT_GROUPPED) {
228  $vat_groups = array();
229  foreach ($object->lines as $line) {
230  if (!array_key_exists($line->tva_tx, $vat_groups)) {
231  $vat_groups[$line->tva_tx] = 0;
232  }
233  $vat_groups[$line->tva_tx] += $line->total_tva;
234  }
235  foreach ($vat_groups as $key => $val) {
236  ?>
237  <tr>
238  <th align="right"><?php if ($gift != 1) {
239  echo $langs->trans("VAT").' '.vatrate($key, 1);
240  } ?></th>
241  <td align="right"><?php if ($gift != 1) {
242  echo price($val, 1, '', 1, - 1, - 1, $conf->currency)."\n";
243  } ?></td>
244  </tr>
245  <?php
246  }
247 } else { ?>
248 <tr>
249  <th class="right"><?php if ($gift != 1) {
250  echo $langs->trans("TotalVAT").'</th><td class="right">'.price($object->total_tva, 1, '', 1, - 1, - 1, $conf->currency)."\n";
251  } ?></td>
252 </tr>
253 <?php } ?>
254 <tr>
255  <th class="right"><?php if ($gift != 1) {
256  echo ''.$langs->trans("TotalTTC").'</th><td class="right">'.price($object->total_ttc, 1, '', 1, - 1, - 1, $conf->currency)."\n";
257  } ?></td>
258 </tr>
259 <?php
260 if (isModEnabled('multicurrency') && $_SESSION["takeposcustomercurrency"] != "" && $conf->currency != $_SESSION["takeposcustomercurrency"]) {
261  //Only show customer currency if multicurrency module is enabled, if currency selected and if this currency selected is not the same as main currency
262  include_once DOL_DOCUMENT_ROOT.'/multicurrency/class/multicurrency.class.php';
263  $multicurrency = new MultiCurrency($db);
264  $multicurrency->fetch(0, $_SESSION["takeposcustomercurrency"]);
265  echo '<tr><th class="right">';
266  if ($gift != 1) {
267  echo ''.$langs->trans("TotalTTC").' '.$_SESSION["takeposcustomercurrency"].'</th><td class="right">'.price($object->total_ttc * $multicurrency->rate->rate, 1, '', 1, - 1, - 1, $_SESSION["takeposcustomercurrency"])."\n";
268  }
269  echo '</td></tr>';
270 }
271 
272 if ($conf->global->TAKEPOS_PRINT_PAYMENT_METHOD) {
273  $sql = "SELECT p.pos_change as pos_change, p.datep as date, p.fk_paiement, p.num_paiement as num, pf.amount as amount, pf.multicurrency_amount,";
274  $sql .= " cp.code";
275  $sql .= " FROM ".MAIN_DB_PREFIX."paiement_facture as pf, ".MAIN_DB_PREFIX."paiement as p";
276  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as cp ON p.fk_paiement = cp.id";
277  $sql .= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = ".((int) $facid);
278  $sql .= " ORDER BY p.datep";
279  $resql = $db->query($sql);
280  if ($resql) {
281  $num = $db->num_rows($resql);
282  $i = 0;
283  while ($i < $num) {
284  $row = $db->fetch_object($resql);
285  echo '<tr>';
286  echo '<td class="right">';
287  echo $langs->transnoentitiesnoconv("PaymentTypeShort".$row->code);
288  echo '</td>';
289  echo '<td class="right">';
290  $amount_payment = (isModEnabled('multicurrency') && $object->multicurrency_tx != 1) ? $row->multicurrency_amount : $row->amount;
291  if ($row->code == "LIQ") {
292  $amount_payment = $amount_payment + $row->pos_change; // Show amount with excess received if is cash payment
293  }
294  echo price($amount_payment, 1, '', 1, - 1, - 1, $conf->currency);
295  echo '</td>';
296  echo '</tr>';
297  if ($row->code == "LIQ" && $row->pos_change > 0) { // Print change only in cash payments
298  echo '<tr>';
299  echo '<td class="right">';
300  echo $langs->trans("Change");
301  echo '</td>';
302  echo '<td class="right">';
303  echo price($row->pos_change, 1, '', 1, - 1, - 1, $conf->currency);
304  echo '</td>';
305  echo '</tr>';
306  }
307  $i++;
308  }
309  }
310 }
311 ?>
312 </table>
313 <div style="border-top-style: double;">
314 <br>
315 <br>
316 <br>
317 <?php
318 $constFreeText = 'TAKEPOS_FOOTER'.$_SESSION['takeposterminal'];
319 if (!empty($conf->global->TAKEPOS_FOOTER) || !empty($conf->global->{$constFreeText})) {
320  $newfreetext = '';
321  $substitutionarray = getCommonSubstitutionArray($langs);
322  if (!empty($conf->global->{$constFreeText})) {
323  $newfreetext .= make_substitutions($conf->global->{$constFreeText}, $substitutionarray);
324  }
325  if (!empty($conf->global->TAKEPOS_FOOTER)) {
326  $newfreetext .= make_substitutions($conf->global->TAKEPOS_FOOTER, $substitutionarray);
327  }
328  print $newfreetext;
329 }
330 ?>
331 
332 <script type="text/javascript">
333  <?php
334  if ($facid) print 'window.print();'; //Avoid print when is specimen
335  ?>
336 </script>
337 
338 </body>
339 </html>
Class to manage invoices.
const STATUS_DRAFT
Draft status.
Class Currency.
Class to manage third parties objects (customers, suppliers, prospects...)
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.
Definition: index.php:745
vatrate($rate, $addpercent=false, $info_bits=0, $usestarfornpr=0, $html=0)
Return a string with VAT rate label formated for view output Used into pdf and HTML pages.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getCommonSubstitutionArray($outputlangs, $onlykey=0, $exclude=null, $object=null)
Return array of possible common substitutions.
isModEnabled($module)
Is Dolibarr module enabled.
if(!defined( 'CSRFCHECK_WITH_TOKEN'))
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1436
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:119
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.