Bug 23051: (follow-up) Add renewal feedback and move code to subroutines and test
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / pay.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE AuthorisedValues %]
5 [% USE Branches %]
6 [% USE Price %]
7 [% USE ColumnsSettings %]
8 [% USE KohaDates %]
9 [% SET footerjs = 1 %]
10 [% PROCESS 'accounts.inc' %]
11 [% INCLUDE 'doc-head-open.inc' %]
12 <title>Koha &rsaquo; Patrons &rsaquo; Make a payment for  [% patron.firstname | html %] [% patron.surname | html %]</title>
13 [% INCLUDE 'doc-head-close.inc' %]
14 </head>
15
16 <body id="pat_pay" class="pat">
17 [% INCLUDE 'header.inc' %]
18 [% INCLUDE 'patron-search.inc' %]
19
20 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Make a payment for [% patron.firstname | html %] [% patron.surname | html %]</div>
21
22 <div class="main container-fluid">
23     <div class="row">
24         <div class="col-sm-10 col-sm-push-2">
25             <main>
26
27 [% INCLUDE 'members-toolbar.inc' borrowernumber=patron.borrowernumber %]
28
29 <!-- The manual invoice and credit buttons -->
30 <div class="statictabs">
31 <ul>
32     <li><a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | uri %]">Transactions</a></li>
33     <li class="active"><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Make a payment</a></li>
34     <li><a href="/cgi-bin/koha/members/maninvoice.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Create manual invoice</a></li>
35     <li><a href="/cgi-bin/koha/members/mancredit.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Create manual credit</a></li>
36 </ul>
37 <div class="tabs-container">
38
39 [% IF ( accounts ) %]
40     <form action="/cgi-bin/koha/members/pay.pl" method="post" id="pay-fines-form">
41     <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
42 <p><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span></p>
43 [% INCLUDE 'renew_results.inc' renew_results=renew_results %]
44 <table id="finest">
45 <thead>
46 <tr>
47     <th class="NoSort">&nbsp;</th>
48     <th class="NoSort">Actions</th>
49     <th>Account type</th>
50     <th>Description</th>
51     <th class="title-string">Date</th>
52     <th>Barcode</th>
53     <th>Due date</th>
54     <th>Return date</th>
55     <th class="NoSort">Payment note</th>
56     <th>Amount</th>
57     <th>Amount outstanding</th>
58 </tr>
59 </thead>
60
61 <tbody>
62 [% FOREACH line IN accounts %]
63 <tr>
64     <td>
65     [% IF ( line.amountoutstanding > 0 ) %]
66         <input class="cb" type="checkbox" checked="checked" name="incl_par_[% line.accountlines_id | html %]" />
67     [% END %]
68     </td>
69     <td class="actions">
70     [% IF ( line.amountoutstanding > 0 ) %]
71         <button type="submit" class="btn btn-default btn-xs" name="pay_indiv_[% line.accountlines_id | html %]" value="Pay">Pay</button>
72         [% IF CAN_user_updatecharges_writeoff %]
73             <button type="submit" class="btn btn-default btn-xs" name="wo_indiv_[% line.accountlines_id | html %]" value="Write off">Write off</button>
74         [% END %]
75     [% END %]
76     <input type="hidden" name="itemnumber[% line.accountlines_id | html %]" value="[% line.itemnumber | html %]" />
77     <input type="hidden" name="description[% line.accountlines_id | html %]" value="[% line.description | html %]" />
78     <input type="hidden" name="debit_type_code[% line.accountlines_id | html %]" value="[% line.debit_type_code | html %]" />
79     <input type="hidden" name="amount[% line.accountlines_id | html %]" value="[% line.amount | html %]" />
80     <input type="hidden" name="accountlines_id[% line.accountlines_id | html %]" value="[% line.accountlines_id | html %]" />
81     <input type="hidden" name="amountoutstanding[% line.accountlines_id | html %]" value="[% line.amountoutstanding | html %]" />
82     <input type="hidden" name="borrowernumber[% line.accountlines_id | html %]" value="[% line.borrowernumber | html %]" />
83     </td>
84     <td>
85         [% PROCESS account_type_description account=line %]
86     </td>
87     <td>
88         [%- IF line.description %][% line.description | html %][% END %]
89         [% IF line.itemnumber %]([% line.item.biblio.title | html %])[% END %]
90     </td>
91     <td>
92         <span title="[% line.date | html %]">[% line.date | $KohaDates %]</span>
93     </td>
94     <td>
95         [% IF line.itemnumber %]
96             <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% line.itemnumber | uri %]&amp;biblionumber=[% line.item.biblionumber | uri %]#item[% line.itemnumber | uri %]">[% line.item.barcode | html %]</a>
97         [% END %]
98     </td>
99     <td>
100         [% IF line.issue_id %]
101             [% line.checkout.date_due | $KohaDates as_due_date => 1 %]
102         [% END %]
103     </td>
104     <td>
105         [% IF line.issue_id %]
106             [% line.checkout.returndate | $KohaDates with_hours => 1 %]
107         [% END %]
108     </td>
109     <td class="actions">
110         <a href="#" class="add-note" data-accountlines_id="[% line.accountlines_id | html %]"><i class="fa fa-plus"></i> Add note</a>
111         <span class="payment_note" id="payment_note_[% line.accountlines_id | html %]" style="display:none"><input type="text" size="10" name="payment_note_[% line.accountlines_id | html %]" value="" /> <a href="#" class="cancel-note"><i class="fa fa-remove"></i></a></span>
112     </td>
113     <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
114     <td class="debit" style="text-align: right;">[% line.amountoutstanding | $Price %]</td>
115 </tr>
116 [% END %]
117 </tbody>
118
119 <tfoot>
120     <tr>
121         <td class="total" colspan="10">Total due:</td>
122         <td style="text-align: right;">[% total | $Price %]</td>
123     </tr>
124     [% IF outstanding_credits.total_outstanding < 0 %]
125         <tr>
126             <td class="total" colspan="10">Outstanding credits could be applied: </td>
127             <td class="credit" style="text-align: right;"><button type="submit" id="apply_credits" name="apply_credits" value="apply_credits" class="btn btn-default btn-sm">Apply <strong class="credit">[% outstanding_credits.total_outstanding | $Price %]</strong></button></td>
128         </tr>
129         <tr>
130             <td class="total" colspan="10">Total due if credit applied:</td>
131             <td style="text-align: right;">[% total + outstanding_credits.total_outstanding | $Price %]</td>
132         </tr>
133     [% END %]
134 </tfoot>
135
136 </table>
137 <fieldset class="action">
138 <input type="submit" id="paycollect" name="paycollect"  value="Pay amount" class="submit" />
139 <input type="submit" id="payselected" name="payselected"  value="Pay selected" class="submit" />
140 [% IF CAN_user_updatecharges_writeoff %]<input type="submit" name="woall"  id="woall" value="Write off all" class="submit" />
141 <input type="submit" id="writeoff-selected" name="writeoff_selected"  value="Write off selected" class="submit" />[% END %]
142 <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a>
143 </fieldset>
144 </form>
145 [% ELSE %]
146     <p>[% patron.firstname | html %] [% patron.surname | html %] has no outstanding fines.</p>
147 [% END %]
148 </div></div>
149
150             </main>
151         </div> <!-- /.col-sm-10.col-sm-push-2 -->
152
153         <div class="col-sm-2 col-sm-pull-10">
154             <aside>
155                 [% INCLUDE 'circ-menu.inc' %]
156             </aside>
157         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
158      </div> <!-- /.row -->
159
160 [% MACRO jsinclude BLOCK %]
161     [% INCLUDE 'str/members-menu.inc' %]
162     [% Asset.js("js/members-menu.js") | $raw %]
163     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
164     [% INCLUDE 'datatables.inc' %]
165     [% INCLUDE 'columns_settings.inc' %]
166     <script>
167         function enableCheckboxActions(){
168             // Enable/disable controls if checkboxes are checked
169             var checkedBoxes = $("input.cb:checked");
170             if ($(checkedBoxes).size()) {
171               $("#payselected, #writeoff-selected").prop("disabled",false);
172             } else {
173               $("#payselected, #writeoff-selected").prop("disabled",true);
174             }
175         }
176         $(document).ready(function(){
177             [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
178                 window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id | html %]&change_given=[% change_given | html %]&borrowernumber=[% patron.borrowernumber | html %]', '_blank');
179             [% END %]
180
181             $('#pay-fines-form').preventDoubleFormSubmit();
182             $("#woall").click(function(event){
183                 var msg = _("Are you sure you want to write off %s in outstanding fines? This cannot be undone!").format( "[% total | $Price %]" );
184                 var answer = confirm(msg);
185                     if (!answer){
186                         event.preventDefault();
187                     }
188             });
189             $('#CheckAll').click(function(e){
190                 e.preventDefault();
191                 $("#finest").checkCheckboxes();
192                 enableCheckboxActions();
193                 return false;
194             });
195             $('#CheckNone').click(function(e){
196                 e.preventDefault();
197                 $("#finest").unCheckCheckboxes();
198                 enableCheckboxActions();
199                 return false;
200             });
201             $(".cb").change(function(){
202                 enableCheckboxActions();
203             });
204             enableCheckboxActions();
205             $(".add-note").on("click", function(e){
206                 e.preventDefault();
207                 $(this).hide();
208                 var accountlines_id = $(this).data("accountlines_id");
209                 $("#payment_note_" + accountlines_id ).show().find("input").focus();
210             });
211             $(".cancel-note").on("click", function(e){
212                 e.preventDefault();
213                 $(".payment_note").hide().find("input").val("");
214                 $(".add-note").show();
215             });
216
217             var columns_settings = [% ColumnsSettings.GetColumns('members', 'pay', 'pay-fines-table', 'json') | $raw %];
218             KohaTable("finest", {
219                 "columnDefs": [
220                     { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
221                     { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
222                     { "sType": "title-string", "aTargets" : [ "title-string" ] }
223                 ],
224                 "paging": false,
225                 'sorting': [[ 3, "asc" ]],
226                 "autoWidth": false
227             }, columns_settings );
228         });
229     </script>
230 [% END %]
231
232 [% INCLUDE 'intranet-bottom.inc' %]