View | Details | Raw Unified | Return to bug 23228
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +1 lines)
Lines 121-127 Link Here
121
    <script>
121
    <script>
122
        $(document).ready(function() {
122
        $(document).ready(function() {
123
            [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
123
            [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
124
                window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id %]&borrowernumber=[% patron.borrowernumber %]', '_blank');
124
                window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id | html %]&borrowernumber=[% patron.borrowernumber | html %]', '_blank');
125
            [% END %]
125
            [% END %]
126
126
127
            var txtActivefilter = _("Filter paid transactions");
127
            var txtActivefilter = _("Filter paid transactions");
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-1 / +1 lines)
Lines 180-186 Link Here
180
        }
180
        }
181
        $(document).ready(function(){
181
        $(document).ready(function(){
182
            [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
182
            [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
183
                window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id %]&borrowernumber=[% patron.borrowernumber %]', '_blank');
183
                window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id | html %]&borrowernumber=[% patron.borrowernumber | html %]', '_blank');
184
            [% END %]
184
            [% END %]
185
185
186
            $('#pay-fines-form').preventDoubleFormSubmit();
186
            $('#pay-fines-form').preventDoubleFormSubmit();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-2 / +1 lines)
Lines 278-284 Link Here
278
    <script>
278
    <script>
279
        $(document).ready(function() {
279
        $(document).ready(function() {
280
            [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
280
            [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %]
281
                window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id %]&borrowernumber=[% patron.borrowernumber %]', '_blank');
281
                window.open('/cgi-bin/koha/members/printfeercpt.pl?action=print&accountlines_id=[% payment_id | html %]&borrowernumber=[% patron.borrowernumber | html %]', '_blank');
282
            [% END %]
282
            [% END %]
283
283
284
            var forms = $('#payindivfine, #payfine');
284
            var forms = $('#payindivfine, #payfine');
285
- 

Return to bug 23228