Bug 30139: Fix javascript moneyFormat to be compatible with FR format
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / pos / pay.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Branches %]
4 [% USE Koha %]
5 [% USE Price %]
6 [% USE TablesSettings %]
7 [% USE Registers %]
8 [% SET footerjs = 1 %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 [% SET registers = Registers.all( filters => { current_branch => 1 } ) %]
11 <title>Payments &rsaquo; Koha</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 </head>
14
15 <body id="payments" class="pos">
16 [% INCLUDE 'header.inc' %]
17 [% INCLUDE 'circ-search.inc' %]
18
19 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
20     <ol>
21         <li>
22             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
23         </li>
24         <li>
25             <a href="#" aria-current="page">
26                 Point of sale
27             </a>
28         </li>
29     </ol>
30 </nav>
31
32 <div class="main container-fluid">
33     <div class="row">
34         <div class="col-md-10 col-md-push-2">
35
36             <h1>Point of sale</h1>
37
38         [% IF ( registers.size == 0 ) %]
39             <div id="error_message" class="dialog message">
40                 <p>
41                     You must have at least one cash register associated with the library before you can record payments.
42                 </p>
43                 [% IF ( CAN_user_parameters_manage_cash_registers ) %]
44                     <form action="/cgi-bin/koha/admin/cash_registers.pl" method="get">
45                         <input type="hidden" name="op" value="add_form" />
46                         <button class="new" type="submit"><i class="fa fa-plus"></i> Create a new cash register</button>
47                     </form>
48                 [% END %]
49             </div>
50         [% ELSE %]
51
52         [% IF payment_id && !Koha.Preference('FinePaymentAutoPopup') %]
53         <div class="dialog alert audio-alert-action">
54             Payment received: <a target="_blank" href="/cgi-bin/koha/pos/printreceipt.pl?action=print&accountlines_id=[% payment_id | uri %]&collected=[% collected | uri %]&change=[% change | uri %]" class="btn btn-default btn-xs"><i class="fa fa-print"></i> Print receipt</a>
55         </div>
56         [% END %]
57
58         <form name="payForm" id="payForm" method="post" action="/cgi-bin/koha/pos/pay.pl">
59             <div class="row">
60
61                 <div class="col-md-6">
62                     <fieldset class="rows">
63                         <legend>Items for purchase</legend>
64                             Please select items from below to add to this transaction:
65                             [% IF invoice_types %]
66                             <table id="invoices">
67                             <thead>
68                                 <tr>
69                                     <th>Code</th>
70                                     <th>Description</th>
71                                     <th class="NoSort">Cost</th>
72                                     <th class="NoSort">Action</th>
73                                 </tr>
74                             </thead>
75                             <tbody>
76                             [% FOREACH invoice IN invoice_types %]
77                                 <tr>
78                                     <td>[% invoice.code | html %]</td>
79                                     <td>[% invoice.description | html %]</td>
80                                     <td>[% invoice.default_amount | $Price %]</td>
81                                     <td>
82                                         <button type="button" class="btn btn-default btn-xs add_button" data-invoice-code="[% invoice.code | html %]" data-invoice-title="[% invoice.description | html %]" data-invoice-price="[% invoice.default_amount | html %]"><i class="fa fa-plus"></i> Add</button>
83                                     </td>
84                                 </tr>
85                             [% END %]
86                             </table>
87                             [% ELSE %]
88                             You have no manual invoice types defined
89                             [% END %]
90                     </fieldset>
91                 </div>
92
93                 <div class="col-md-6">
94
95                     <fieldset class="rows">
96                         <legend>This sale</legend>
97                         <p>Click to edit item cost or quantities</p>
98                         <table id="sale" class="table_sale">
99                             <thead>
100                                 <tr>
101                                     <th>Item</th>
102                                     <th>Cost</th>
103                                     <th>Quantity</th>
104                                     <th>Total</th>
105                                     <th>Action</th>
106                                     <th>CODE</th>
107                                 </tr>
108                             </thead>
109                             <tbody>
110                             </tbody>
111                             <tfoot>
112                                 <tr>
113                                     <td colspan="3">Total payable:</td>
114                                     <td></td>
115                                     <td></td>
116                                     <td></td>
117                                 </tr>
118                             </tfoot>
119                         </table>
120                     </fieldset>
121
122                     <fieldset class="rows">
123                         <legend>Collect payment</legend>
124                         <ol>
125                             <li>
126                                 <label for="paid">Amount being paid: </label>
127                                 <input type="text" inputmode="none" pattern="[0-9]*" name="paid" id="paid" value="" readonly/>
128                             </li>
129                             <li>
130                                 <label for="collected" class="required">Amount tendered: </label>
131                                 <input type="text" inputmode="numeric" pattern="[0-9]*" name="collected" id="collected" value="" class="required" required="required" />
132                                 <span class="required">Required</span>
133                             </li>
134                             <li>
135                                 <label>Change to give: </label>
136                                 <span id="change">[% 0 | $Price %]</span>
137                                 <input type="hidden" name="change" value="[% 0 | $Price %]"/>
138                             </li>
139
140                             [% INCLUDE 'transaction_types.inc' type="payment" %]
141
142                             <li>
143                                 <label for="registerid" class="required">Cash register: </label>
144                                 <select name="registerid" id="registerid" class="required" required="required">
145                                     <option id="noregister" disabled selected="selected" value="">-- Select an option--</option>
146                                     [% PROCESS options_for_registers %]
147                                 </select>
148                                 <span class="required">Required</span>
149                             </li>
150                         </ol>
151
152                     </fieldset>
153
154                     <div class="action">
155                         <input type="submit" id="submitbutton" name="submitbutton" value="Confirm" />
156                         <a class="cancel" href="/cgi-bin/koha/pos/pay.pl">Cancel</a>
157                     </div>
158                 </div>
159             </div>
160         </form>
161         [% END %]
162     </div>
163
164     <div class="col-md-2 col-md-pull-10">
165         <aside>
166             [% INCLUDE 'pos-menu.inc' %]
167         </aside>
168     </div>
169 </div> <!-- /.row -->
170
171 <!-- Modal -->
172 <div id="confirm_change_form" class="modal" tabindex="-1" role="dialog" aria-hidden="true">
173     <div class="modal-dialog">
174         <div class="modal-content">
175             <div class="modal-header">
176                 <h3>The amount collected is more than the outstanding charge</h3>
177             </div>
178             <div class="modal-body">
179                 <p>The amount collected from the patron is higher than the amount to be paid.</p>
180                 <p>The change to give is <strong><span id="modal_change">[% 0 | $Price %]</span></strong>.</p>
181                 <p>Confirm this payment?</p>
182             </div>
183             <div class="modal-footer">
184                 <button class="btn btn-default approve" id="modal_submit" type="button"><i class="fa fa-check"></i> Yes</button>
185                 <button class="btn btn-default deny cancel" href="#" data-dismiss="modal" aria-hidden="true" type="button"><i class="fa fa-times"></i> No</button>
186             </div>
187         </div>
188     </div>
189 </div>
190
191 [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
192 <!-- Automatic Print Receipt -->
193       <a id="printReceipt" style="display: none" href="#"></a>
194 [% END %]
195
196 [% MACRO jsinclude BLOCK %]
197     [% INCLUDE 'format_price.inc' %]
198     [% INCLUDE 'datatables.inc' %]
199     [% INCLUDE 'columns_settings.inc' %]
200     [% Asset.js("lib/jquery/plugins/jquery.jeditable.mini.js") | $raw %]
201     <script>
202     function moneyFormat(textObj) {
203         var newValue = textObj.value;
204         var decAmount = "";
205         var dolAmount = "";
206         var dolFlag   = false;
207         var aChar     = "";
208
209         for(var i = newValue.length; 0 < i; i--) {
210             aChar = newValue.substring(i-1, i);
211             if ("0" <= aChar && aChar <= "9") {
212                 if(dolFlag) {
213                     dolAmount = "" + aChar + dolAmount;
214                 }
215                 else {
216                     decAmount = "" + aChar + decAmount;
217                 }
218             }
219             if (aChar == "." || aChar == ",") {
220                 dolFlag = true;
221             }
222         }
223
224         if (!dolFlag) {
225             dolAmount = decAmount;
226             decAmount = "";
227         }
228
229         if (dolAmount == "") {
230             dolAmount = "0";
231         }
232     // Strip leading 0s
233         if (dolAmount.length > 1) {
234             while(dolAmount.length > 1 && dolAmount.substring(0,1) == "0") {
235                 dolAmount = dolAmount.substring(1,dolAmount.length);
236             }
237         }
238         if (decAmount.length > 2) {
239             decAmount = decAmount.substring(0,2);
240         }
241     // Pad right side
242         if (decAmount.length == 1) {
243            decAmount = decAmount + "0";
244         }
245         if (decAmount.length == 0) {
246            decAmount = decAmount + "00";
247         }
248
249         textObj.value = dolAmount + "." + decAmount;
250     }
251
252     function fnClickAddRow( table, invoiceCode, invoiceTitle, invoicePrice ) {
253       var defaultPrice = { value: invoicePrice };
254       moneyFormat(defaultPrice);
255       table.fnAddData( [
256         invoiceTitle,
257         defaultPrice.value,
258         1,
259         null,
260         '<button class="btn btn-default btn-xs drop" type="button"><i class="fa fa-trash"></i> ' + _("Remove") + '</button>',
261         invoiceCode
262         ]
263       );
264     }
265
266     function updateChangeValues() {
267         var change = $('#change')[0];
268         var zero_formatted = "[% 0 | $Price %]";
269         change.innerHTML = Math.round(($('#collected')[0].value - $('#paid')[0].value) * 100) / 100;
270         if (change.innerHTML <= 0) {
271             var paid = $('#paid')[0];
272             moneyFormat(paid);
273             $('#collected').rules( "add", { min: Number(paid.value) });
274             change.innerHTML = zero_formatted;
275             $(':input[name="change"]').val(zero_formatted);
276         } else {
277             change.value = change.innerHTML;
278             moneyFormat(change);
279             change.innerHTML = change.value;
280             $(':input[name="change"]').val(change.value);
281         }
282
283         $('#modal_change').html(change.innerHTML);
284     }
285
286     $(document).ready(function() {
287         var sale_table = $("#sale").dataTable($.extend(true, {}, dataTablesDefaults, {
288             "bPaginate": false,
289             "bFilter": false,
290             "bInfo": false,
291             "aoColumnDefs": [{
292                 "aTargets": [-2],
293                 "bSortable": false,
294                 "bSearchable": false,
295             }, {
296                 "aTargets": [-3],
297                 "mRender": function ( data, type, full ) {
298                     var price = Number.parseFloat(data);
299                     return price.format_price();
300                 }
301             }, {
302                 "aTargets": [-5],
303                 "sClass" : "editable",
304             }, {
305                 "aTargets": [-4],
306                 "sClass" : "editable_int",
307             }, {
308                 "targets": [-1],
309                 "visible": false,
310                 "searchable": false
311             }],
312             "aaSorting": [],
313             "fnDrawCallback": function (oSettings) {
314                 var local = this;
315                 local.$('.editable').editable( function(value, settings) {
316                     var aPos = local.fnGetPosition( this );
317                     local.fnUpdate( value, aPos[0], aPos[1], true, false );
318                     return value;
319                 },{
320                     type    : 'text',
321                     pattern : "^\\d+(\.\\d{2})?$",
322                     onblur  : 'submit',
323                     width   : "8em",
324                     tooltip : _("Click to edit")
325                 });
326                 local.$('.editable_int').editable( function(value, settings) {
327                     var aPos = local.fnGetPosition( this );
328                     local.fnUpdate( value, aPos[0], aPos[1], true, false );
329                     return value;
330                 },{
331                     type    : 'text',
332                     pattern : "[0-9]*",
333                     onblur  : 'submit',
334                     width   : "4em",
335                     tooltip : _("Click to edit")
336                 });
337             },
338             "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
339                 var iTotal = aData[1] * aData[2];
340                 this.fnUpdate( iTotal, nRow, 3, false, false );
341             },
342             "fnFooterCallback": function(nFoot, aData, iStart, iEnd, aiDisplay) {
343                 var iTotalPrice = 0;
344                 for ( var i=0 ; i<aData.length ; i++ )
345                 {
346                     iTotalPrice += aData[i][3]*1;
347                 }
348                 iTotalPrice = iTotalPrice.format_price();
349                 nFoot.getElementsByTagName('td')[1].innerHTML = iTotalPrice;
350                 $('#paid').val(iTotalPrice);
351                 $('#paid').trigger('change');
352             },
353             "autoWidth": false
354         }));
355
356         $("#sale").on("click", "button.drop", function(){
357                 sale_table.DataTable().row($(this).parents('tr')).remove().draw(false);
358         });
359
360         var items_table_settings = [% TablesSettings.GetTableSettings('pos', 'pay', 'invoices', 'json') | $raw %];
361         var items_table = KohaTable("invoices", {
362                "sPaginationType": "full",
363                "aaSorting": [[ 0, "asc" ]],
364                "autoWidth": false
365         }, items_table_settings, false);
366
367         $("#invoices").on("click", ".add_button", function(e) {
368             e.preventDefault();
369             fnClickAddRow(sale_table, $( this ).data('invoiceCode'), $( this ).data('invoiceTitle'), $( this ).data('invoicePrice') );
370             if($('#invoices_filter').find('input[type=search]').val() !== ''){
371                 items_table.fnFilter( '' );
372             }
373         });
374
375         // Change calculation and modal
376         var change = $('#change')[0];
377         $("#paid, #collected").on("change",function() {
378             moneyFormat( this );
379             if (change != undefined) {
380                 updateChangeValues();
381             }
382         });
383
384         var checked = false;
385         $('#modal_submit').click(function() {
386             checked = true;
387             $('#payForm').submit();
388         });
389
390         $('#payForm').validate({
391             rules: {
392                 paid: {
393                     required: true
394                 },
395                 collected: {
396                     required: true
397                 },
398                 payment_type: {
399                     required: true
400                 },
401                 registerid: {
402                     required: true
403                 }
404             }
405         });
406
407         $('#payForm').submit(function(e){
408             // first, clear stale sales 'rows' from the payForm
409             if($('input[name="sales"]').length > 0) {
410                 $('input[name="sales"]').each(function() {
411                     $(this).remove();
412                 });
413             }
414
415             // now, process the current & fresh contents of the sale_table
416             if (change != undefined && change.innerHTML > 0.00 && !checked) {
417                 e.preventDefault();
418                 $("#confirm_change_form").modal("show");
419             } else {
420                 var rows = sale_table.fnGetData();
421                 rows.forEach(function (row, index) {
422                     var sale = {
423                         code: row[5],
424                         price: row[1],
425                         quantity: row[2]
426                     };
427                     $('<input>').attr({
428                         type: 'hidden',
429                         name: 'sales',
430                         value: JSON.stringify(sale)
431                     }).appendTo('#payForm');
432                 });
433                 return true;
434             }
435         });
436
437         [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
438             $("#printReceipt").click(function() {
439                 var win = window.open('/cgi-bin/koha/pos/printreceipt.pl?action=print&accountlines_id=[% payment_id | uri %]&collected=[% collected | uri %]&change=[% change | uri %]', '_blank');
440                 win.focus();
441             });
442             $("#printReceipt").click();
443         [% END %]
444     });
445     </script>
446 [% END %]
447
448 [% INCLUDE 'intranet-bottom.inc' %]