From 834091dcdf59e6011239212a443969550855e027 Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Wed, 29 Jan 2014 17:07:29 -0500 Subject: [PATCH] LP#1115599: Allow cancelled lineitems to be received and invoiced Acquisitions staff need to be able to receive and invoice cancelled items, particularly when those items are backordered. This branch restores the ability to perform these actions on cancelled lineitems from the PO screen. Signed-off-by: Kathy Lussier Signed-off-by: Bill Erickson Signed-off-by: Galen Charlton --- Open-ILS/web/js/ui/default/acq/common/li_table.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/default/acq/common/li_table.js b/Open-ILS/web/js/ui/default/acq/common/li_table.js index b462eed887..226353470d 100644 --- a/Open-ILS/web/js/ui/default/acq/common/li_table.js +++ b/Open-ILS/web/js/ui/default/acq/common/li_table.js @@ -52,8 +52,7 @@ var fundStyles = { * Is this all of 'em? */ var li_pre_po_states = ["new", "selector-ready", "order-ready", "approved"]; -var li_post_po_states = ["pending-order", "on-order", "received"]; -// i.e. not-canceled ("cancelled") lineitems +var li_post_po_states = ["pending-order", "on-order", "received", "cancelled"]; var li_active_states = li_pre_po_states.concat(li_post_po_states); function AcqLiTable() { -- 2.43.2