From: Bill Erickson Date: Wed, 29 Oct 2014 21:10:22 +0000 (-0400) Subject: KMAIN 1347: Switched PO and LI values as per card instructions X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7ae5323cdae1623f7e85fbe9432a38e221bba03c;p=working%2FEvergreen.git KMAIN 1347: Switched PO and LI values as per card instructions Cross-port: 1f94bdd --- diff --git a/Open-ILS/xul/staff_client/server/cat/update_items.js b/Open-ILS/xul/staff_client/server/cat/update_items.js index c6faead43b..5a3fee1ca6 100644 --- a/Open-ILS/xul/staff_client/server/cat/update_items.js +++ b/Open-ILS/xul/staff_client/server/cat/update_items.js @@ -5,8 +5,8 @@ const rel_vert_pos_copy_count = 3; const rel_vert_pos_barcode = 4; const rel_vert_pos_copy_note = 5; const update_timer = 1000; -const call_number_width = 140; -const barcode_width = 140; +const call_number_width = 145; +const barcode_width = 145; const status_width = 90; var g = {}; g.use_defaults = true; @@ -1514,7 +1514,7 @@ g.render_lineitem_dropdown = function() { var po = g.lineitem_list[i][1]; var li = g.lineitem_list[i][0]; - var li_string = "Li:"+li+" PO:"+po; + var li_string = "PO: "+po+" / LI: "+li; var item = menulist.appendItem( li_string, i ); }