From: Bill Erickson Date: Fri, 20 Apr 2018 17:21:03 +0000 (-0400) Subject: JBAS-1634 Acq PO/Invoice search on identifiers X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9b39cb54ada5cdd3ddd2ddfb350d67b5c7b6a4cb;p=working%2FEvergreen.git JBAS-1634 Acq PO/Invoice search on identifiers Replace the canned searches for "Purchase Orders" and "Open Invoices" with searches for PO ID and invoice vendor invoice identifier. Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/web/js/ui/default/acq/search/unified.js b/Open-ILS/web/js/ui/default/acq/search/unified.js index cf5296379f..28da954855 100644 --- a/Open-ILS/web/js/ui/default/acq/search/unified.js +++ b/Open-ILS/web/js/ui/default/acq/search/unified.js @@ -924,8 +924,7 @@ function URIManager() { "po": { "search_object": { "acqpo": [ - {"ordering_agency": openils.User.user.ws_ou()}, - {"state": "on-order"} + {"id": ""} ] }, "half_search": true, @@ -950,8 +949,7 @@ function URIManager() { "inv": { "search_object": { "acqinv": [ - {"close_date": null, "__not":true}, - {"receiver": openils.User.user.ws_ou()} + {"inv_ident": ""} ] }, "half_search": true,