From f65b8307a97e8fa47770ad84eea1f85c9956d0fc Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Sat, 10 Apr 2021 15:48:17 +0000 Subject: [PATCH] Bug 28127: add transaction timestampt to register details tables To Test: -Enable POS and setup some registers -Make some transactions -Go to Point of Sale > Register details and look at the two tables, sales and past sales -No timestamp or transaction date -Apply patch and look again -See Tranactions dates in the Transaction column Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt index ed6e81ecb5..1760719e3f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt @@ -104,7 +104,7 @@ [% accountline.accountlines_id | html %] { "type": "credit", "identifier": "[%- accountline.credit_number | html -%]", "description": "[%- PROCESS account_type_description account=accountline -%] ([% AuthorisedValues.GetByCode( 'PAYMENT_TYPE', accountline.payment_type ) | html %])", "amount": "[% accountline.amount * -1 | $Price %]" } - + [% IF accountline.timestamp %][% accountline.timestamp | $KohaDates with_hours => 1 %][% END %] [%- PROCESS account_type_description account=credit.debit -%] [%- IF credit.debit.description -%] ([% credit.debit.description | html %])[%- END -%] @@ -193,7 +193,7 @@ [% accountline.accountlines_id | html %] { "type": "credit", "identifier": "[%- accountline.credit_number | html -%]", "description": "[%- PROCESS account_type_description account=accountline -%] ([% accountline.payment_type | html %])", "amount": "[% accountline.amount * -1 | $Price %]" } - + [% IF accountline.timestamp %][% accountline.timestamp | $KohaDates with_hours => 1 %][% END %] [%- PROCESS account_type_description account=credit.debit -%] [%- IF credit.debit.description -%] ([% credit.debit.description | html %])[%- END -%] -- 2.11.0