From a438808fdfa434d58a91ca7d8bb00d2682d6501a Mon Sep 17 00:00:00 2001 From: Jacek Ablewicz Date: Tue, 22 Jul 2014 17:57:01 +0200 Subject: [PATCH] Bug 12619 - Shipment date gets lost on finishing and/or editing the invoice To reproduce: - Create a new shipment, make sure to add a shipment date - Receive or not receive orders - Finish receiving with the button at the bottom of the page - Verify that shipment date is now empty To test: - reproduce the aforementioned issue - apply patch - confirm that the issue is no longer rerpoductible (= shipment date is not getting lost any longer), and that there are no apparent regresssions of any kind involving invoice shipment date entering and/or editing - sign off Signed-off-by: Aleisha --- acqui/invoice.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/acqui/invoice.pl b/acqui/invoice.pl index 9d5955c..33e5592 100755 --- a/acqui/invoice.pl +++ b/acqui/invoice.pl @@ -158,7 +158,7 @@ $template->param( invoicenumber => $details->{'invoicenumber'}, suppliername => $details->{'suppliername'}, booksellerid => $details->{'booksellerid'}, - datereceived => $details->{'datereceived'}, + shipmentdate => $details->{'shipmentdate'}, billingdate => $details->{'billingdate'}, invoiceclosedate => $details->{'closedate'}, shipmentcost => $details->{'shipmentcost'}, -- 1.7.2.5