@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt @@ -80,7 +80,7 @@ [% 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 %]" } @@ -104,7 +104,7 @@ [% 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 %]" } --