Bug 27796: (QA follow-up) Missing filters
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / pos / register.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE AuthorisedValues %]
6 [% USE Price %]
7 [% SET footerjs = 1 %]
8 [% PROCESS 'accounts.inc' %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>Koha &rsaquo; Cashup</title>
11 [% INCLUDE 'doc-head-close.inc' %]
12 [% Asset.css("lib/jquery/plugins/rowGroup/stylesheets/rowGroup.dataTables.min.css") | $raw %]
13 </head>
14
15 <body id="register" 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="/cgi-bin/koha/pos/pay.pl">Point of sale</a>
26         </li>
27         <li>
28             <a href="#" aria-current="page">
29                 Register details
30             </a>
31         </li>
32     </ol>
33 </nav>
34
35 <div class="main container-fluid">
36     <div class="row">
37         <div class="col-sm-10 col-sm-push-2">
38
39             [% IF ( error_registers ) %]
40                 <div id="error_message" class="dialog message">
41                     <p>
42                         You must have at least one cash register associated with the library before you can record payments.
43                     </p>
44                     [% IF ( CAN_user_parameters_manage_cash_registers ) %]
45                         <form action="/cgi-bin/koha/admin/cash_registers.pl" method="get">
46                             <input type="hidden" name="op" value="add_form" />
47                             <button class="new" type="submit"><i class="fa fa-plus"></i> Create a new cash register</button>
48                         </form>
49                     [% END %]
50                 </div>
51             [% ELSE %]
52
53             [% IF ( error_cashup_permission ) %]
54             <div id="error_message" class="dialog alert">
55                 You do not have permission to perform cashup actions.
56             </div>
57             [% END %]
58
59             [% IF ( error_refund_permission ) %]
60             <div id="error_message" class="dialog alert">
61                 You do not have permission to perform refund actions.
62             </div>
63             [% END %]
64
65             [% IF ( CAN_user_cash_management_cashup ) %]
66             <div id="toolbar" class="btn-toolbar">
67                 <button id="pos_cashup" type="button" class="btn btn-default" data-toggle="modal" data-target="#confirmCashupModal" ><i class="fa fa-money"></i> Record cashup</button>
68             </div>
69             [% END %]
70
71             <h1>Register transaction details for [% register.name | html %]</h1>
72
73             <h2>Summary</h2>
74             <ul>
75                 [% IF register.last_cashup %]
76                 <li>Last cashup: [% register.last_cashup.timestamp | $KohaDates with_hours => 1 %] (<a data-toggle="modal" data-cashup="[% register.last_cashup.id | html %]" data-register="[% register.description | html %]" href="#cashupSummaryModal" class="button">Summary</a>)</li>
77                 [% END %]
78                 <li>Float: [% register.starting_float | $Price %]</li>
79                 <li>Total income (cash): [% accountlines.credits_total * -1 | $Price %] ([% accountlines.credits_total(payment_type => 'CASH') * -1 | $Price %])</li>
80                 <li>Total outgoing (cash): [% accountlines.debits_total * -1 | $Price %] ([% accountlines.debits_total( payment_type => 'CASH') * -1 | $Price %])</li>
81                 <li>Total bankable: [% accountlines.total( payment_type => 'CASH') * -1 | $Price %]</li>
82             </ul>
83
84             [% IF register.last_cashup %]
85             <h2>Transactions since [% register.last_cashup.timestamp | $KohaDates with_hours => 1 %]</h2>
86             [% ELSE %]
87             <h2>Transactions to date</h2>
88             [% END %]
89             <table id="sales" class="table_sales">
90                 <thead>
91                     <th>ID</th>
92                     <th>DATA</th>
93                     <th>Transaction</th>
94                     <th>Description</th>
95                     <th>Price</th>
96                     <th>Total</th>
97                     <th class="noExport">Actions</th>
98                 </thead>
99                 <tbody>
100                     [% FOREACH accountline IN accountlines %]
101                         [% IF accountline.is_credit %]
102                             [% FOREACH credit IN accountline.credit_offsets %]
103                             [% IF credit.debit %]
104                             <tr>
105                                 <td>[% accountline.accountlines_id | html %]</td>
106                                 <td>{ "type": "credit", "identifier": "[%- accountline.credit_number | html -%]", "description": "[%- PROCESS account_type_description account=accountline -%] ([% AuthorisedValues.GetByCode( 'PAYMENT_TYPE', accountline.payment_type ) | html %])", "amount": "[% accountline.amount * -1 | $Price %]" }</td>
107                                 <td></td>
108                                 <td>
109                                     [%- PROCESS account_type_description account=credit.debit -%]
110                                     [%- IF credit.debit.description -%] ([% credit.debit.description | html %])[%- END -%]
111                                     [%- IF ( credit.debit.itemnumber ) -%] (<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% credit.debit.item.biblionumber | uri %]&amp;itemnumber=[% credit.debit.itemnumber | uri %]">[% credit.debit.item.biblio.title | html %]</a>)[%- END -%]
112                                 </td>
113                                 <td>[% credit.debit.amount | $Price %]</td>
114                                 <td></td>
115                                 <td>
116                                     [% IF CAN_user_cash_management_anonymous_refund && !(credit.debit.status == 'REFUNDED' ) %]
117                                     <button type="button" class="btn btn-default btn-xs" data-toggle="modal" data-target="#issueRefundModal" data-item="[%- PROCESS account_type_description account=credit.debit -%]" data-accountline="[% credit.debit.accountlines_id | html %]" data-amount="[% credit.debit.amount | $Price %]" data-amountoutstanding="[% credit.debit.amountoutstanding | $Price %]" data-member="[% credit.debit.borrowernumber | html %]"><i class="fa fa-money"></i> Issue refund</button>
118                                     [% ELSIF CAN_user_updatecharges_refund && !(credit.debit.status == 'REFUNDED') && credit.debit.borrowernumber %]
119                                     <button type="button" class="btn btn-default btn-xs" data-toggle="modal" data-target="#issueRefundModal" data-item="[%- PROCESS account_type_description account=credit.debit -%]" data-accountline="[% credit.debit.accountlines_id | html %]" data-amount="[% credit.debit.amount | $Price %]" data-amountoutstanding="[% credit.debit.amountoutstanding | $Price %]" data-member="[% credit.debit.borrowernumber | html %]"><i class="fa fa-money"></i> Issue refund</button>
120                                     [% END %]
121                                 </td>
122                             </tr>
123                             [% END %]
124                             [% END %]
125                         [% ELSE %]
126                             [% FOREACH debit IN accountline.debit_offsets %]
127                             [% IF debit.credit %]
128                             <tr>
129                                 <td>[% accountline.accountlines_id | html %]</td>
130                                 <td>{ "type": "debit", "identifier": "[%- accountline.credit_number | html -%]", "description": "[%- PROCESS account_type_description account=accountline -%] ([% AuthorisedValues.GetByCode( 'PAYMENT_TYPE', accountline.payment_type ) | html %])", "amount": "[% accountline.amount * -1 | $Price %]" }</td>
131                                 <td></td>
132                                 <td>[%- PROCESS account_type_description account=debit.credit -%]</td>
133                                 <td>
134                                     [%- IF debit.credit.description %][% debit.credit.description | html %][%- END -%]
135                                     [%- IF ( debit.credit.itemnumber ) -%] (<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% debit.credit.item.biblionumber | uri %]&amp;itemnumber=[% debit.credit.itemnumber | uri %]">[% debit.credit.item.biblio.title | html %]</a>)[%- END -%]
136                                 </td>
137                                 <td>[% debit.credit.amount | $Price %]</td>
138                                 <td></td>
139                             </tr>
140                             [% END %]
141                             [% END %]
142                         [% END %]
143                     [% END %]
144                 </tbody>
145                 <tfoot>
146                     <tr>
147                         <td colspan="5">Total income: </td>
148                         <td>[% accountlines.total * -1 | $Price %]</td>
149                         <td></td>
150                     </tr>
151                 </tfoot>
152             </table>
153             [% END %]
154
155             [% IF register.cashups %]
156             <h2>Older transactions</h2>
157             <form method="GET" action="/cgi-bin/koha/pos/register.pl">
158                 <fieldset class="rows">
159                     Please select a date range to display transactions for:
160                     <ol>
161                         <li>
162                             <label for="trange_f">From: </label>
163                             <input type="text" size="10" id="from" class="datepickerfrom" name="trange_f" value="[% trange_f | html %]"/>
164                             <label class="inline" for="trange_t">To: </label>
165                             <input type="text" size="10" id="to" class="datepickerto" name="trange_t" value="[% trange_t | html %]" />
166                             <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
167                         </li>
168                     </ol>
169                 </fieldset>
170
171                 <div class="action">
172                     <input type="hidden" name="registerid" value="[% register.id | html %]">
173                     <input type="submit" value="Display" />
174                 </div>
175             </form>
176
177             [% IF trange_f %]
178             <table id="past_sales" class="past_sales_table">
179                 <thead>
180                     <th>ID</th>
181                     <th>DATA</th>
182                     <th>Transaction</th>
183                     <th>Description</th>
184                     <th>Price</th>
185                     <th>Total</th>
186                     <th class="noExport">Actions</th>
187                 </thead>
188                 <tbody>
189                     [% FOREACH accountline IN past_accountlines %]
190                         [% IF accountline.is_credit %]
191                             [% FOREACH credit IN accountline.credit_offsets %]
192                             [% IF credit.debit %]
193                             <tr>
194                                 <td>[% accountline.accountlines_id | html %]</td>
195                                 <td>{ "type": "credit", "identifier": "[%- accountline.credit_number | html -%]", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" }</td>
196                                 <td></td>
197                                 <td>
198                                     [%- PROCESS account_type_description account=credit.debit -%]
199                                     [%- IF credit.debit.description -%] ([% credit.debit.description | html %])[%- END -%]
200                                     [%- IF ( credit.debit.itemnumber ) -%] (<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% credit.debit.item.biblionumber | uri %]&amp;itemnumber=[% credit.debit.itemnumber | uri %]">[% credit.debit.item.biblio.title | html %]</a>)[%- END -%]
201                                 </td>
202                                 <td>[% credit.debit.amount | $Price %]</td>
203                                 <td></td>
204                                 <td>
205                                     [% IF CAN_user_cash_management_refund_cash_registers && !(credit.debit.status == 'REFUNDED') && !(credit.debit.debit_type_code == 'PAYOUT') %]
206                                     <button type="button" class="btn btn-default btn-xs pos_refund" data-toggle="modal" data-target="#issueRefundModal" data-item="[%- PROCESS account_type_description account=credit.debit -%]" data-accountline="[% credit.debit.accountlines_id | html %]" data-amount="[% credit.debit.amount | $Price %]" data-amountoutstanding="[% credit.debit.amountoutstanding | $Price %]" data-member="[% credit.debit.borrowernumber | html %]"><i class="fa fa-money"></i> Issue refund</button>
207                                     [% END %]
208                                 </td>
209                             </tr>
210                             [% END %]
211                             [% END %]
212                         [% ELSE %]
213                             [% FOREACH debit IN accountline.debit_offsets %]
214                             [% IF debit.credit %]
215                             <tr>
216                                 <td>[% accountline.accountlines_id | html %]</td>
217                                 <td>{ "type": "debit", "identifier": "[%- accountline.credit_number | html -%]", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" }</td>
218                                 <td></td>
219                                 <td>[%- PROCESS account_type_description account=debit.credit -%]</td>
220                                 <td>[%- IF debit.credit.description %][% debit.credit.description | html %][% END %]
221         &nbsp;[% IF ( debit.credit.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% debit.credit.item.biblionumber | uri %]&amp;itemnumber=[% debit.credit.itemnumber | uri %]">[% debit.credit.item.biblio.title | html %]</a>[% END %]</td>
222                                 <td>[% debit.credit.amount | $Price %]</td>
223                                 <td></td>
224                             </tr>
225                             [% END %]
226                             [% END %]
227                         [% END %]
228                     [% END %]
229                 </tbody>
230                 <tfoot>
231                     <tr>
232                         <td colspan="5">Total income: </td>
233                         <td>[% past_accountlines.total * -1 | $Price %]</td>
234                         <td></td>
235                     </tr>
236                 </tfoot>
237             </table>
238             [% END %]
239
240             <hr/>
241             <h2>Cashup history</h2>
242             <table id="table_cashups">
243                 <thead>
244                     <tr>
245                         <th>Date</th>
246                         <th>Cashier</th>
247                         <th>Amount</th>
248                         <th data-class-name="actions">Actions</th>
249                     </tr>
250                 </thead>
251             </table>
252             [% END %]
253         </div>
254
255         <div class="col-sm-2 col-sm-pull-10">
256             <aside>
257                 [% INCLUDE 'pos-menu.inc' %]
258             </aside>
259         </div>
260     </div><!-- /.row -->
261
262     <!-- Confirm cashup modal -->
263     <div class="modal" id="confirmCashupModal" tabindex="-1" role="dialog" aria-labelledby="confirmCashupLabel">
264         <div class="modal-dialog" role="document">
265             <div class="modal-content">
266                 <div class="modal-header">
267                     <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
268                     <h4 class="modal-title" id="confirmCashupLabel">Confirm cashup of <em>[% register.description | html %]</em></h4>
269                 </div>
270                 <div class="modal-body">
271                     Please confirm that you have removed [% accountlines.total( payment_type => 'CASH') * -1 | $Price %] from the cash register and left a float of [% register.starting_float | $Price %].
272                 </div> <!-- /.modal-body -->
273                 <div class="modal-footer">
274                     <a href="/cgi-bin/koha/pos/register.pl?op=cashup" class="btn btn-default" id="pos_cashup_confirm">Confirm</a>
275                     <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
276                 </div> <!-- /.modal-footer -->
277             </div> <!-- /.modal-content -->
278         </div> <!-- /.modal-dialog -->
279     </div> <!-- /#confirmCashupModal -->
280
281     <!-- Issue refund modal -->
282     <div class="modal" id="issueRefundModal" tabindex="-1" role="dialog" aria-labelledby="issueRefundLabel">
283         <form id="refund_form" method="post" enctype="multipart/form-data" class="validated">
284             <input type="hidden" name="accountline" value="" id="refundline">
285             <div class="modal-dialog" role="document">
286                 <div class="modal-content">
287                     <div class="modal-header">
288                         <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
289                         <h4 class="modal-title" id="issueRefundLabel">Issue refund from <em>[% register.description | html %]</em></h4>
290                     </div>
291                     <div class="modal-body">
292                         <fieldset class="rows">
293                             <ol>
294                                 <li>
295                                     <span id="item" class="label">Item: </span><span></span>
296                                 </li>
297                                 <li>
298                                     <span id="paid" class="label">Amount paid: </span><span></span>
299                                 </li>
300                                 <li>
301                                     <label class="required" for="amount">Returned to patron: </label>
302                                     <input type="text" inputmode="decimal" pattern="^\d+(\.\d{2})?$" id="returned" name="amount" required="required">
303                                     <span class="required">Required</span>
304                                 </li>
305                                 [% INCLUDE 'transaction_types.inc' type="refund" %]
306                             </ol>
307                         </fieldset> <!-- /.rows -->
308                     </div> <!-- /.modal-body -->
309                     <div class="modal-footer">
310                         <input type="hidden" name="registerid" value="[% register.id | html %]">
311                         <input type="hidden" name="op" value="refund">
312                         <button type="submit" class="btn btn-default" id="pos_refund_confirm">Confirm</button>
313                         <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
314                     </div> <!-- /.modal-footer -->
315                 </div> <!-- /.modal-content -->
316             </div> <!-- /.modal-dialog -->
317         </form> <!-- /#refund_form -->
318     </div> <!-- /#issueRefundModal -->
319
320     [% INCLUDE 'modals/cashup_summary.inc' %]
321
322     [% MACRO jsinclude BLOCK %]
323     [% INCLUDE 'datatables.inc' %]
324     [% Asset.js("lib/jquery/plugins/rowGroup/dataTables.rowGroup.min.js") | $raw %]
325     [% Asset.js("js/cashup_modal.js") | $raw %]
326     [% INCLUDE 'calendar.inc' %]
327     [% INCLUDE 'js-date-format.inc' %]
328     <script>
329         var sales_table = $("#sales").dataTable($.extend(true, {}, dataTablesDefaults, {
330             orderFixed: [ 0, 'asc'],
331             columnDefs: [ {
332                 targets: [ 0, 1 ],
333                 visible: false
334             }],
335             rowGroup: {
336                 dataSrc: 0,
337                 startRender: function ( rows, group ) {
338                     var details = JSON.parse(rows.data().pluck(1).pop());
339                     var identifier = details.identifier || group;
340                     return $('<tr class="'+details.type+'"/>')
341                         .append( '<td>'+identifier+'</td>' )
342                         .append( '<td colspan="2">'+details.description+'</td>' )
343                         .append( '<td>'+details.amount+'</td>' )
344                         .append( '<td><button class="printReceipt btn btn-default btn-xs" data-accountline="'+group+'"><i class="fa fa-print"></i> ' + _("Print receipt") + '</button></td>');
345                 },
346                 endRender: null,
347             },
348             initComplete: function() {
349                 $("#sales").show();
350             }
351         }));
352
353         var past_sales_table = $("#past_sales").dataTable($.extend(true, {}, dataTablesDefaults, {
354             orderFixed: [ 0, 'asc'],
355             columnDefs: [ {
356                 targets: [ 0, 1 ],
357                 visible: false
358             }],
359             rowGroup: {
360                 dataSrc: 0,
361                 startRender: function ( rows, group ) {
362                     var details = JSON.parse(rows.data().pluck(1).pop());
363                     var identifier = details.identifier || group;
364                     return $('<tr class="'+details.type+'"/>')
365                         .append( '<td>'+identifier+'</td>' )
366                         .append( '<td colspan="2">'+details.description+'</td>' )
367                         .append( '<td>'+details.amount+'</td>' )
368                         .append( '<td><button class="printReceipt btn btn-default btn-xs" data-accountline="'+group+'"><i class="fa fa-print"></i> Print receipt</button></td>');
369                 },
370                 endRender: null,
371             }
372         }));
373
374         $("#issueRefundModal").on("shown.bs.modal", function(e){
375            var button = $(e.relatedTarget);
376            var item = button.data('item');
377            $("#item + span").replaceWith(item);
378            var accountline = button.data('accountline');
379            $('#refundline').val(accountline);
380            var amount = button.data('amount');
381            var amountoutstanding = button.data('amountoutstanding') || 0;
382            var paid = amount - amountoutstanding;
383            $("#paid + span").replaceWith(paid);
384            $("#returned").attr({ "value": paid, "max": paid });
385            var member = button.data('member');
386            if ( member === '' ) {
387                $("#refund_type option[value='AC']").remove();
388            } else if ( $("#refund_type option[value='AC']").length == 0 ) {
389                $("#refund_type").prepend('<option value="AC" selected="selected">Account credit</option>');
390            }
391            $("#returned, #refund_type").focus();
392         });
393
394         $(".printReceipt").click(function() {
395             var accountlines_id = $(this).data('accountline');
396             var win = window.open('/cgi-bin/koha/pos/printreceipt.pl?action=print&accountlines_id=' + accountlines_id, '_blank');
397             win.focus();
398         });
399
400         $('.modal.printable').on('shown.bs.modal', function() {
401             $('.modal-dialog', this).addClass('focused');
402             $('body').addClass('modalprinter');
403
404             if ($(this).hasClass('autoprint')) {
405                 window.print();
406             }
407         }).on('hidden.bs.modal', function () {
408             $('.modal-dialog', this).removeClass('focused');
409             $('body').removeClass('modalprinter');
410         });
411
412         $('.printModal').click(function() {
413             window.print();
414         });
415
416
417         var cashups_table_url = "/api/v1/cash_registers/[% register.id | html %]/cashups?";
418         var cashups_table = $("#table_cashups").api({
419             "ajax": {
420                 "url": cashups_table_url
421             },
422             "header_filter": true,
423             "embed": [
424                "manager"
425             ],
426             "order": [[ 0, "asc" ]],
427             "columns": [
428                 {
429                     "data": "timestamp",
430                     "searchable": true,
431                     "orderable": true,
432                     "render": function(data, type, row, meta) {
433                         return $datetime(row.timestamp);
434                     }
435                 },
436                 {
437                     "data": "manager.firstname:manager.surname",
438                     "searchable": true,
439                     "orderable": true,
440                     "render": function(data, type, row, meta) {
441                         var fullname;
442                         if ( row.manager.firstname == null ) {
443                             fullname = row.manager.surname;
444                         }
445                         else {
446                             fullname = row.manager.firstname + " " + row.manager.surname;
447                         }
448                         return escape_str(fullname);
449                     }
450                 },
451                 {
452                     "data": "amount",
453                     "searchable": true,
454                     "orderable": true,
455                     "render": function(data, type, row, meta) {
456                         var amt = row.amount * -1;
457                         return escape_price(amt);
458                     }
459                 },
460                 {
461                     "data": function( row, type, val, meta ) {
462                         var result = '<a class="btn btn-default btn-xs" role="button" data-toggle="modal" data-cashup="'+encodeURIComponent(row.cashup_id)+'" data-register="[% register.description | html %]" href="#cashupSummaryModal"><i class="fa fa-pencil" aria-hidden="true"></i> '+_("Summary")+'</a>\n';
463                         return result;
464                     },
465                     "searchable": false,
466                     "orderable": false
467                 }
468             ]
469         }, [], 1);
470
471         $(document).ready(function() {
472             // http://jqueryui.com/demos/datepicker/#date-range
473             var dates = $( "#from, #to" ).datepicker({
474                 changeMonth: true,
475                 numberOfMonths: 1,
476                 onSelect: function( selectedDate ) {
477                     var option = this.id == "from" ? "minDate" : "maxDate",
478                         instance = $( this ).data( "datepicker" );
479                         date = $.datepicker.parseDate(
480                             instance.settings.dateFormat ||
481                             $.datepicker._defaults.dateFormat,
482                             selectedDate, instance.settings );
483                     dates.not( this ).datepicker( "option", option, date );
484                 }
485             });
486         });
487     </script>
488 [% END %]
489
490 [% INCLUDE 'intranet-bottom.inc' %]