@@ -, +, @@ 1. Navigate to /cgi-bin/koha/pos/pay.pl 2. Add an item from 'items to purchase' 3. Under 'collect payment', click submit without altering the form 4. See 'This field is required.' 5. Now, fill a value in 'Amount tendered' that satisfies or exceeds 'Amount being paid' 6. The payment should succeed 7. Navigate to /cgi-bin/koha/pos/register.pl 8. See duplicate lines in Transactions 9. Apply patch --- koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt @@ -402,6 +402,14 @@ }); $('#payForm').submit(function(e){ + // first, clear stale sales 'rows' from the payForm + if($('input[name="sales"]').length > 0) { + $('input[name="sales"]').each(function() { + $(this).remove(); + }); + } + + // now, process the current & fresh contents of the sale_table if (change != undefined && change.innerHTML > 0.00 && !checked) { e.preventDefault(); $("#confirm_change_form").modal("show"); --