@@ -, +, @@ --- .../prog/en/modules/pos/register.tt | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt @@ -149,27 +149,27 @@ [% IF register.cashups %]

Older transactions

-
- Please select a date range to display transactions for: -
    -
  1. - - - - [% IF trange_t %] - - [% ELSE %] - - [% END %] - [% INCLUDE 'date-format.inc' %] -
  2. -
-
+
+ Please select a date range to display transactions for: +
    +
  1. + + + + [% IF trange_t %] + + [% ELSE %] + + [% END %] + [% INCLUDE 'date-format.inc' %] +
  2. +
+
-
- - -
+
+ + +
[% IF trange_f %] @@ -203,7 +203,7 @@ [% FOREACH credit IN accountline.credit_offsets %] [% IF credit.debit %] - [% accountline.accountlines_id %] + [% accountline.accountlines_id | html %] { "type": "credit", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" } [%- PROCESS account_type_description account=credit.debit -%] @@ -224,7 +224,7 @@ [% FOREACH debit IN accountline.debit_offsets %] [% IF debit.credit %] - [% accountline.accountlines_id %] + [% accountline.accountlines_id | html %] { "type": "debit", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" } [%- PROCESS account_type_description account=debit.credit -%] --