Bug 27631: offline_circ, patroncards, plugins, pos, reserve, rotating_collections...
[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 decFlag   = false;
207         var aChar     = "";
208
209         for(var i=0; i < newValue.length; i++) {
210             aChar = newValue.substring(i, i+1);
211             if (aChar >= "0" && aChar <= "9") {
212                 if(decFlag) {
213                     decAmount = "" + decAmount + aChar;
214                 }
215                 else {
216                     dolAmount = "" + dolAmount + aChar;
217                 }
218             }
219             if (aChar == ".") {
220                 if (decFlag) {
221                     dolAmount = "";
222                     break;
223                 }
224                 decFlag = true;
225             }
226         }
227
228         if (dolAmount == "") {
229             dolAmount = "0";
230         }
231     // Strip leading 0s
232         if (dolAmount.length > 1) {
233             while(dolAmount.length > 1 && dolAmount.substring(0,1) == "0") {
234                 dolAmount = dolAmount.substring(1,dolAmount.length);
235             }
236         }
237         if (decAmount.length > 2) {
238             decAmount = decAmount.substring(0,2);
239         }
240     // Pad right side
241         if (decAmount.length == 1) {
242            decAmount = decAmount + "0";
243         }
244         if (decAmount.length == 0) {
245            decAmount = decAmount + "00";
246         }
247
248         textObj.value = dolAmount + "." + decAmount;
249     }
250
251     function fnClickAddRow( table, invoiceCode, invoiceTitle, invoicePrice ) {
252       var defaultPrice = { value: invoicePrice };
253       moneyFormat(defaultPrice);
254       table.fnAddData( [
255         invoiceTitle,
256         defaultPrice.value,
257         1,
258         null,
259         '<button class="btn btn-default btn-xs drop" type="button"><i class="fa fa-trash"></i> ' + _("Remove") + '</button>',
260         invoiceCode
261         ]
262       );
263     }
264
265     function updateChangeValues() {
266         var change = $('#change')[0];
267         var zero_formatted = "[% 0 | $Price %]";
268         change.innerHTML = Math.round(($('#collected')[0].value - $('#paid')[0].value) * 100) / 100;
269         if (change.innerHTML <= 0) {
270             var paid = $('#paid')[0];
271             moneyFormat(paid);
272             $('#collected').rules( "add", { min: Number(paid.value) });
273             change.innerHTML = zero_formatted;
274             $(':input[name="change"]').val(zero_formatted);
275         } else {
276             change.value = change.innerHTML;
277             moneyFormat(change);
278             change.innerHTML = change.value;
279             $(':input[name="change"]').val(change.value);
280         }
281
282         $('#modal_change').html(change.innerHTML);
283     }
284
285     $(document).ready(function() {
286         var sale_table = $("#sale").dataTable($.extend(true, {}, dataTablesDefaults, {
287             "bPaginate": false,
288             "bFilter": false,
289             "bInfo": false,
290             "aoColumnDefs": [{
291                 "aTargets": [-2],
292                 "bSortable": false,
293                 "bSearchable": false,
294             }, {
295                 "aTargets": [-3],
296                 "mRender": function ( data, type, full ) {
297                     var price = Number.parseFloat(data);
298                     return price.format_price();
299                 }
300             }, {
301                 "aTargets": [-5],
302                 "sClass" : "editable",
303             }, {
304                 "aTargets": [-4],
305                 "sClass" : "editable_int",
306             }, {
307                 "targets": [-1],
308                 "visible": false,
309                 "searchable": false
310             }],
311             "aaSorting": [],
312             "fnDrawCallback": function (oSettings) {
313                 var local = this;
314                 local.$('.editable').editable( function(value, settings) {
315                     var aPos = local.fnGetPosition( this );
316                     local.fnUpdate( value, aPos[0], aPos[1], true, false );
317                     return value;
318                 },{
319                     type    : 'text',
320                     pattern : "^\\d+(\.\\d{2})?$",
321                     onblur  : 'submit',
322                     width   : "8em",
323                     tooltip : _("Click to edit")
324                 });
325                 local.$('.editable_int').editable( function(value, settings) {
326                     var aPos = local.fnGetPosition( this );
327                     local.fnUpdate( value, aPos[0], aPos[1], true, false );
328                     return value;
329                 },{
330                     type    : 'text',
331                     pattern : "[0-9]*",
332                     onblur  : 'submit',
333                     width   : "4em",
334                     tooltip : _("Click to edit")
335                 });
336             },
337             "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
338                 var iTotal = aData[1] * aData[2];
339                 this.fnUpdate( iTotal, nRow, 3, false, false );
340             },
341             "fnFooterCallback": function(nFoot, aData, iStart, iEnd, aiDisplay) {
342                 var iTotalPrice = 0;
343                 for ( var i=0 ; i<aData.length ; i++ )
344                 {
345                     iTotalPrice += aData[i][3]*1;
346                 }
347                 iTotalPrice = iTotalPrice.format_price();
348                 nFoot.getElementsByTagName('td')[1].innerHTML = iTotalPrice;
349                 $('#paid').val(iTotalPrice);
350                 $('#paid').trigger('change');
351             },
352             "autoWidth": false
353         }));
354
355         $("#sale").on("click", "button.drop", function(){
356                 sale_table.DataTable().row($(this).parents('tr')).remove().draw(false);
357         });
358
359         var items_columns_settings = [% TablesSettings.GetColumns('pos', 'pay', 'invoices', 'json') | $raw %];
360         var items_table = KohaTable("invoices", {
361                "sPaginationType": "full",
362                "aaSorting": [[ 0, "asc" ]],
363                "autoWidth": false
364         }, items_columns_settings, false);
365
366         $("#invoices").on("click", ".add_button", function(e) {
367             e.preventDefault();
368             fnClickAddRow(sale_table, $( this ).data('invoiceCode'), $( this ).data('invoiceTitle'), $( this ).data('invoicePrice') );
369             if($('#invoices_filter').find('input[type=search]').val() !== ''){
370                 items_table.fnFilter( '' );
371             }
372         });
373
374         // Change calculation and modal
375         var change = $('#change')[0];
376         $("#paid, #collected").on("change",function() {
377             moneyFormat( this );
378             if (change != undefined) {
379                 updateChangeValues();
380             }
381         });
382
383         var checked = false;
384         $('#modal_submit').click(function() {
385             checked = true;
386             $('#payForm').submit();
387         });
388
389         $('#payForm').validate({
390             rules: {
391                 paid: {
392                     required: true
393                 },
394                 collected: {
395                     required: true
396                 },
397                 payment_type: {
398                     required: true
399                 },
400                 registerid: {
401                     required: true
402                 }
403             }
404         });
405
406         $('#payForm').submit(function(e){
407             // first, clear stale sales 'rows' from the payForm
408             if($('input[name="sales"]').length > 0) {
409                 $('input[name="sales"]').each(function() {
410                     $(this).remove();
411                 });
412             }
413
414             // now, process the current & fresh contents of the sale_table
415             if (change != undefined && change.innerHTML > 0.00 && !checked) {
416                 e.preventDefault();
417                 $("#confirm_change_form").modal("show");
418             } else {
419                 var rows = sale_table.fnGetData();
420                 rows.forEach(function (row, index) {
421                     var sale = {
422                         code: row[5],
423                         price: row[1],
424                         quantity: row[2]
425                     };
426                     $('<input>').attr({
427                         type: 'hidden',
428                         name: 'sales',
429                         value: JSON.stringify(sale)
430                     }).appendTo('#payForm');
431                 });
432                 return true;
433             }
434         });
435
436         [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
437             $("#printReceipt").click(function() {
438                 var win = window.open('/cgi-bin/koha/pos/printreceipt.pl?action=print&accountlines_id=[% payment_id | uri %]&collected=[% collected | uri %]&change=[% change | uri %]', '_blank');
439                 win.focus();
440             });
441             $("#printReceipt").click();
442         [% END %]
443     });
444     </script>
445 [% END %]
446
447 [% INCLUDE 'intranet-bottom.inc' %]