From 4f7fb03098a032d3991fdd3cac363b7f2f9a157c Mon Sep 17 00:00:00 2001 From: Laura Escamilla Date: Fri, 21 Jul 2023 13:30:00 +0000 Subject: [PATCH] Bug 34340: Changed "Tendered" to the correct input id which is "Collected" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Must also apply bug 34332 - fixed a syntax error for the pos email template To test: 1. Configure your Koha to enable the point of sale system (i.e. enable syspref, set up a register, set up an item to sell). 2. Complete a transaction in the POS system. 3. Click on the “Email receipt” button next to the “Print receipt” option and enter an email address and confirm that the email is sent. 4. Check the “Tendered” field. It is showing up as 0.00 and not reflecting the actual amount that was tendered. 5. Apply patch 6. Repeat steps 2 & 3 7. The emailed receipt is now showing the correct tendered amount. 8. Sign off! Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- installer/data/mysql/en/mandatory/sample_notices.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/en/mandatory/sample_notices.yml b/installer/data/mysql/en/mandatory/sample_notices.yml index 3b0892188b..12cf2cd997 100644 --- a/installer/data/mysql/en/mandatory/sample_notices.yml +++ b/installer/data/mysql/en/mandatory/sample_notices.yml @@ -1722,7 +1722,7 @@ tables: - " " - " " - " Tendered: " - - " [% tendered | $Price %]" + - " [% collected | $Price %]" - " " - " " - " Change given:" -- 2.30.2