From: Kathy Lussier Date: Wed, 29 Jan 2014 22:07:29 +0000 (-0500) Subject: LP#1115599: Allow cancelled lineitems to be received and invoiced X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=834091dcdf59e6011239212a443969550855e027;p=evergreen%2Fpines.git 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 --- 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() {