From f1f9d0b0cc4c3b5a8e31a4b4d2e1599a52038e22 Mon Sep 17 00:00:00 2001 From: Victor Grousset Date: Fri, 5 Jan 2018 15:03:38 +0100 Subject: [PATCH] Bug 19953: Record page: acquisition details: add column for invoice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test plan: 1. create a vendor with minimal info 2. create a basket with minimal info 3. add a item to the basket 4. close the basket 5. receive a shipment 6. on the "receipt summary" click on "receive" for the wanted item (it should be the only one) 7. items → receive? → tick this checkbox 8. save 9. click on "finish receiving" 10. Go to the record → Acquisition details 11. Apply this patch 12. Refresh the page 13. You should see the new column Signed-off-by: Séverine QUEUNE Signed-off-by: Séverine QUEUNE --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 3640a9c..90fd4d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -676,6 +676,7 @@ Vendor + Invoice Basket group Basket Order number @@ -694,6 +695,13 @@ [% END %] + [% IF (order.invoiceid) %] + + [% order.invoicenumber %] + [% END %] + + [% IF (order.basketgroupid) %] [% IF CAN_user_acquisition_group_manage %] [% order.groupname %] ([% order.basketgroupid %]) -- 2.7.4