@@ -, +, @@ billingdate - Search for an existing invoice - Show details - Changing shipping cost - Save - Verify the new amount is shown --- acqui/invoice.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/acqui/invoice.pl +++ a/acqui/invoice.pl @@ -84,8 +84,8 @@ elsif ( $op && $op eq 'mod' ) { ModInvoice( invoiceid => $invoiceid, invoicenumber => $invoicenumber, - shipmentdate => output_pref( { str => scalar $input->param('shipmentdate'), dateformat => 'iso', dateonly => 1 } ), - billingdate => output_pref( { str => scalar $input->param('billingdate'), dateformat => 'iso', dateonly => 1 } ), + shipmentdate => scalar output_pref( { str => scalar $input->param('shipmentdate'), dateformat => 'iso', dateonly => 1 } ), + billingdate => scalar output_pref( { str => scalar $input->param('billingdate'), dateformat => 'iso', dateonly => 1 } ), shipmentcost => $shipmentcost, shipmentcost_budgetid => $shipment_budget_id ); --