@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt @@ -27,7 +27,7 @@ [% IF payment_id && !Koha.Preference('FinePaymentAutoPopup') %]
- Payment recieved: Print receipt + Payment received: Print receipt
[% END %] @@ -180,8 +180,8 @@ [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %] - - + + [% END %] [% MACRO jsinclude BLOCK %] @@ -395,11 +395,11 @@ }); [% IF payment_id && Koha.Preference('FinePaymentAutoPopup') %] - $("#printReciept").click(function() { + $("#printReceipt").click(function() { var win = window.open('/cgi-bin/koha/pos/printreceipt.pl?action=print&accountlines_id=[% payment_id | uri %]&collected=[% collected | uri %]&change=[% change | uri %]', '_blank'); win.focus(); }); - $("#printReciept").click(); + $("#printReceipt").click(); [% END %] }); --