]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/acq/common/li_table.js
ACQ return-to-[search/invoice] buttons repair
[Evergreen.git] / Open-ILS / web / js / ui / default / acq / common / li_table.js
1 dojo.require('dojo.date.locale');
2 dojo.require('dojo.date.stamp');
3 dojo.require('dijit.form.Button');
4 dojo.require('dijit.form.TextBox');
5 dojo.require('dijit.form.FilteringSelect');
6 dojo.require('dijit.form.Textarea');
7 dojo.require('dijit.Tooltip');
8 dojo.require('dijit.ProgressBar');
9 dojo.require('openils.acq.Lineitem');
10 dojo.require('openils.acq.PO');
11 dojo.require('openils.acq.Picklist');
12 dojo.require('openils.widget.AutoFieldWidget');
13 dojo.require('dojo.data.ItemFileReadStore');
14 dojo.require('openils.widget.ProgressDialog');
15 dojo.require('openils.PermaCrud');
16 dojo.require("openils.widget.PCrudAutocompleteBox");
17 dojo.require('openils.CGI');
18
19 if (!localeStrings) {   /* we can do this because javascript doesn't have block scope */
20     dojo.requireLocalization('openils.acq', 'acq');
21     var localeStrings = dojo.i18n.getLocalization('openils.acq', 'acq');
22 }
23 const XUL_OPAC_WRAPPER = 'chrome://open_ils_staff_client/content/cat/opac.xul';
24 var li_exportable_attrs = ["issn", "isbn", "upc"];
25
26 var fundLabelFormat = [
27     '<span class="fund_${0}">${1} (${2})</span>', 'id', 'code', 'year'
28 ];
29 var fundSearchFormat = ['${0} (${1})', 'code', 'year'];
30
31 function nodeByName(name, context) {
32     return dojo.query('[name='+name+']', context)[0];
33 }
34
35 // for caching linked users.  e.g. lineitem_detail.receiver
36 var userCache = {};
37
38 var liDetailBatchFields = ['fund', 'owning_lib', 'location', 'collection_code', 'circ_modifier', 'cn_label'];
39 var liDetailFields = liDetailBatchFields.concat(['barcode', 'note']);
40 var fundStyles = {
41     "stop": "color: #c00; font-weight: bold;",
42     "warning": "color: #c93;"
43 };
44
45 function AcqLiTable() {
46
47     var self = this;
48     this.liCache = {};
49     this.plCache = {};
50     this.poCache = {};
51     this.relCache = {};
52     this.haveFundClass = {}
53     this.fundBalanceState = {};
54     this.realDfaCache = {};
55     this.virtDfaCounts = {};
56     this.virtDfaId = -1;
57     this.dfeOffset = 0;
58     this.claimEligibleLidByLi = {};
59     this.claimEligibleLid = {};
60     this.toggleState = false;
61     this.tbody = dojo.byId('acq-lit-tbody');
62     this.selectors = [];
63     this.noteAcks = {};
64     this.authtoken = openils.User.authtoken;
65     this.pcrud = new openils.PermaCrud();
66     this.rowTemplate = this.tbody.removeChild(dojo.byId('acq-lit-row'));
67     this.copyTbody = dojo.byId('acq-lit-li-details-tbody');
68     this.copyRow = this.copyTbody.removeChild(dojo.byId('acq-lit-li-details-row'));
69     this.copyBatchRow = dojo.byId('acq-lit-li-details-batch-row');
70     this.copyBatchWidgets = {};
71     this.liNotesTbody = dojo.byId('acq-lit-notes-tbody');
72     this.liNotesRow = this.liNotesTbody.removeChild(dojo.byId('acq-lit-notes-row'));
73     this.realCopiesTbody = dojo.byId('acq-lit-real-copies-tbody');
74     this.realCopiesRow = this.realCopiesTbody.removeChild(dojo.byId('acq-lit-real-copies-row'));
75     this._copy_fields_for_acqdf = ['owning_lib', 'location'];
76     this.skipInitialEligibilityCheck = false;
77     this.claimDialog = new ClaimDialogManager(
78         liClaimDialog, finalClaimDialog, this.claimEligibleLidByLi,
79         function(li) {    /* callback that fires when claims are made */
80             self.fetchClaimInfo(li.id(), /* force update */ true);
81         }
82     );
83     this.vlAgent = new VLAgent();
84
85     this.focusLineitem = new openils.CGI().param('focus_li');
86
87     dojo.byId("acq-lit-li-actions-selector").onchange = function() { 
88         self.applySelectedLiAction(this.options[this.selectedIndex].value);
89         this.selectedIndex = 0;
90     };
91
92     acqLitCreatePoSubmit.onClick = function() {
93         if (!self.createPoProviderSelector.attr("value") ||
94                 !self.createPoAgencySelector.attr("value")) {
95             alert(localeStrings.CREATE_PO_INVALID);
96             return false;
97         } else if (self._confirmPoPrepaySituation()) {
98             acqLitPoCreateDialog.hide();
99             self._createPO(acqLitPoCreateDialog.getValues());
100         } else {
101             return false;
102         }
103     }
104
105     acqLitSavePlButton.onClick = function() {
106         acqLitSavePlDialog.hide();
107         self._savePl(acqLitSavePlDialog.getValues());
108     }
109
110     acqLitCancelLiStateButton.onClick = function() {
111         acqLitChangeLiStateDialog.hide();
112     }
113     acqLitSaveLiStateButton.onClick = function() {
114         acqLitChangeLiStateDialog.hide();
115         self._updateLiState(acqLitChangeLiStateDialog.getValues(), acqLitChangeLiStateDialog.attr('state'));
116     }
117
118
119     dojo.byId('acq-lit-select-toggle').onclick = function(){self.toggleSelect()};
120     dojo.byId('acq-lit-info-back-button').onclick = function(){self.show('list')};
121     dojo.byId('acq-lit-copies-back-button').onclick = function(){self.show('list')};
122     dojo.byId('acq-lit-notes-back-button').onclick = function(){self.show('list')};
123     dojo.byId('acq-lit-real-copies-back-button').onclick = function(){self.show('list')};
124
125     this.reset = function(keep_selectors) {
126         while(self.tbody.childNodes[0])
127             self.tbody.removeChild(self.tbody.childNodes[0]);
128         self.noteAcks = {};
129         self.relCache = {};
130
131         if (!keep_selectors)
132             self.selectors = [];
133     };
134     
135     this.setNext = function(handler) {
136         var link = dojo.byId('acq-lit-next');
137         if(handler) {
138             dojo.style(link, 'visibility', 'visible');
139             link.onclick = handler;
140         } else {
141             dojo.style(link, 'visibility', 'hidden');
142         }
143     };
144
145     this.setPrev = function(handler) {
146         var link = dojo.byId('acq-lit-prev');
147         if(handler) {
148             dojo.style(link, 'visibility', 'visible'); 
149             link.onclick = handler; 
150         } else {
151             dojo.style(link, 'visibility', 'hidden');
152         }
153     };
154
155     /*
156      * Ensures this.focusLineitem is in view and causes a brief 
157      * border around the lineitem to come to life then fade.
158      */
159     this.focusLi = function() {
160         if (!this.focusLineitem) return;
161
162         // set during addLineitem()
163         var node = dojo.byId('li-title-ref-' + this.focusLineitem);
164
165         // LI may not yet be rendered
166         if (!node) return; 
167
168         // prevent numerous re-focuses
169         this.focusLineitem = null; 
170         
171         // causes the full row to be visible
172         dijit.scrollIntoView(node);
173
174         // may as well..
175         dojo.query('[attr=title]', node)[0].focus();
176
177         dojo.require('dojox.fx');
178
179         setTimeout(
180             function() {
181                 dojox.fx.highlight({color : '#BB4433', node : node, duration : 2000}).play();
182             }, 
183         100);
184     };
185
186     this.show = function(div) {
187         openils.Util.hide('acq-lit-table-div');
188         openils.Util.hide('acq-lit-info-div');
189         openils.Util.hide('acq-lit-li-details');
190         openils.Util.hide('acq-lit-notes-div');
191         openils.Util.hide('acq-lit-real-copies-div');
192         openils.Util.hide('acq-lit-asset-creator');
193         switch(div) {
194             case 'list':
195                 openils.Util.show('acq-lit-table-div');
196                 this.focusLi();
197                 break;
198             case 'info':
199                 openils.Util.show('acq-lit-info-div');
200                 break;
201             case 'copies':
202                 openils.Util.show('acq-lit-li-details');
203                 break;
204             case 'real-copies':
205                 openils.Util.show('acq-lit-real-copies-div');
206                 break;
207             case 'notes':
208                 openils.Util.show('acq-lit-notes-div');
209                 break;
210             case 'asset-creator':
211                 openils.Util.show('acq-lit-asset-creator');
212                 break;
213             default:
214                 if(div) 
215                     openils.Util.show(div);
216         }
217     }
218
219     this.hide = function() {
220         this.show(null);
221     }
222
223     this.toggleSelect = function() {
224         if(self.toggleState) 
225             dojo.forEach(self.selectors, function(i){i.checked = false});
226         else 
227             dojo.forEach(self.selectors, function(i){i.checked = true});
228         self.toggleState = !self.toggleState;
229     };
230
231
232     this.getAll = function(callback, id_only) {
233         /* For some uses of the li table, we may not really know about "all"
234          * the lineitems that the user thinks we know about. If we're a paged
235          * picklist, for example, we only know about the lineitems we've
236          * displayed, but not necessarily all the lineitems on the picklist.
237          * So we reach out to pcrud to inform us.
238          */
239
240         var oncomplete = function(r) {
241             var id_list = openils.Util.readResponse(r);
242             if (id_only)
243                 callback(id_list);
244             else
245                 self.fetchLineitemsById(id_list, callback);
246         };
247
248         if (this.isPL) {
249             this.pcrud.search(
250                 "jub", {"picklist": this.isPL}, {
251                     "id_list": true,    /* sic, even if id_only */
252                     "async": true,
253                     "oncomplete": oncomplete
254                 }
255             );
256             return;
257         } else if (this.isPO) {
258             this.pcrud.search(
259                 "jub", {"purchase_order": this.isPO}, {
260                     "id_list": true,
261                     "async": true,
262                     "oncomplete": oncomplete
263                 }
264             );
265             return;
266         } else if (this.isUni && this.pager) {
267             this.pager.getAllLineitemIDs(oncomplete);
268             return;
269         }
270
271         /* If execution reaches this point, we don't need or can't perform
272          * any special tricks to find out the "real" list of "all" lineitems
273          * in this context, so we fall back to the old method.
274          */
275         callback(this.getSelected(true, null, id_only));
276     };
277
278     /** @param all If true, assume all are selected */
279     this.getSelected = function(
280         all,
281         callback /* If you want a "good" idea of "all" lineitems, you must
282         provide a callback that accepts an array parameter, rather than
283         relying on the return value of this method itself. */,
284         id_only
285     ) {
286         if (all && callback)
287             return this.getAll(callback, id_only);
288
289         var indices = {};   /* use to uniqify. needed in paging situations. */
290         dojo.forEach(this.selectors,
291             function(i) { 
292                 if(i.checked || all)
293                     indices[i.parentNode.parentNode.getAttribute('li')] = true;
294             }
295         );
296
297         var result = openils.Util.objectProperties(indices);
298
299         if (!id_only)
300             result = result.map(function(liId) { return self.liCache[liId]; });
301
302         if (callback)
303             callback(result);
304         else
305             return result;
306     };
307
308     this.setRowAttr = function(td, liWrapper, field, type) {
309         var val = liWrapper.findAttr(field, type || 'lineitem_marc_attr_definition') || '';
310         td.appendChild(document.createTextNode(val));
311     };
312
313     this.setClaimPolicyControl = function(li, row) {
314         if (!self.claimPolicyPicker) {
315             self.claimPolicyPicker = true; /* prevents a race condition */
316             new openils.widget.AutoFieldWidget({
317                 "parentNode": "acq-lit-li-claim-policy",
318                 "fmClass": "acqclp",
319                 "selfReference": true,
320                 "dijitArgs": {"required": true}
321             }).build(function(w) { self.claimPolicyPicker = w; });
322         }
323
324         if (!row) row = this._findLiRow(li);
325
326         var actViewPolicy = nodeByName("action_view_claim_policy", row);
327         if (li.claim_policy())
328             actViewPolicy.innerHTML = localeStrings.CHANGE_CLAIM_POLICY;
329
330         if (!actViewPolicy.onclick) {
331             actViewPolicy.onclick = function() {
332                 if (li.claim_policy())
333                     self.claimPolicyPicker.attr("value", li.claim_policy());
334                 liClaimPolicyDialog.show();
335                 liClaimPolicySave.onClick = function() {
336                     self.changeClaimPolicy(
337                         [li], self.claimPolicyPicker.attr("value"),
338                         function() {
339                             self.setClaimPolicyControl(li, row);
340                             self.reconsiderClaimControl(li, row);
341                             liClaimPolicyDialog.hide();
342                         }
343                     );
344                 }
345             };
346         }
347     };
348
349     this.fetchClaimInfo = function(liId, force, callback, row) {
350         this._fetchLineitem(
351             liId, function(full) {
352                 self.liCache[full.id()] = full;
353                 self.checkClaimEligibility(full, callback, row);
354             }, force
355         );
356     }
357
358     /**
359      * Inserts a single lineitem into the growing table of lineitems
360      * @param {Object} li The lineitem object to insert
361      */
362     this.addLineitem = function(li, skip_final_placement) {
363         this.liCache[li.id()] = li;
364
365         // insert the row right away so that final order isn't
366         // dependent on how long subsequent async request take
367         // for a given line item
368         var row = self.rowTemplate.cloneNode(true);
369         if (!skip_final_placement) {
370             self.tbody.appendChild(row);
371         }
372         self.selectors.push(dojo.query('[name=selectbox]', row)[0]);
373
374         // sort the lineitem notes on edit_time
375         if(!li.lineitem_notes()) li.lineitem_notes([]);
376
377         var liWrapper = new openils.acq.Lineitem({lineitem:li});
378         row.setAttribute('li', li.id());
379         var tds = dojo.query('[attr]', row);
380         dojo.forEach(tds, function(td) {self.setRowAttr(td, liWrapper, td.getAttribute('attr'), td.getAttribute('attr_type'));});
381         dojo.query('[name=source_label]', row)[0].appendChild(document.createTextNode(li.source_label()));
382
383         // so we can scroll to it later
384         dojo.query('[name=bib-info-cell]', row)[0].id = 'li-title-ref-' + li.id();
385
386         var identifier =
387             liWrapper.findAttr("isbn", "lineitem_marc_attr_definition") ||
388             liWrapper.findAttr("upc", "lineitem_marc_attr_definition");
389
390         // XXX media prefix for added content
391         if (identifier) {
392             nodeByName("jacket", row).setAttribute(
393                 "src", "/opac/extras/ac/jacket/small/" + identifier
394             );
395         }
396
397         nodeByName("liid", row).innerHTML += li.id();
398
399         if(li.eg_bib_id()) {
400             openils.Util.show(nodeByName('catalog', row), 'inline');
401             nodeByName("catalog_link", row).onclick = this.generateMakeRecTab(li.eg_bib_id());
402         } else {
403             openils.Util.show(nodeByName('link_to_catalog', row), 'inline');
404             nodeByName("link_to_catalog_link", row).onclick = function() { self.drawBibFinder(li) };
405         }
406
407         if (li.queued_record()) {
408             this.pcrud.retrieve('vqbr', li.queued_record(),
409                 {   async : true, 
410                     oncomplete : function(r) {
411                         var qrec = openils.Util.readResponse(r);
412                         openils.Util.show(nodeByName('queue', row), 'inline');
413                         var link = nodeByName("queue_link", row);
414                         link.onclick = function() { 
415                             // open a new tab to the vandelay queue for this record
416                             openils.XUL.newTabEasy(
417                                 oilsBasePath + '/vandelay/vandelay?qtype=bib&qid=' + qrec.queue()
418                             );
419                         }
420                     }
421                 }
422             );
423         }
424
425         nodeByName("worksheet_link", row).href =
426             oilsBasePath + "/acq/lineitem/worksheet/" + li.id() + 
427             '?source=' + encodeURIComponent(location.pathname + location.search)
428
429         nodeByName("show_requests_link", row).href =
430             oilsBasePath + "/acq/picklist/user_request?lineitem=" + li.id() + 
431             '?source=' + encodeURIComponent(location.pathname + location.search)
432
433         dojo.query('[attr=title]', row)[0].onclick = function() {self.drawInfo(li.id())};
434         dojo.query('[name=copieslink]', row)[0].onclick = function() {self.drawCopies(li.id())};
435         dojo.query('[name=noteslink]', row)[0].onclick = function() {self.drawLiNotes(li)};
436
437         if (!this.skipInitialEligibilityCheck)
438             this.fetchClaimInfo(
439                 li.id(),
440                 false,
441                 function(full) { self.setClaimPolicyControl(full, row) },
442                 row
443             );
444
445         this.updateLiNotesCount(li, row);
446
447         // show which PO this lineitem is a member of
448         if(li.purchase_order() && !this.isPO) {
449             var po = 
450                 this.poCache[li.purchase_order()] =
451                 this.poCache[li.purchase_order()] ||
452                 fieldmapper.standardRequest(
453                     ['open-ils.acq', 'open-ils.acq.purchase_order.retrieve'],
454                     {params: [
455                         this.authtoken, li.purchase_order(), {
456                             "flesh_price_summary": true,
457                             "flesh_provider" : true,
458                             "flesh_lineitem_count": true
459                         }
460                     ]});
461             if(po && !this.isMeta) {
462                 openils.Util.show(nodeByName('po', row), 'inline');
463                 var link = nodeByName('po_link', row);
464                 link.setAttribute('href', oilsBasePath +
465                     '/acq/po/view/' + li.purchase_order() +
466                     '?focus_li=' + li.id() +
467                     '&source=' + encodeURIComponent(location.pathname + location.search)
468                 );
469                 link.innerHTML += po.name();
470
471                 openils.Util.show(nodeByName('pro', row), 'inline');
472                 link = nodeByName('pro_link', row);
473                 link.setAttribute('href', oilsBasePath + '/conify/global/acq/provider/' + po.provider().id())
474                 link.innerHTML += po.provider().code();
475             }
476         }
477
478         // show which picklist this lineitem is a member of
479         if(li.picklist() && (this.isPO || this.isMeta || this.isUni)) {
480             var pl = 
481                 this.plCache[li.picklist()] = 
482                 this.plCache[li.picklist()] || 
483                 fieldmapper.standardRequest(
484                     ['open-ils.acq', 'open-ils.acq.picklist.retrieve.authoritative'],
485                     {params: [this.authtoken, li.picklist()]});
486             if (pl) {
487                 if (pl.name() == "") {
488                     openils.Util.show(nodeByName("bib_origin", row), "inline");
489
490                 } else {
491
492                     openils.Util.show(nodeByName('pl', row), 'inline');
493                     var link = nodeByName('pl_link', row);
494                     link.setAttribute('href', oilsBasePath +
495                         '/acq/picklist/view/' + li.picklist() +
496                         '?focus_li=' + li.id() +
497                         '&source=' + encodeURIComponent(location.pathname + location.search)
498                     );
499                     link.innerHTML += pl.name();
500                 }
501             }
502         }
503
504         var countNode = nodeByName('count', row);
505         var count = li.item_count() || 0;
506         if (typeof(this._copy_count_cb) == "function") {
507             this._copy_count_cb(li.id(), count);
508         }
509         countNode.innerHTML = count;
510         countNode.id = 'acq-lit-copy-count-label-' + li.id();
511
512         // lineitem price
513         var priceInput = dojo.query('[name=price]', row)[0];
514         priceInput.value = li.estimated_unit_price() || '';
515         priceInput.onchange = function() { self.updateLiPrice(priceInput, li) };
516
517         // show either "mark received" or "unreceive" as appropriate
518         this.updateLiState(li, row);
519
520         if (skip_final_placement) {
521             return row;
522         }
523
524         // the last LI may be rendered after the call to show('list'),
525         // so make sure it's focused if necessary.
526         if (this.focusLineitem == li.id())
527             this.focusLi();
528     };
529
530     this._liCountClaims = function(li) {
531         var total = 0;
532         for (var i = 0; i < li.lineitem_details().length; i++)
533             total += li.lineitem_details()[i].claims().length;
534         return total;
535     };
536
537     this._findLiRow = function(li) {
538         return dojo.query('tr[li="' + li.id() + '"]', "acq-lit-tbody")[0];
539     };
540
541     this.reconsiderClaimControl = function(li, row) {
542         if (!row) row = this._findLiRow(li);
543         var option = nodeByName("action_manage_claims", row);
544         var eligible = this.claimEligibleLidByLi[li.id()].length;
545         var count = this._liCountClaims(li);
546
547         option.disabled = !(count || eligible);
548         option.innerHTML =
549             dojo.string.substitute(localeStrings.NUM_CLAIMS_EXISTING, [count]);
550         option.onclick = function() { self.claimDialog.show(li); };
551     };
552
553     this.clearEligibility = function(li) {
554         this.claimEligibleLidByLi[li.id()] = [];
555
556         if (li.lineitem_details()) {
557             li.lineitem_details().forEach(
558                 function(lid) { delete self.claimEligibleLid[lid.id()]; }
559             );
560         }
561
562         if (this.copyCache) {
563             var to_del = [];
564             for (var k in this.copyCache) {
565                 if (this.copyCache[k].lineitem() == li.id())
566                     to_del.push(k);
567             }
568             to_del.forEach(
569                 function(k) { delete self.claimEligibleLid[k]; }
570             );
571         }
572     };
573
574     this.checkClaimEligibility = function(li, callback, row) {
575         /* Assume always eligible, i.e. from this interface we don't care about
576          * claim eligibility any more. this is where the user would force a
577          * claime. */
578         this.clearEligibility(li);
579         this.claimEligibleLidByLi[li.id()] = li.lineitem_details().map(
580             function(lid) { return lid.id(); }
581         );
582         li.lineitem_details().forEach(
583             function(lid) { self.claimEligibleLid[lid.id()] = true; }
584         );
585         this.reconsiderClaimControl(li, row);
586         if (callback) callback(li);
587         /*
588         this.clearEligibility(li);
589         fieldmapper.standardRequest(
590             ["open-ils.acq", "open-ils.acq.claim.eligible.lineitem_detail"], {
591                 "params": [openils.User.authtoken, {"lineitem": li.id()}],
592                 "async": true,
593                 "onresponse": function(r) {
594                     if (r = openils.Util.readResponse(r)) {
595                         self.claimEligibleLidByLi[li.id()].push(
596                             r.lineitem_detail()
597                         );
598                         self.claimEligibleLid[r.lineitem_detail()] = true;
599                     }
600                 },
601                 "oncomplete": function() {
602                     self.reconsiderClaimControl(li, row);
603                     if (typeof(callback) == "function")
604                         callback();
605                 }
606             }
607         );
608         */
609     };
610
611     this.updateLiNotesCount = function(li, row) {
612         if (!row) row = this._findLiRow(li);
613
614         var has_notes = (li.lineitem_notes().filter(
615                 function(o) { return Boolean (o.alert_text()); }
616             ).length > 0);
617
618         /* U+2691 is the code point for a filled-in flag character */
619         nodeByName("notes_alert_flag", row).innerHTML =
620              has_notes ? "&#x2691;" : "";
621         nodeByName("noteslink", row).style.fontStyle =
622             has_notes ? "italic" : "normal";
623         nodeByName("notes_count", row).innerHTML = li.lineitem_notes().length;
624     };
625
626     /* XXX NOT related to _updateLiState(). rethink */
627     this.updateLiState = function(li, row) {
628         if (!row) row = this._findLiRow(li);
629
630         var actReceive = nodeByName("action_mark_recv", row);
631         var actUnRecv = nodeByName("action_mark_unrecv", row);
632         var actUpdateBarcodes = nodeByName("action_update_barcodes", row);
633         var actHoldingsMaint = nodeByName("action_holdings_maint", row);
634         var actNewInvoice = nodeByName('action_new_invoice', row);
635         var actLinkInvoice = nodeByName('action_link_invoice', row);
636         var actViewInvoice = nodeByName('action_view_invoice', row);
637
638         // always allow access to LI history
639         nodeByName('action_view_history', row).onclick = 
640             function() { location.href = oilsBasePath + '/acq/lineitem/history/' + li.id(); };
641
642         /* handle row coloring for based on LI state */
643         openils.Util.removeCSSClass(row, /^oils-acq-li-state-/);
644         openils.Util.addCSSClass(row, "oils-acq-li-state-" + li.state());
645
646         // Expose invoice actions for any lineitem that is linked to a PO 
647         if( li.purchase_order() ) {
648
649             actNewInvoice.disabled = false;
650             actLinkInvoice.disabled = false;
651             actViewInvoice.disabled = false;
652
653             actNewInvoice.onclick = function() {
654                 location.href = oilsBasePath + '/acq/invoice/view?create=1&attach_li=' + li.id();
655                 nodeByName("action_none", row).selected = true;
656             };
657
658             actLinkInvoice.onclick = function() {
659                 if (!self.invoiceLinkDialogManager) {
660                     self.invoiceLinkDialogManager =
661                         new InvoiceLinkDialogManager("li");
662                 }
663                 self.invoiceLinkDialogManager.target = li;
664                 acqLitLinkInvoiceDialog.show();
665                 nodeByName("action_none", row).selected = true;
666             };
667
668             actViewInvoice.onclick = function() {
669                 location.href = oilsBasePath +
670                     "/acq/search/unified?so=" +
671                     base64Encode({"jub":[{"id": li.id()}]}) +
672                     "&rt=invoice";
673                 nodeByName("action_none", row).selected = true;
674             };
675         }
676                 
677
678         /*
679          * If we haven't fleshed the lineitem_details, default to allowing access to the 
680          * holdings maintenence actions.  The alternative is to flesh LIDs on every lineitem, 
681          * but that will add to page render time.  Let's see if this will suffice...
682          */
683         var lids = li.lineitem_details();
684         if( !lids || 
685                 (lids && !lids.filter(function(lid) { return lid.eg_copy_id() })[0] )) {
686
687             actUpdateBarcodes.disabled = false;
688             actUpdateBarcodes.onclick = function() {
689                 self.showRealCopyEditUI(li);
690                 nodeByName("action_none", row).selected = true;
691             }
692             actHoldingsMaint.disabled = false;
693             actHoldingsMaint.onclick = 
694                 self.generateMakeRecTab( li.eg_bib_id(), 'copy_browser', row );
695         }
696
697         var state_cell = nodeByName("li_state", row);
698
699         switch(li.state()) {
700
701             case 'cancelled':
702                 if(typeof li.cancel_reason() == "object") {
703                     var holds_state = dojo.create(
704                         "span", {
705                             "style": "border-bottom: 1px dashed #000;",
706                             "innerHTML": li.state()
707                         }, state_cell, "only"
708                     );
709                     new dijit.Tooltip(
710                         {
711                             "label": "<em>" + li.cancel_reason().label() +
712                                 "</em><br />" + li.cancel_reason().description(),
713                             "connectId": [holds_state]
714                         }, dojo.create("span", null, state_cell, "last")
715                     );
716                 }
717                 return; // all done
718
719             case "on-order":
720                 actReceive.disabled = false;
721                 actReceive.onclick = function() {
722                     if (self.checkLiAlerts(li.id()))
723                         self.issueReceive(li);
724                     nodeByName("action_none", row).selected = true;
725                 };
726                 break;
727
728             case "received":
729                 actUnRecv.disabled = false;
730                 actUnRecv.onclick = function() {
731                     if (confirm(localeStrings.UNRECEIVE_LI))
732                         self.issueReceive(li, /* rollback */ true);
733                     nodeByName("action_none", row).selected = true;
734                 };
735                 break;
736         }
737
738         state_cell.innerHTML = li.state(); // TODO i18n state labels
739     };
740
741
742     this._setAlertStore = function() {
743         acqLitAlertAlertText.store = new dojo.data.ItemFileReadStore(
744             {
745                 "data": acqliat.toStoreData(
746                     this.pcrud.search(
747                         "acqliat", {
748                             "owning_lib": aou.orgNodeTrail(
749                                 aou.findOrgUnit(openils.User.user.ws_ou())
750                             ).map(function(o) { return o.id(); })
751                         }
752                     )
753                 )
754             }
755         );
756         acqLitAlertAlertText.setValue(); /* make the store "live" */
757         acqLitAlertAlertText._store_ready = true;
758     };
759
760     /**
761      * Draws and shows the lineitem notes pane
762      */
763     this.drawLiNotes = function(li) {
764         var self = this;
765         this.focusLineitem = li.id();
766
767         if (!acqLitAlertAlertText._store_ready)
768             this._setAlertStore();
769
770         li.lineitem_notes(
771             li.lineitem_notes().sort(
772                 function(a, b) { 
773                     if(a.edit_time() < b.edit_time()) return 1;
774                     return -1;
775                 }
776             )
777         );
778
779         while(this.liNotesTbody.childNodes[0])
780             this.liNotesTbody.removeChild(this.liNotesTbody.childNodes[0]);
781         this.show('notes');
782
783         acqLitCreateNoteSubmit.onClick = function() {
784             var value = acqLitCreateNoteText.attr('value');
785             if(!value) return;
786             var note = new fieldmapper.acqlin();
787             note.isnew(true);
788             note.vendor_public(
789                 Boolean(acqLitCreateNoteVendorPublic.attr('checked'))
790             );
791             note.value(value);
792             note.lineitem(li.id());
793
794             self.updateLiNotes(li, note);
795             acqLitCreateNoteVendorPublic.attr("checked", false);
796             acqLitCreateNoteText.attr("value", "");
797         }
798
799         acqLitCreateAlertSubmit.onClick = function() {
800             if (!acqLitAlertAlertText.item) {
801                 alert(localeStrings.ALERT_UNSELECTED);
802                 return;
803             }
804
805             var alert_text = new fieldmapper.acqliat().fromStoreItem(
806                 acqLitAlertAlertText.item
807             );
808             var value = acqLitAlertNoteValue.attr("value") || "";
809
810             var note = new fieldmapper.acqlin();
811             note.isnew(true);
812             note.lineitem(li.id());
813             note.value(value);
814             note.alert_text(alert_text);
815
816             self.updateLiNotes(li, note);
817         }
818
819         dojo.forEach(li.lineitem_notes(), function(note) { self.addLiNote(li, note) });
820     }
821
822     /**
823      * Draws a single lineitem note in the notes pane
824      */
825     this.addLiNote = function(li, note) {
826         if(note.isdeleted()) return;
827         var self = this;
828         var row = self.liNotesRow.cloneNode(true);
829         nodeByName("value", row).innerHTML = note.value();
830         var alert_node = nodeByName("alert_code", row);
831         if (note.alert_text()) {
832             alert_node.innerHTML = dojo.string.substitute(
833                 "[${0}] ${1}", [
834                     aou.findOrgUnit(note.alert_text().owning_lib()).shortname(),
835                     note.alert_text().code()
836                 ]
837             );
838             if (note.alert_text().description()) {
839                 new dijit.Tooltip(
840                     {
841                         "connectId": [alert_node],
842                         "label": note.alert_text().description()
843                     }, dojo.create("span", null, alert_node, "after")
844                 );
845             }
846         }
847
848         if (openils.Util.isTrue(note.vendor_public()))
849             nodeByName("vendor_public", row).innerHTML =
850                 localeStrings.VENDOR_PUBLIC;
851
852         nodeByName("delete", row).onclick = function() {
853             note.isdeleted(true);
854             self.liNotesTbody.removeChild(row);
855             self.updateLiNotes(li);
856         };
857
858         if(note.edit_time()) {
859             nodeByName("edit_time", row).innerHTML =
860                 dojo.date.locale.format(
861                     dojo.date.stamp.fromISOString(note.edit_time()), 
862                     {formatLength:'short'});
863         }
864
865         self.liNotesTbody.appendChild(row);
866     }
867
868     /**
869      * Updates any new/changed/deleted notes on the server
870      */
871     this.updateLiNotes = function(li, newNote) {
872
873         var notes;
874         if(newNote) {
875             notes = [newNote];
876         } else {
877             notes = li.lineitem_notes().filter(
878                 function(note) {
879                     if(note.ischanged() || note.isnew() || note.isdeleted())
880                         return note;
881                 }
882             );
883         }
884
885         if(notes.length == 0) return;
886         progressDialog.show();
887
888         fieldmapper.standardRequest(
889             ['open-ils.acq', 'open-ils.acq.lineitem_note.cud.batch'],
890             {   async : true,
891                 params : [this.authtoken, notes],
892                 onresponse : function(r) {
893                     var resp = openils.Util.readResponse(r);
894
895                     if(resp.complete) {
896
897                         if(!newNote) {
898                             // remove the old changed notes
899                             var list = [];
900                             dojo.forEach(li.lineitem_notes(), 
901                                 function(note) {
902                                     if(!(note.ischanged() || note.isnew() || note.isdeleted()))
903                                         list.push(note);
904                                 }
905                             );
906                             li.lineitem_notes(list);
907                         }
908
909                         progressDialog.hide();
910                         self.updateLiNotesCount(li);
911                         self.drawLiNotes(li);
912                         return;
913                     }
914
915                     progressDialog.update(resp);
916                     var newnote = resp.note;
917
918                     if(!newnote.isdeleted()) {
919                         newnote.isnew(false);
920                         newnote.ischanged(false);
921                         li.lineitem_notes().push(newnote);
922                     }
923                 },
924             }
925         );
926     }
927
928     this.updateLiPrice = function(input, li) {
929         var self = this;
930         var price = input.value;
931         if(Number(price) == Number(li.estimated_unit_price())) return;
932
933         fieldmapper.standardRequest(
934             ['open-ils.acq', 'open-ils.acq.lineitem.price.set'],
935             {   async : false, // redundant w/ timeout
936                 timeout : 10,
937                 params : [this.authtoken, li.id(), price],
938                 oncomplete : function(r) {
939                     openils.Util.readResponse(r);
940                     li.estimated_unit_price(price); // update local copy
941
942                     /*
943                      * If this is a PO and every visible lineitem has a price,
944                      * check again to see if this PO can be activated.  Note that 
945                      * every visible lineitem having a price does not guarantee it can
946                      * be activated, which is why we still make the call.  Having a price
947                      * set for every visiable lineitem is just the lowest barrier to entry.
948                      */
949                     if (self.isPO) {
950                         var priceNodes = dojo.query('[name=price]', dojo.byId('acq-lit-tbody'));
951                         var allSet = true;
952                         dojo.forEach(priceNodes, function(node) { if (node.value == '') allSet = false});
953                         if (allSet) checkCouldActivatePo();
954                     }
955                 }
956             }
957         );
958     }
959
960     this.removeLineitem = function(liId) {
961         this.tbody.removeChild(dojo.query('[li='+liId+']', this.tbody)[0]);
962         delete this.liCache[liId];
963         //selected.push(self.liCache[i.parentNode.parentNode.getAttribute('li')]);
964     }
965
966     this.drawInfo = function(liId) {
967         this.focusLineitem = liId;
968         if (!this._isRelatedViewer) {
969             var d = dojo.byId("acq-lit-info-related");
970             if (!this.relCache[liId]) {
971                 fieldmapper.standardRequest(
972                     [
973                         "open-ils.acq",
974                         "open-ils.acq.lineitems_for_bib.by_lineitem_id.count"
975                     ], {
976                         "async": true,
977                         "params": [openils.User.authtoken, liId],
978                         "onresponse": function(r) {
979                             self.relCache[liId] = openils.Util.readResponse(r);
980                             nodeByName("related_number", d).innerHTML =
981                                 self.relCache[liId];
982                             openils.Util[
983                                 self.relCache[liId] >1 ? "show" : "hide"
984                             ](d);
985                         }
986                     }
987                 );
988             } else {
989                 nodeByName("related_number", d).innerHTML = this.relCache[liId];
990                 openils.Util[this.relCache[liId] > 1 ? "show" : "hide"](d);
991             }
992         }
993
994         this.show('info');
995         openils.acq.Lineitem.fetchAttrDefs(
996             function() { 
997                 self._fetchLineitem(liId, function(li){self._drawInfo(li);}); 
998             } 
999         );
1000     };
1001
1002     /* For a given list of lineitem ids, build a list of full lineitems
1003      * re-using the fetching logic that is otherwise typical to use in this
1004      * module.
1005      *
1006      * If we've already got a lineitem in the cache, just use that.
1007      *
1008      * Once we've built a list of lineitems, call callback(thatlist).
1009      */
1010     this.fetchLineitemsById = function(id_list, callback) {
1011         var total = id_list.length;
1012         var result_list = [];
1013
1014         var inner = function(li) {
1015             result_list.push(li)
1016             if (--total <= 0)
1017                 callback(result_list);
1018         };
1019
1020         id_list.forEach(function(id) { self._fetchLineitem(id, inner); });
1021     };
1022
1023     this._fetchLineitem = function(liId, handler, force) {
1024
1025         var li = this.liCache[liId];
1026         if(li && li.marc() && li.lineitem_details() && !force)
1027             return handler(li);
1028         
1029         fieldmapper.standardRequest(
1030             ['open-ils.acq', 'open-ils.acq.lineitem.retrieve.authoritative'],
1031             {   async: true,
1032
1033                 params: [self.authtoken, liId, {
1034                     flesh_attrs: true,
1035                     flesh_cancel_reason: true,
1036                     flesh_li_details: true,
1037                     flesh_notes: true,
1038                     flesh_fund_debit: true }],
1039
1040                 oncomplete: function(r) {
1041                     var li = openils.Util.readResponse(r);
1042                     self.liCache[liId] = li;
1043                     handler(li)
1044                 }
1045             }
1046         );
1047     };
1048
1049     this._drawInfo = function(li) {
1050
1051         acqLitEditOrderMarc.onClick = function() { self.editOrderMarc(li); }
1052
1053         if(li.eg_bib_id()) {
1054             openils.Util.hide('acq-lit-marc-order-record-label');
1055             openils.Util.hide(acqLitEditOrderMarc.domNode);
1056             openils.Util.show('acq-lit-marc-real-record-label');
1057         } else {
1058             openils.Util.show('acq-lit-marc-order-record-label');
1059             openils.Util.show(acqLitEditOrderMarc.domNode);
1060             openils.Util.hide('acq-lit-marc-real-record-label');
1061         }
1062
1063         this.drawMarcHTML(li);
1064         this.infoTbody = dojo.byId('acq-lit-info-tbody');
1065
1066         if(!this.infoRow)
1067             this.infoRow = this.infoTbody.removeChild(dojo.byId('acq-lit-info-row'));
1068         while(this.infoTbody.childNodes[0])
1069             this.infoTbody.removeChild(this.infoTbody.childNodes[0]);
1070
1071         for(var i = 0; i < li.attributes().length; i++) {
1072             var attr = li.attributes()[i];
1073             var row = this.infoRow.cloneNode(true);
1074
1075             var type = attr.attr_type().replace(/lineitem_(.*)_attr_definition/, '$1');
1076             var name = openils.acq.Lineitem.attrDefs[type].filter(
1077                 function(a) {
1078                     return (a.code() == attr.attr_name());
1079                 }
1080             ).pop().description();
1081
1082             dojo.query('[name=label]', row)[0].appendChild(document.createTextNode(name));
1083             dojo.query('[name=value]', row)[0].appendChild(document.createTextNode(attr.attr_value()));
1084             this.infoTbody.appendChild(row);
1085         }
1086
1087         if (!this._isRelatedViewer) {
1088             nodeByName("rel_link", dojo.byId("acq-lit-info-related")).href =
1089                 oilsBasePath + "/acq/lineitem/related/" + li.id();
1090         }
1091
1092     };
1093
1094     this.generateMakeRecTab = function(bib_id,default_view, row) {
1095         return function() {
1096             xulG.new_tab(
1097                 XUL_OPAC_WRAPPER,
1098                 {tab_name: localeStrings.XUL_RECORD_DETAIL_PAGE, browser:false},
1099                 {
1100                     no_xulG : false, 
1101                     show_nav_buttons : true, 
1102                     show_print_button : true, 
1103                     opac_url : xulG.url_prefix('opac_rdetail|' + bib_id),
1104                     default_view : default_view
1105                 }
1106             );
1107
1108             if(row) nodeByName("action_none", row).selected = true;
1109         }
1110     };
1111
1112     this.drawMarcHTML = function(li) {
1113         var params = [null, true, li.marc()];
1114         if(li.eg_bib_id()) 
1115             params = [li.eg_bib_id(), true];
1116
1117         fieldmapper.standardRequest(
1118             ['open-ils.search', 'open-ils.search.biblio.record.html'],
1119             {   async: true,
1120                 params: params,
1121                 oncomplete: function(r) {
1122                     dojo.byId('acq-lit-marc-div').innerHTML = 
1123                         openils.Util.readResponse(r);
1124                 }
1125             }
1126         );
1127     }
1128
1129     this.drawCopies = function(liId, force_fetch) {
1130         this.focusLineitem = liId;
1131         if (typeof force_fetch == "undefined")
1132             force_fetch = false;
1133
1134         var cgi = new openils.CGI();
1135         var source = cgi.param('source');
1136         if (source && source.match(/invoice/)) {
1137             // got here from the invoice page, show the 'return-to-invoice' button
1138             var cgi = new openils.CGI({url : source});
1139             cgi.param('focus_li', liId);
1140             openils.Util.show(dojo.byId('acq-lit-copies-back-to-invoice-button-wrapper'), 'inline');
1141             var button = dojo.byId('acq-lit-copies-back-to-invoice-button');
1142             button.onclick = function() { location.href = cgi.url() };
1143         }
1144
1145         openils.acq.Lineitem.fetchAndRender(liId, {}, 
1146             function(li, html) {
1147                 dojo.byId('acq-lit-copies-li-summary').innerHTML = html;
1148             }
1149         );
1150
1151         this.show('copies');
1152         var self = this;
1153         this.copyCache = {};
1154         this.copyWidgetCache = {};
1155         this.oldCopyWidgetCache = {};
1156         this.virtDfaCounts = {};
1157         this.realDfaCache = {};
1158         this.dfeOffset = 0;
1159
1160         acqLitSaveCopies.onClick = function() { self.saveCopyChanges(liId) };
1161         acqLitBatchUpdateCopies.onClick = function() { self.batchCopyUpdate() };
1162         acqLitCopyCountInput.attr('value', '0');
1163
1164         while(this.copyTbody.childNodes[0])
1165             this.copyTbody.removeChild(this.copyTbody.childNodes[0]);
1166
1167         this._drawBatchCopyWidgets();
1168
1169         this._drawDistribApplied(liId);
1170
1171         this._fetchDistribFormulas(
1172             function() {
1173                 openils.acq.Lineitem.fetchAttrDefs(
1174                     function() { 
1175                         self._fetchLineitem(liId, function(li){self._drawCopies(li);}, force_fetch); 
1176                     } 
1177                 );
1178             }
1179         );
1180     };
1181
1182     this._saveDistribAppliedTemplates = function() {
1183         if (!this._appliedDistribTemplate) {
1184             this._appliedDistribTemplate =
1185                 dojo.byId("acq-lit-distrib-applied-tbody").
1186                     removeChild(dojo.byId("acq-lit-distrib-applied-row"));
1187             dojo.attr(this._appliedDistribTemplate, "id");
1188         }
1189     };
1190
1191     this._drawDistribApplied = function(liId) {
1192         /* Build this table while hidden to prevent rendering artifacts */
1193         openils.Util.hide("acq-lit-distrib-applied-tbody");
1194
1195         this._saveDistribAppliedTemplates();
1196
1197         /* Remove any rows in the table from previous populations */
1198         dojo.query("tr[formula]", "acq-lit-distrib-applied-tbody").
1199             forEach(dojo.destroy);
1200
1201         /* Unregister all dijits previously created (for some reason this isn't
1202          * covered by the above destroy calls). */
1203         dijit.registry.forEach(
1204             function(w) { if (/^dfa-/.test(w.id)) w.destroyRecursive(); }
1205         );
1206
1207         /* Populate the table with our liId */
1208         var total = 0;
1209         fieldmapper.standardRequest(
1210             ["open-ils.acq",
1211             "open-ils.acq.distribution_formula_application.ranged.retrieve"],
1212             {
1213                 "async": true,
1214                 "params": [self.authtoken, liId],
1215                 "onresponse": function(r) {
1216                     var dfa = openils.Util.readResponse(r);
1217                     if (dfa) {
1218                         total++;
1219                         self.realDfaCache[dfa.id()] = dfa;
1220                         self._drawDistribAppliedUnit(dfa);
1221                     }
1222                 },
1223                 "oncomplete": function() {
1224                     /* Reveal built table */
1225                     if (total) {
1226                         openils.Util.show(
1227                             "acq-lit-distrib-applied-tbody", "table-row-group"
1228                         );
1229                     }
1230                 }
1231             }
1232         );
1233     };
1234
1235     this._drawDistribAppliedUnit = function(dfa) {
1236         var new_row = false;
1237         var row = dojo.query(
1238             'tr[formula="' + dfa.formula().id() + '"]',
1239             "acq-lit-distrib-applied-tbody"
1240         )[0];
1241
1242         if (!row) {
1243             new_row = true;
1244             row = dojo.clone(this._appliedDistribTemplate);
1245             dojo.attr(row, "formula", dfa.formula().id());
1246             dojo.query("th", row)[0].innerHTML = dfa.formula().name();
1247         }
1248
1249         var td = dojo.query("td", row)[0];
1250
1251         dojo.create("span", {"id": "dfa-button-" + dfa.id()}, td, "last");
1252         dojo.create("span", {"id": "dfa-tip-" + dfa.id()}, td, "last");
1253
1254         if (new_row)
1255             dojo.place(row, "acq-lit-distrib-applied-tbody", "last");
1256
1257         new dijit.form.Button(
1258             {
1259                 "onClick": function() {
1260                     if (confirm(localeStrings.EXPLAIN_DFA_MGMT))
1261                         self.deleteDfa(dfa);
1262                 },
1263                 "label": "X",
1264                 /* XXX I /cannot/ make the following work in as a CSS class
1265                  * for some reason. So frustrating... */
1266                 "style": function(id) {
1267                      return (id > 0 ?
1268                         "font-weight: bold; color: #c00;" :
1269                         "color: #666;");
1270                      }(dfa.id()) + "margin: 0 6px;display: inline;"
1271             }, "dfa-button-" + dfa.id()
1272         );
1273         new dijit.Tooltip(
1274             {
1275                 "connectId": ["dfa-button-" + dfa.id()],
1276                 "label": dojo.string.substitute(
1277                     localeStrings.DFA_TIP, dfa.id() > 0 ? [
1278                         openils.User.formalName(dfa.creator()),
1279                         dojo.date.locale.format(
1280                             dojo.date.stamp.fromISOString(dfa.create_time()),
1281                             {"formatLength":"short"}
1282                         )
1283                     ] : [localeStrings.ITS_YOU, localeStrings.JUST_NOW]
1284                 )
1285             }, "dfa-tip-" + dfa.id()
1286         );
1287     }
1288
1289     this.deleteDfa = function(dfa) {
1290         if (dfa.id() > 0) { /* real */
1291             this.pcrud.eliminate(
1292                 dfa, {
1293                     "async": true,
1294                     "oncomplete": function() {
1295                         self._removeDistribApplied(dfa.id());
1296                         delete self.realDfaCache[dfa.id()];
1297                     }
1298                 }
1299             );
1300         } else { /* virtual */
1301             if (--(this.virtDfaCounts[dfa.formula().id()]) < 0)
1302             this.virtDfaCounts[dfa.formula().id()] = 0;
1303             /* hasn't been saved yet, so no need to do anything server side */
1304             this._removeDistribApplied(dfa.id());
1305         }
1306
1307     };
1308
1309     this._removeDistribApplied = function(dfaId) {
1310         var re = new RegExp("^dfa-\\w+-" + String(dfaId));
1311         dijit.registry.forEach(
1312             function(w) { if (re.test(w.id)) w.destroyRecursive(); }
1313         );
1314         this._removeDistribAppliedEmptyRows();
1315     };
1316
1317     this._removeAllDistribAppliedVirtual = function() {
1318         /* Unregister dijits */
1319         dijit.registry.forEach(
1320             function(w) { if (/^dfa-\w+--/.test(w.id)) w.destroyRecursive(); }
1321         );
1322         this._removeDistribAppliedEmptyRows();
1323     };
1324
1325     this._removeDistribAppliedEmptyRows = function() {
1326         /* Remove any rows with no DFA at all */
1327         dojo.query("tr[formula] td", "acq-lit-distrib-applied-tbody").forEach(
1328             function(o) {
1329                 if (o.childNodes.length < 1) dojo.destroy(o.parentNode);
1330             }
1331         );
1332     };
1333
1334     /**
1335      * Insert a new row into the distribution formula selection form
1336      */
1337     this._addDistribFormulaRow = function() {
1338         var self = this;
1339
1340         if (!self.distribForms) {
1341             // no formulas, hide the form
1342             openils.Util.hide('acq-lit-distrib-formula-table');
1343             return;
1344         }
1345
1346         if(!this.distribFormulaTemplate) 
1347             this.distribFormulaTemplate = 
1348                 dojo.byId('acq-lit-distrib-formula-tbody').removeChild(dojo.byId('acq-lit-distrib-form-row'));
1349
1350         var row = this.distribFormulaTemplate.cloneNode(true);
1351         dojo.place(row, "acq-lit-distrib-formula-tbody", "only");
1352
1353         this.dfSelector = new dijit.form.FilteringSelect(
1354             {"labelAttr": "dynLabel", "labelType": "html"},
1355             nodeByName("selector", row)
1356         );
1357         this._updateFormulaStore();
1358         this.dfSelector.fetchProperties =
1359             {"sort": [{"attribute": "use_count", "descending": true}]};
1360
1361         var apply = new dijit.form.Button(
1362             {"label": localeStrings.APPLY},
1363             nodeByName('set_button', row)
1364         ); 
1365
1366         var reset = new dijit.form.Button(
1367             {"label": localeStrings.RESET_FORMULAE, "disabled": true},
1368             nodeByName("reset_button", row)  
1369         );
1370
1371         dojo.connect(apply, 'onClick', 
1372             function() {
1373                 var form_id = self.dfSelector.attr("value");
1374                 if(!form_id) return;
1375                 self._applyDistribFormula(form_id);
1376                 reset.attr("disabled", false);
1377             }
1378         );
1379
1380         dojo.connect(reset, 'onClick', 
1381             function() {
1382                 self.restoreCopyFieldsBeforeDF();
1383                 self.virtDfaCounts = {};
1384                 self.virtDfaId = -1;
1385                 self.dfeOffset = 0;
1386                 self._updateFormulaStore();
1387                 self._removeAllDistribAppliedVirtual();
1388                 reset.attr("disabled", "true");
1389             }
1390         );
1391
1392     };
1393
1394     /**
1395      * Applies a distrib formula to the current set of copies
1396      */
1397     this._applyDistribFormula = function(formula) {
1398         if(!formula) return;
1399
1400         formula = this.distribForms.filter(
1401             function(form) { return form.id() == formula; }
1402         )[0];
1403
1404         var copyRows = dojo.query('tr', self.copyTbody);
1405
1406         if (this.dfeOffset >= copyRows.length) {
1407             alert(localeStrings.OUT_OF_COPIES);
1408             return;
1409         }
1410
1411         var entries_applied = 0;
1412         for(
1413             var rowIndex = this.dfeOffset;
1414             rowIndex < copyRows.length;
1415             rowIndex++
1416         ) {
1417             
1418             var row = copyRows[rowIndex];
1419             var copy_id = row.getAttribute('copy_id');
1420             var copyWidgets = this.copyWidgetCache[copy_id];
1421             var entryIndex = this.dfeOffset;
1422             var entry = null;
1423
1424             // find the correct entry for the current row
1425             dojo.forEach(formula.entries(), 
1426                 function(e) {
1427                     if(!entry) {
1428                         entryIndex += e.item_count();
1429                         if(entryIndex > rowIndex)
1430                             entry = e;
1431                     }
1432                 }
1433             );
1434
1435             if(entry) {
1436                 
1437                 //console.log("rowIndex = " + rowIndex + ", entry = " + entry.id() + ", entryIndex=" + 
1438                 //  entryIndex + ", owning_lib = " + entry.owning_lib() + ", location = " + entry.location());
1439     
1440                 entries_applied++;
1441                 this.saveCopyFieldsBeforeDF(copy_id);
1442                 this._copy_fields_for_acqdf.forEach(
1443                     function(field) {
1444                         if(entry[field]()) {
1445                             copyWidgets[field].attr('value', (entry[field]()));
1446                         }
1447                     }
1448                 );
1449             }
1450         }
1451
1452         if (entries_applied) {
1453             this.virtDfaCounts[formula.id()] =
1454                 ++(this.virtDfaCounts[formula.id()]) || 1;
1455             this._updateFormulaStore();
1456             this._drawDistribAppliedUnit(
1457                 function(df) {
1458                     var dfa = new acqdfa();
1459                     dfa.formula(df); dfa.id(self.virtDfaId--); return dfa;
1460                 }(formula)
1461             );
1462             this.dfeOffset += entries_applied;
1463         };
1464     };
1465
1466     /**
1467      * This function updates the DF store for the dropdown so that use_counts
1468      * can reflect DF applications from this session before they're saved
1469      * server-side.
1470      */
1471     this._updateFormulaStore = function() {
1472         this.dfSelector.store = new dojo.data.ItemFileReadStore(
1473             {
1474                 "data": self._labelFormulasWithCounts(
1475                     acqdf.toStoreData(self.distribForms)
1476                 )
1477             }
1478         );
1479     };
1480
1481     this.saveCopyFieldsBeforeDF = function(copy_id) {
1482         var self = this;
1483         if (!this.oldCopyWidgetCache[copy_id]) {
1484             var copyWidgets = this.copyWidgetCache[copy_id];
1485
1486             this.oldCopyWidgetCache[copy_id] = {};
1487             this._copy_fields_for_acqdf.forEach(
1488                 function(f) {
1489                     self.oldCopyWidgetCache[copy_id][f] =
1490                         copyWidgets[f].attr("value");
1491                 }
1492             );
1493         }
1494     };
1495
1496     this.restoreCopyFieldsBeforeDF = function() {
1497         var self = this;
1498         for (var copy_id in this.oldCopyWidgetCache) {
1499             this._copy_fields_for_acqdf.forEach(
1500                 function(f) {
1501                     self.copyWidgetCache[copy_id][f].attr(
1502                         "value", self.oldCopyWidgetCache[copy_id][f]
1503                     );
1504                 }
1505             );
1506         }
1507     };
1508
1509     this._labelFormulasWithCounts = function(store_data) {
1510         for (var key in store_data.items) {
1511             var obj = store_data.items[key];
1512             obj.use_count = Number(obj.use_count); /* needed for sorting */
1513
1514             if (this.virtDfaCounts[obj.id])
1515                 obj.use_count = obj.use_count + Number(this.virtDfaCounts[obj.id]);
1516
1517             obj.dynLabel = "<span class='acq-lit-distrib-form-use-count'>[" +
1518                 obj.use_count + "]</span>&nbsp; " + obj.name;
1519         }
1520         return store_data;
1521     };
1522
1523     /**
1524      * This method formerly would not refetch the DF formulas if they'd been
1525      * loaded already, but now it always re-fetches, since use_count changes.
1526      */
1527     /** TODO: port distrib-formula selector to autofieldwidget+pcrud/dojo store */
1528     this._fetchDistribFormulas = function(onload) {
1529         fieldmapper.standardRequest(
1530             ["open-ils.acq",
1531                 "open-ils.acq.distribution_formula.ranged.retrieve.atomic"],
1532             {
1533                 "async": true,
1534                 "params": [openils.User.authtoken, 0, 500],
1535                 "oncomplete": function(r) {
1536                     self.distribForms = openils.Util.readResponse(r);
1537                     if(!self.distribForms || self.distribForms.length == 0) {
1538                         self.distribForms = [];
1539                     }
1540                     self._addDistribFormulaRow();
1541                     onload();
1542                 }
1543             }
1544         );
1545     }
1546
1547     this._drawBatchCopyWidgets = function() {
1548         var row = this.copyBatchRow;
1549         dojo.forEach(liDetailBatchFields, 
1550             function(field) {
1551                 if(self.copyBatchRowDrawn) {
1552                     self.copyBatchWidgets[field].attr('value', null);
1553                 } else {
1554                     var widget = new openils.widget.AutoFieldWidget({
1555                         fmField : field,
1556                         fmClass : 'acqlid',
1557                         labelFormat : (field == 'fund') ? fundLabelFormat : null,
1558                         searchFormat : (field == 'fund') ? fundSearchFormat : null,
1559                         searchFilter : (field == 'fund') ? {"active": "t"} : null,
1560                         parentNode : dojo.query('[name='+field+']', row)[0],
1561                         orgLimitPerms : ['CREATE_PICKLIST'],
1562                         dijitArgs : {
1563                             "required": false,
1564                             "labelType": (field == "fund") ? "html" : null
1565                         },
1566                         noCache: (field == "fund"),
1567                         forceSync : true
1568                     });
1569                     widget.build(
1570                         function(w, ww) {
1571                             if (field == "fund" && w.store)
1572                                 self._ensureCSSFundClasses(w.store);
1573                             self.copyBatchWidgets[field] = w;
1574                         }
1575                     );
1576                     if (field == "fund") {
1577                         dojo.connect(
1578                             widget.widget, "onChange", function(val) {
1579                                 self._updateFundSelectorStyle(widget, val);
1580                             }
1581                         );
1582                     }
1583                 }
1584             }
1585         );
1586         this.copyBatchRowDrawn = true;
1587     };
1588
1589     this.batchCopyUpdate = function() {
1590         var self = this;
1591         for(var k in this.copyWidgetCache) {
1592             var cache = this.copyWidgetCache[k];
1593             dojo.forEach(liDetailBatchFields, function(f) {
1594                 var newval = self.copyBatchWidgets[f].attr('value');
1595                 if(newval) cache[f].attr('value', newval);
1596             });
1597         }
1598     };
1599
1600     this._drawCopies = function(li) {
1601         var self = this;
1602
1603         // this button sets the total number of copies for a given lineitem
1604         acqLitAddCopyCount.onClick = function() { 
1605             var count = acqLitCopyCountInput.attr('value');
1606
1607             // add new rows
1608             while(self.copyCount() < count)
1609                 self.addCopy(li); 
1610             
1611             // delete rows if necessary
1612             var diff = self.copyCount() - count;
1613             if(diff > 0) {
1614                 var rows = dojo.query('tr', self.copyTbody).reverse().slice(0, diff);
1615                 if(confirm(dojo.string.substitute(localeStrings.DELETE_LI_COPIES_CONFIRM, [diff]))) {
1616                     dojo.forEach(rows, function(row) {self.deleteCopy(row); });
1617                 } else {
1618                     acqLitCopyCountInput.attr('value', self.copyCount()+'');
1619                 }
1620             }
1621         }
1622
1623
1624         if(li.lineitem_details().length > 0) {
1625             dojo.forEach(li.lineitem_details(),
1626                 function(copy) {
1627                     self.addCopy(li, copy);
1628                 }
1629             );
1630         } else {
1631             self.addCopy(li);
1632         }
1633     };
1634
1635     this.copyCount = function() {
1636         var count = 0;
1637         for(var id in this.copyCache) {
1638             if(!this.copyCache[id].isdeleted())
1639                 count++;
1640         }
1641         return count;
1642     }
1643
1644     this.virtCopyId = -1;
1645     this.addCopy = function(li, copy) {
1646         var row = this.copyRow.cloneNode(true);
1647         this.copyTbody.appendChild(row);
1648         var self = this;
1649
1650         if(!copy) {
1651             copy = new fieldmapper.acqlid();
1652             copy.isnew(true);
1653             copy.id(this.virtCopyId--);
1654             copy.lineitem(li.id());
1655         }
1656
1657         this.copyCache[copy.id()] = copy;
1658         row.setAttribute('copy_id', copy.id());
1659         self.copyWidgetCache[copy.id()] = {};
1660
1661         acqLitCopyCountInput.attr('value', self.copyCount()+'');
1662
1663         var rcvr = copy.receiver();
1664         if (rcvr) {
1665             if (!userCache[rcvr]) {
1666                 if(rcvr == openils.User.user.id()) {
1667                     userCache[rcvr] = openils.User.user;
1668                 } else {
1669                     userCache[rcvr] = fieldmapper.standardRequest(
1670                         ['open-ils.actor', 'open-ils.actor.user.retrieve'],
1671                         {params: [openils.User.authtoken, rcvr]}
1672                     );
1673                 }
1674             }
1675             dojo.query('[name=receiver]', row)[0].innerHTML =  userCache[rcvr].usrname();
1676         }
1677
1678         dojo.forEach(liDetailFields,
1679             function(field) {
1680                 var searchFilter;
1681                 if (field == "fund") {
1682                     searchFilter = (copy.fund() ?
1683                         {"-or": {"active": "t", "id": copy.fund()}} :
1684                         {"active" : "t"});
1685                 } else {
1686                     searchFilter = null;
1687                 }
1688
1689                 var readOnly = false;
1690                 
1691                 // TODO: Add support for changing the owning_lib after real copies have been made.  
1692                 // owning_lib is order data as much as its item data
1693                 if(copy.eg_copy_id() && ['owning_lib', 'location', 'circ_modifier', 'cn_label', 'barcode'].indexOf(field) >= 0) {
1694                     readOnly = true;
1695                 }
1696
1697                 // TODO: add support for changing the fund after debits have been created
1698                 // Note: invoicing allows the change
1699                 if(copy.fund_debit() && field == 'fund') {
1700                     readOnly = true;
1701                 }
1702
1703
1704                 var widget = new openils.widget.AutoFieldWidget({
1705                     fmObject : copy,
1706                     fmField : field,
1707                     labelFormat : (field == 'fund') ? fundLabelFormat : null,
1708                     searchFormat : (field == 'fund') ? fundSearchFormat : null,
1709                     dijitArgs: {"labelType": (field == 'fund') ? "html" : null},
1710                     searchFilter : searchFilter,
1711                     noCache: (field == "fund"),
1712                     fmClass : 'acqlid',
1713                     parentNode : dojo.query('[name='+field+']', row)[0],
1714                     orgLimitPerms : ['CREATE_PICKLIST', 'CREATE_PURCHASE_ORDER'],
1715                     readOnly : readOnly,
1716                     orgDefaultsToWs : true
1717                 });
1718
1719                 widget.build(
1720                     // make sure we capture the value from any async widgets
1721                     function(w, ww) { 
1722
1723                         if (field == "fund" && w.store)
1724                             self._ensureCSSFundClasses(w.store);
1725
1726                         if(!readOnly) 
1727                             copy[field](ww.getFormattedValue()) 
1728
1729                         self.copyWidgetCache[copy.id()][field] = w;
1730
1731                         dojo.connect(w, 'onChange', 
1732                             function(val) { 
1733                                 if (field == "fund")
1734                                     self._updateFundSelectorStyle(widget, val);
1735
1736                                 if (!readOnly && (copy.isnew() || val != copy[field]())) {
1737                                     // prevent setting ischanged() automatically on widget load for existing copies
1738                                     copy[field](widget.getFormattedValue()) 
1739                                     copy.ischanged(true);
1740                                 }
1741                             }
1742                         );
1743                     }
1744                 );
1745             }
1746         );
1747
1748         this.updateLidState(copy, row);
1749     };
1750
1751     this._ensureCSSFundClass = function(id) {
1752         if (!this.fundStyleSheet) {
1753             dojo.create(
1754                 "style", {"type": "text/css"},
1755                 document.getElementsByTagName("head")[0], "last"
1756             );
1757             this.fundStyleSheet = document.styleSheets[
1758                 document.styleSheets.length - 1
1759             ];
1760         }
1761
1762         var cn = "fund_" + id;
1763         if (!this.haveFundClass[cn]) {
1764             fieldmapper.standardRequest(
1765                 ["open-ils.acq", "open-ils.acq.fund.check_balance_percentages"],
1766                 {
1767                     "params": [openils.User.authtoken, id],
1768                     "async": true,
1769                     "oncomplete": function(r) {
1770                         r = openils.Util.readResponse(r);
1771                         self.fundBalanceState[id] = r;
1772                         var style = "";
1773                         if (r[0] /* stop */)
1774                             style = fundStyles.stop;
1775                         else if (r[1] /* warning */)
1776                             style = fundStyles.warning;
1777                         self.fundStyleSheet.insertRule(
1778                             "." + cn + " { " + style + " }",
1779                             self.fundStyleSheet.cssRules.length
1780                         );
1781                         self.haveFundClass[cn] = true;
1782                     }
1783                 }
1784             );
1785         }
1786     };
1787
1788     this._ensureCSSFundClasses = function(store) {
1789         store.fetch({
1790             "query": {"id": "*"},
1791             "onItem": function(o) { self._ensureCSSFundClass(o.id[0]); }
1792         });
1793     };
1794
1795     this._updateFundSelectorStyle = function(widget, fund_id) {
1796         openils.Util.removeCSSClass(widget.widget.domNode, /fund_\d+/);
1797         openils.Util.addCSSClass(widget.widget.domNode, "fund_" + fund_id);
1798     };
1799
1800     this.updateLidState = function(copy, row) {
1801         var self = this;
1802
1803         if (typeof(row) == "undefined") {
1804             row = dojo.query('tr[copy_id="' + copy.id() + '"]', this.copyTbody)[0];
1805         }
1806
1807         // action links
1808         var recv_link = nodeByName("receive", row);
1809         var unrecv_link = nodeByName("unreceive", row);
1810         var del_link = nodeByName("delete", row);
1811         var cxl_link = nodeByName("cancel", row);
1812         var claim_link = nodeByName("claim", row);
1813         var cxl_reason_link = nodeByName("cancel_reason", row);
1814
1815         // by default, hide all the actions
1816         openils.Util.hide(del_link.parentNode);
1817         openils.Util.hide(recv_link);
1818         openils.Util.hide(unrecv_link);
1819         openils.Util.hide(cxl_link);
1820         openils.Util.hide(claim_link);
1821         openils.Util.hide(cxl_reason_link);
1822
1823         if (copy.id() > 0) { // real copies (LIDs)
1824
1825             if (copy.cancel_reason()) { 
1826
1827                 /* --------- cancelled -------------------------- */
1828
1829                 /* XXX the following may leak memory in a long lived table: 
1830                  * dijits may not get destroyed... not positive. revisit. */
1831                 var holds_reason = dojo.create(
1832                     "span", {
1833                         "style": "border-bottom: 1px dashed #000;",
1834                         "innerHTML": "Cancelled" /* XXX [sic] and i18n */
1835                     }, cxl_reason_link, "only"
1836                 );
1837                 new dijit.Tooltip(
1838                     {
1839                         "label": "<em>" + copy.cancel_reason().label() +
1840                             "</em><br />" + copy.cancel_reason().description(),
1841                         "connectId": [holds_reason]
1842                     }, dojo.create("span", null, cxl_reason_link, "last")
1843                 );
1844                 openils.Util.show(cxl_reason_link, "inline");
1845
1846             } else if (copy.recv_time()) { 
1847
1848                 /* --------- received -------------------------- */
1849
1850                 openils.Util.show(unrecv_link, "inline");
1851                 unrecv_link.onclick = function() {
1852                     if (confirm(localeStrings.UNRECEIVE_LID))
1853                         self.issueReceive(copy, /* rollback */ true);
1854                 };
1855
1856             } else if (this.liCache[copy.lineitem()].state() == 'on-order') {
1857                 
1858                 /* --------- on order -------------------------- */
1859
1860                 openils.Util.show(recv_link, 'inline');
1861                 openils.Util.show(cxl_link, "inline");
1862
1863                 recv_link.onclick = function() {
1864                     if (self.checkLiAlerts(copy.lineitem()))
1865                         self.issueReceive(copy);
1866                 };
1867
1868                 cxl_link.onclick = function() { self.cancelLid(copy.id()) };
1869
1870             } else {
1871
1872                 /* --------- pre-order copies  -------------------------- */
1873
1874                 del_link.onclick = function() { self.deleteCopy(row) };
1875                 openils.Util.show(del_link.parentNode);
1876
1877             }
1878
1879         } else { 
1880
1881             /* --------- virtual copies  -------------------------- */
1882
1883             del_link.onclick = function() { self.deleteCopy(row) };
1884             openils.Util.show(del_link.parentNode);
1885         }
1886     };
1887
1888     this.cancelLid = function(lid_id) {
1889         lidCancelDialog._lid_id = lid_id;
1890         openils.Util.show(lidCancelDialog.domNode.parentNode);
1891         lidCancelDialog.show();
1892         if (!lidCancelDialog._prepared) {
1893             var widget = new openils.widget.AutoFieldWidget({
1894                 "fmField": "cancel_reason",
1895                 "fmClass": "acqlid",
1896                 "parentNode": dojo.byId("acq-lit-lid-cancel-reason"),
1897                 "orgLimitPerms": ["CREATE_PURCHASE_ORDER"],
1898                 "forceSync": true
1899             });
1900             widget.build(
1901                 function(w, ww) {
1902                     acqLidCancelButton.onClick = function() {
1903                         if (w.attr("value")) {
1904                             if (confirm(localeStrings.LID_CANCEL_CONFIRM)) {
1905                                 self._cancelLid(
1906                                     lidCancelDialog._lid_id,
1907                                     w.attr("value")
1908                                 );
1909                             }
1910                             lidCancelDialog.hide();
1911                         }
1912                     };
1913                     lidCancelDialog._prepared = true;
1914                 }
1915             );
1916         }
1917     };
1918
1919     this._cancelLid = function(lid_id, reason) {
1920         fieldmapper.standardRequest(
1921             ["open-ils.acq", "open-ils.acq.lineitem_detail.cancel"], {
1922                 "params": [openils.User.authtoken, lid_id, reason],
1923                 "async": true,
1924                 "onresponse": function(r) {
1925                     if (r = openils.Util.readResponse(r)) {
1926                         if (r.lid) {
1927                             for (var id in r.lid) {
1928                                 /* actually this should only iterate once */
1929                                 self.copyCache[id].cancel_reason(
1930                                     r.lid[id].cancel_reason
1931                                 );
1932                                 self.updateLidState(self.copyCache[id]);
1933                             }
1934                         }
1935                     }
1936                 }
1937             }
1938         );
1939     };
1940
1941     this._confirmAlert = function(li, lin) {
1942         return confirm(
1943             dojo.string.substitute(
1944                 localeStrings.CONFIRM_LI_ALERT, [
1945                     (new openils.acq.Lineitem({"lineitem": li})).findAttr(
1946                         "title", "lineitem_marc_attr_definition"
1947                     ), (
1948                         /* XXX it's really better add a parameter and to adjust
1949                          * the format string rather than do this concatenation
1950                          * here, but if someone wants this for 2.2 in a hurry,
1951                          * we can sidestep the problem of updating the strings
1952                          * while the translators are working. */
1953                         "[" +
1954                         aou.findOrgUnit(lin.alert_text().owning_lib()).shortname() +
1955                         "] " +
1956                         lin.alert_text().code()
1957                     ),
1958                     lin.alert_text().description() || "",
1959                     lin.value()
1960                 ]
1961             )
1962         );
1963     };
1964
1965     this.checkLiAlerts = function(li_id) {
1966         var li = this.liCache[li_id];
1967
1968         var alert_notes = li.lineitem_notes().filter(
1969             function(o) { return Boolean(o.alert_text()); }
1970         );
1971
1972         /* this is _intentionally_ not done in a call to forEach() ... */
1973         for (var i = 0; i < alert_notes.length; i++) {
1974             if (this.noteAcks[alert_notes[i].id()])
1975                 continue;
1976             else if (!this._confirmAlert(li, alert_notes[i]))
1977                 return false;
1978             else
1979                 this.noteAcks[alert_notes[i].id()] = true;
1980         }
1981
1982         return true;
1983     };
1984
1985     this.deleteCopy = function(row) {
1986         var copy = this.copyCache[row.getAttribute('copy_id')];
1987         copy.isdeleted(true);
1988         if(copy.isnew())
1989             delete this.copyCache[copy.id()];
1990         this.copyTbody.removeChild(row);
1991     }
1992
1993     this._virtDfaCountsAsList = function() {
1994         var L = [];
1995         for (var key in this.virtDfaCounts) {
1996             for (var i = 0; i < this.virtDfaCounts[key]; i++)
1997                 L.push(key);
1998         }
1999         return L;
2000     }
2001
2002     this.confirmBreachedCopyFunds = function(copies) {
2003         var stop = 0, warning = 0;
2004         copies.forEach(
2005             function(o) {
2006                 if (o.fund()) {
2007                     var state = self.fundBalanceState[o.fund()];
2008                     if (state[0] /* stop */)
2009                         stop++;
2010                     else if (state[1] /* warning */)
2011                         warning++;
2012                 }
2013             }
2014         );
2015
2016         if (stop) {
2017             return confirm(localeStrings.CONFIRM_FUNDS_AT_STOP);
2018         } else if (warning) {
2019             return confirm(localeStrings.CONFIRM_FUNDS_AT_WARNING);
2020         }
2021         return true;
2022     };
2023
2024     this.saveCopyChanges = function(liId) {
2025         var self = this;
2026         var copies = [];
2027
2028
2029         var total = 0;
2030         for(var id in this.copyCache) {
2031             var c = this.copyCache[id];
2032             if(!c.isdeleted()) total++;
2033             if(c.isnew() || c.ischanged() || c.isdeleted()) {
2034                 if(c.id() < 0) c.id(null);
2035                 copies.push(c);
2036             }
2037         }
2038
2039
2040         dojo.byId('acq-lit-copy-count-label-' + liId).innerHTML = total;
2041
2042
2043         if (copies.length > 0) {
2044             if (!this.confirmBreachedCopyFunds(copies))
2045                 return;
2046
2047             if (typeof(this._copy_count_cb) == "function")
2048                 this._copy_count_cb(liId, total);
2049
2050             openils.Util.show("acq-lit-update-copies-progress");
2051             fieldmapper.standardRequest(
2052                 ['open-ils.acq', 'open-ils.acq.lineitem_detail.cud.batch'],
2053                 {   async: true,
2054                     params: [openils.User.authtoken, copies],
2055                     onresponse: function(r) {
2056                         var res = openils.Util.readResponse(r);
2057                         litUpdateCopiesProgress.update(res);
2058                     },
2059                     oncomplete: function() {
2060                         self.drawCopies(liId, true /* force_fetch */);
2061                         openils.Util.hide("acq-lit-update-copies-progress");
2062                     }
2063                 }
2064             );
2065         }
2066
2067         var dfa_list = this._virtDfaCountsAsList();
2068         if (dfa_list.length > 0) {
2069             fieldmapper.standardRequest(
2070                 ["open-ils.acq",
2071                 "open-ils.acq.distribution_formula.record_application"],
2072                 {
2073                     "async": true,
2074                     "params": [openils.User.authtoken, dfa_list, liId],
2075                     "onresponse": function(r) {
2076                         var res = openils.Util.readResponse(r);
2077                         if (res && res.length < dfa_list.length)
2078                             alert(localeStrings.DFA_NOT_ALL);
2079                     }
2080                 }
2081             );
2082             this.virtDfaCounts = {};
2083         }
2084     }
2085
2086     this._updateCreatePoPrepayCheckbox = function(prepay) {
2087         var prepay = openils.Util.isTrue(prepay);
2088         this._prepayRequiredByVendor = prepay;
2089         dijit.byId("acq-lit-po-prepay").attr("checked", prepay);
2090     };
2091
2092     this._confirmPoPrepaySituation = function() {
2093         var want_prepay = dijit.byId("acq-lit-po-prepay").attr("checked");
2094         if (want_prepay != this._prepayRequiredByVendor) {
2095             return confirm(
2096                 want_prepay ?
2097                     localeStrings.VENDOR_SAYS_PREPAY_NOT_NEEDED :
2098                     localeStrings.VENDOR_SAYS_PREPAY_NEEDED
2099             );
2100         } else {
2101             return true;
2102         }
2103     };
2104
2105     this.applySelectedLiAction = function(action) {
2106         var self = this;
2107         switch(action) {
2108
2109             case 'delete_selected':
2110                 this._deleteLiList(self.getSelected());
2111                 break;
2112
2113             case 'create_order':
2114                 this._loadPOSelect();
2115                 acqLitPoCreateDialog.show();
2116                 break;
2117
2118             case 'save_picklist':
2119                 acqLitSavePlDialog.show();
2120                 break;
2121
2122             case 'selector_ready':
2123             case 'order_ready':
2124                 acqLitChangeLiStateDialog.attr('state', action.replace('_', '-'));
2125                 acqLitChangeLiStateDialog.show();
2126                 break;
2127
2128             case 'print_po':
2129                 this.printPO();
2130                 break;
2131
2132             case 'po_history':
2133                 location.href = oilsBasePath + '/acq/po/history/' + this.isPO;
2134                 break;
2135
2136             case 'batch_create_invoice':
2137                 this.batchCreateInvoice();
2138                 break;
2139
2140             case 'batch_link_invoice':
2141                 this.batchLinkInvoice();
2142                 break;
2143
2144             case 'receive_po':
2145                 this.receivePO();
2146                 break;
2147
2148             case 'rollback_receive_po':
2149                 this.rollbackPoReceive();
2150                 break;
2151
2152             case 'create_assets':
2153                 this.showAssetCreator();
2154                 break;
2155
2156             case 'export_attr_list':
2157                 this.chooseExportAttr();
2158                 break;
2159
2160             case 'batch_apply_funds':
2161                 this.applyBatchLiFunds();
2162                 break;
2163
2164             case 'add_brief_record':
2165                 if(this.isPO)
2166                     location.href = oilsBasePath + '/acq/picklist/brief_record?po=' + this.isPO;
2167                 else
2168                     location.href = oilsBasePath + '/acq/picklist/brief_record?pl=' + this.isPL;
2169
2170                 break;
2171
2172             case "cancel_lineitems":
2173                 this.maybeCancelLineitems();
2174                 break;
2175
2176             case "change_claim_policy":
2177                 var li_list = this.getSelected();
2178                 this.claimPolicyPicker.attr("value", null);
2179                 liClaimPolicyDialog.show();
2180                 liClaimPolicySave.onClick = function() {
2181                     self.changeClaimPolicy(
2182                         li_list,
2183                         self.claimPolicyPicker.attr("value"),
2184                         function() {
2185                             li_list.forEach(
2186                                 function(li) {
2187                                     self.setClaimPolicyControl(li);
2188                                     self.reconsiderClaimControl(li);
2189                                 }
2190                             );
2191                             liClaimPolicyDialog.hide();
2192                         }
2193                     )
2194                 };
2195                 break;
2196         }
2197     };
2198
2199     this.changeClaimPolicy = function(li_list, value, callback) {
2200         li_list.forEach(
2201             function(li) { li.claim_policy(value); }
2202         );
2203         fieldmapper.standardRequest(
2204             ["open-ils.acq", "open-ils.acq.lineitem.update"], {
2205                 "params": [openils.User.authtoken, li_list],
2206                 "async": true,
2207                 "oncomplete": function(r) {
2208                     r = openils.Util.readResponse(r);
2209                     if (callback) callback(r);
2210                 }
2211             }
2212         );
2213     };
2214
2215     this.showAssetCreator = function(onAssetsCreated) {
2216         if(!this.isPO) return;
2217         var self = this;
2218     
2219         // first, let's see if this PO has any LI's that need to be merged/imported
2220         self.pcrud.search('jub', {purchase_order : this.isPO, eg_bib_id : null}, {
2221             id_list : true,
2222             oncomplete : function(r) {
2223                 var resp = openils.Util.readResponse(r);
2224                 if (resp && resp.length) {
2225                     // PO has some non-linked jubs.  
2226                     
2227                     self.show('asset-creator');
2228                     if(!self.vlAgent.loaded)
2229                         self.vlAgent.init();
2230
2231                     dojo.connect(assetCreatorButton, 'onClick', 
2232                         function() { self.createAssets(onAssetsCreated) });
2233
2234                 } else {
2235
2236                     // all jubs linked, move on to asset creation
2237                     self.createAssets(onAssetsCreated, true); 
2238                 }
2239             }
2240         });
2241     }
2242
2243     this.createAssets = function(onAssetsCreated, noVl) {
2244         this.show('acq-lit-progress-numbers');
2245         var self = this;
2246         var vlArgs = (noVl) ? {} : {vandelay : this.vlAgent.values()};
2247         fieldmapper.standardRequest(
2248             ['open-ils.acq', 'open-ils.acq.purchase_order.assets.create'],
2249             {   async: true,
2250                 params: [this.authtoken, this.isPO, vlArgs],
2251                 onresponse: function(r) {
2252                     var resp = openils.Util.readResponse(r);
2253                     self._updateProgressNumbers(resp, !Boolean(onAssetsCreated), onAssetsCreated);
2254                 }
2255             }
2256         );
2257     }
2258
2259     this.maybeCancelLineitems = function() {
2260         openils.Util.show("acq-lit-cancel-reason", "inline");
2261         if (!acqLitCancelLineitemsButton._prepared) {
2262             var widget = new openils.widget.AutoFieldWidget({
2263                 "fmField": "cancel_reason",
2264                 "fmClass": "jub",
2265                 "parentNode": dojo.byId("acq-lit-cancel-reason-selector"),
2266                 "orgLimitPerms": ["CREATE_PURCHASE_ORDER"],
2267                 "forceSync": true
2268             });
2269             widget.build(
2270                 function(w, ww) {
2271                     acqLitCancelLineitemsButton.onClick = function() {
2272                         if (w.attr("value")) {
2273                             if (confirm(localeStrings.LI_CANCEL_CONFIRM)) {
2274                                 self._cancelLineitems(w.attr("value"));
2275                             }
2276                             openils.Util.hide("acq-lit-cancel-reason");
2277                         }
2278                     };
2279                     acqLitCancelLineitemsButton._prepared = true;
2280                 }
2281             );
2282         }
2283     };
2284
2285     this._cancelLineitems = function(reason) {
2286         var id_list = this.getSelected().map(function(o) { return o.id(); });
2287         fieldmapper.standardRequest(
2288             ["open-ils.acq", "open-ils.acq.lineitem.cancel.batch"], {
2289                 "params": [openils.User.authtoken, id_list, reason],
2290                 "async": true,
2291                 "onresponse": function(r) {
2292                     if (r = openils.Util.readResponse(r)) {
2293                         if (r.li) {
2294                             for (var id in r.li) {
2295                                 self.liCache[id].state(r.li[id].state);
2296                                 self.liCache[id].cancel_reason(
2297                                     r.li[id].cancel_reason
2298                                 );
2299                                 self.updateLiState(self.liCache[id]);
2300                             }
2301                         }
2302                         if (r.lid && self.copyCache) {
2303                             for (var id in r.lid) {
2304                                 if (self.copyCache[id]) {
2305                                     self.copyCache[id].cancel_reason(
2306                                         r.lid[id].cancel_reason
2307                                     );
2308                                     self.updateLidState(self.copyCache[id]);
2309                                 }
2310                             }
2311                         }
2312                     }
2313                 }
2314             }
2315         );
2316     };
2317
2318     this.chooseExportAttr = function() {
2319         if (!acqLitExportAttrSelector._li_setup) {
2320             var self = this;
2321             acqLitExportAttrSelector.store = new dojo.data.ItemFileReadStore(
2322                 {
2323                     "data": acqlimad.toStoreData(
2324                         this.pcrud.search(
2325                             "acqlimad", {"code": li_exportable_attrs}
2326                         )
2327                     )
2328                 }
2329             );
2330             acqLitExportAttrSelector.setValue();
2331             acqLitExportAttrButton.onClick = function(){self.exportAttrList();};
2332             acqLitExportAttrSelector._li_setup = true;
2333         }
2334         openils.Util.show("acq-lit-export-attr-holder", "inline");
2335     };
2336
2337     this.exportAttrList = function() {
2338         var attr_def = acqLitExportAttrSelector.item;
2339         var li_list = this.getSelected();
2340         var value_list = li_list.map(
2341             function(li) {
2342                 return (new openils.acq.Lineitem({"lineitem": li})).findAttr(
2343                     attr_def.code, "lineitem_marc_attr_definition"
2344                 );
2345             }
2346         ).filter(function(attr) { return Boolean(attr); });
2347
2348         if (value_list.length > 0) {
2349             if (value_list.length < li_list.length) {
2350                 if (!confirm(
2351                     dojo.string.substitute(
2352                         localeStrings.EXPORT_SHORT_LIST, [attr_def.description]
2353                     )
2354                 )) {
2355                     return;
2356                 }
2357             }
2358             try {
2359                 openils.XUL.contentToFileSaveDialog(
2360                     value_list.join("\n"),
2361                     localeStrings.EXPORT_SAVE_DIALOG_TITLE
2362                 );
2363             } catch (E) {
2364                 alert(E);
2365             }
2366         } else {
2367             alert(dojo.string.substitute(
2368                 localeStrings.EXPORT_EMPTY_LIST, [attr_def.description]
2369             ));
2370         }
2371
2372         openils.Util.hide("acq-lit-export-attr-holder");
2373     };
2374
2375     this.printPO = function() {
2376         if(!this.isPO) return;
2377         progressDialog.show(true);
2378         fieldmapper.standardRequest(
2379             ['open-ils.acq', 'open-ils.acq.purchase_order.format'],
2380             {   async: true,
2381                 params: [this.authtoken, this.isPO, 'html'],
2382                 oncomplete: function(r) {
2383                     progressDialog.hide();
2384                     var evt = openils.Util.readResponse(r);
2385                     if(evt && evt.template_output()) {
2386                         openils.Util.printHtmlString(evt.template_output().data());
2387                     }
2388                 }
2389             }
2390         );
2391     };
2392
2393     this.batchCreateInvoice = function() {
2394         var liIds = this.getSelected(false, null, true /* id_list */)
2395         if (!liIds.length) return;
2396         var path = oilsBasePath + '/acq/invoice/view?create=1';
2397         dojo.forEach(liIds, function(li, idx) { path += '&attach_li=' + li });
2398         location.href = path;
2399     };
2400
2401     this.batchLinkInvoice = function(create) {
2402         var liIds = this.getSelected(false, null, true /* id_list */)
2403         if (!liIds.length) return;
2404         if (!self.invoiceLinkDialogManager) {
2405             self.invoiceLinkDialogManager =
2406                 new InvoiceLinkDialogManager("li");
2407         }
2408         self.invoiceLinkDialogManager.target = liIds;
2409         acqLitLinkInvoiceDialog.show();
2410     };
2411
2412     this.receivePO = function() {
2413         if (!this.isPO) return;
2414
2415         for (var id in this.liCache) {
2416             /* assumption: liCache reflects exactly the
2417              * set of LIs that belong to our PO */
2418             if (this.liCache[id].state() != "received" &&
2419                 !this.checkLiAlerts(id)) return;
2420         }
2421
2422         this.show('acq-lit-progress-numbers');
2423         var self = this;
2424         fieldmapper.standardRequest(
2425             ['open-ils.acq', 'open-ils.acq.purchase_order.receive'],
2426             {   async: true,
2427                 params: [this.authtoken, this.isPO],
2428                 onresponse : function(r) {
2429                     var resp = openils.Util.readResponse(r);
2430                     self._updateProgressNumbers(resp, true);
2431                 },
2432             }
2433         );
2434     }
2435
2436     this.issueReceive = function(obj, rollback) {
2437         var part =
2438             {"jub": "lineitem", "acqlid": "lineitem_detail"}[obj.classname];
2439         var method =
2440             "open-ils.acq." + part + ".receive" + (rollback ? ".rollback" : "");
2441
2442         progressDialog.show(true);
2443         fieldmapper.standardRequest(
2444             ["open-ils.acq", method], {
2445                 "async": true,
2446                 "params": [this.authtoken, obj.id()],
2447                 "onresponse": function(r) {
2448                     if (r = openils.Util.readResponse(r)) {
2449                         self.fetchClaimInfo(
2450                             part == "lineitem" ? obj.id() : obj.lineitem(),
2451                             /* force */ true,
2452                             function() { self.handleReceive(r); }
2453                         );
2454                         progressDialog.hide();
2455                     }
2456                 }
2457             }
2458         );
2459     };
2460
2461     /**
2462      * Handles the responses from receive and rollback ML calls.
2463      */
2464     this.handleReceive = function(resp) {
2465         if (resp) {
2466             if (resp.li) {
2467                 for (var li_id in resp.li) {
2468                     for (var key in resp.li[li_id])
2469                         self.liCache[li_id][key](resp.li[li_id][key]);
2470                     self.updateLiState(self.liCache[li_id]);
2471                 }
2472             }
2473             if (resp.po) {
2474                 if (typeof(self.poUpdateCallback) == "function")
2475                     self.poUpdateCallback(resp.po);
2476             }
2477             if (resp.lid) {
2478                 for (var lid_id in resp.lid) {
2479                     for (var key in resp.lid[lid_id])
2480                         self.copyCache[lid_id][key](resp.lid[lid_id][key]);
2481                     self.updateLidState(self.copyCache[lid_id]);
2482                 }
2483             }
2484         }
2485     };
2486
2487     this.rollbackPoReceive = function() {
2488         if(!this.isPO) return;
2489         if(!confirm(localeStrings.ROLLBACK_PO_RECEIVE_CONFIRM)) return;
2490         this.show('acq-lit-progress-numbers');
2491         var self = this;
2492         fieldmapper.standardRequest(
2493             ['open-ils.acq', 'open-ils.acq.purchase_order.receive.rollback'],
2494             {   async: true,
2495                 params: [this.authtoken, this.isPO],
2496                 onresponse : function(r) {
2497                     var resp = openils.Util.readResponse(r);
2498                     self._updateProgressNumbers(resp, true);
2499                 },
2500             }
2501         );
2502     }
2503
2504     this._updateProgressNumbers = function(resp, reloadOnComplete, onComplete) {
2505         this.vlAgent.handleResponse(resp,
2506             function(resp, res) {
2507                 if(reloadOnComplete)
2508                      location.href = location.href;
2509                 if (onComplete)
2510                     onComplete(resp, res);
2511             }
2512         );
2513     }
2514
2515
2516     this._createPO = function(fields) {
2517         var wantall = (fields.create_from == "all");
2518
2519         /* If we're a picklist or purchase order already and the user wants
2520          * all lineitems, we might have pages' worth of lineitems haven't all
2521          * been loaded yet, so getSelected() won't find them.  The server,
2522          * however, should know about all our lineitems, so let's ask the
2523          * server for a complete list.
2524          */
2525
2526         if (wantall) {
2527             this.getSelected(
2528                 true, function(list) {
2529                     self._createPOFromLineitems(fields, list);
2530                 }, /* id_list */ true
2531             );
2532         } else {
2533             this._createPOFromLineitems(fields, this.getSelected(false, null, true /* id_list */));
2534         }
2535     };
2536
2537     this._createPOFromLineitems = function(fields, selected) {
2538         if (selected.length == 0) return;
2539         var self = this;
2540
2541         var po = new fieldmapper.acqpo();
2542         po.provider(this.createPoProviderSelector.attr("value"));
2543         po.ordering_agency(this.createPoAgencySelector.attr("value"));
2544         po.prepayment_required(fields.prepayment_required[0] ? true : false);
2545
2546         // if we're creating assets, delay the asset creation 
2547         // until after the PO is created.  This will allow us to 
2548         // use showAssetCreator() directly.
2549
2550         fieldmapper.standardRequest(
2551             ["open-ils.acq", "open-ils.acq.purchase_order.create"],
2552             {   async: true,
2553                 params: [
2554                     openils.User.authtoken, 
2555                     po, {lineitems : selected}
2556                 ],
2557                 onresponse : function(r) {
2558                     var resp = openils.Util.readResponse(r);
2559                     if (resp.complete) {
2560                         // self.isPO is needed for showAssetCreator();
2561                         self.isPO = resp.purchase_order.id(); 
2562                         var redir = oilsBasePath + "/acq/po/view/" + self.isPO;
2563                         if (fields.create_assets[0]) {
2564                             self.showAssetCreator(
2565                                 function() {location.href = redir}
2566                             );
2567                         } else {
2568                            location.href = redir;
2569                         }
2570                     }
2571                 }
2572             }
2573         );
2574     };
2575
2576
2577     this.batchFundWidget = null;
2578
2579     this.applyBatchLiFunds = function() {
2580
2581         var liIds = this.getSelected().map(function(li) { return li.id(); });
2582         if(liIds.length == 0) return; // warn?
2583
2584         var self = this;
2585         batchFundUpdateDialog.show();
2586
2587         if(!this.batchFundWidget) {
2588             this.batchFundWidget = new openils.widget.AutoFieldWidget({
2589                 fmClass : 'acqf',
2590                 selfReference : true,
2591                 labelFormat : fundLabelFormat,
2592                 searchFormat : fundSearchFormat,
2593                 searchFilter : {"active": "t"},
2594                 parentNode : dojo.byId('acq-lit-batch-fund-selector'),
2595                 orgLimitPerms : ['CREATE_PICKLIST', 'CREATE_PURCHASE_ORDER'],
2596                 dijitArgs : { "required": true, "labelType": "html" },
2597                 forceSync : true
2598             });
2599             this.batchFundWidget.build();
2600         }
2601
2602         dojo.connect(batchFundUpdateCancel, 'onClick', function() { batchFundUpdateDialog.hide(); });
2603         dojo.connect(batchFundUpdateSubmit, 'onClick', 
2604             function() { 
2605
2606                 // TODO: call .dry_run first to test thresholds
2607                 fieldmapper.standardRequest(
2608                     ['open-ils.acq', 'open-ils.acq.lineitem.fund.update.batch'],
2609                     {
2610                         params : [
2611                             openils.User.authtoken, 
2612                             liIds,
2613                             self.batchFundWidget.widget.attr('value')
2614                         ],
2615                         oncomplete : function(r) {
2616                             var resp = openils.Util.readResponse(r);
2617                             if(resp) {
2618                                 location.href = location.href;
2619                             }
2620                         }
2621                     }
2622                 )
2623             }
2624         );
2625     }
2626
2627     this._deleteLiList = function(list, idx) {
2628         if(idx == null) idx = 0;
2629         if(idx >= list.length) return;
2630
2631         var li = list[idx];
2632         var liId = li.id();
2633
2634         if (this.isPO && (li.state() == "on-order" || li.state() == "received")) {
2635             /* It makes little sense to delete a lineitem from a PO that has
2636              * already been marked 'on-order'.  Especially if EDI is in use,
2637              * such a purchase order will probably have already been shipped
2638              * off to a vendor, and mucking with it at this point could leave
2639              * your data in a bad state that doesn't jive with reality.
2640              *
2641              * I could see making this restriction even firmer.
2642              *
2643              * I could also see adjusting the li state comparisons, extending
2644              * the comparison to the PO's state, and/or providing functions
2645              * that house the logic for comparing states in a single location.
2646              *
2647              * Yes, this will be really annoying if you have selected a lot
2648              * of lineitems to cancel that have been ordered. You'll get a
2649              * confirm dialog for each one.
2650              */
2651
2652             if (!confirm(localeStrings.DEL_LI_FROM_PO)) {
2653                 self._deleteLiList(list, ++idx); /* move on to next in list */
2654                 return;
2655             }
2656         }
2657
2658         fieldmapper.standardRequest(
2659             ['open-ils.acq',
2660              this.isPO ? 'open-ils.acq.purchase_order.lineitem.delete' : 'open-ils.acq.picklist.lineitem.delete'],
2661             {   async: true,
2662                 params: [openils.User.authtoken, liId],
2663                 oncomplete: function(r) {
2664                     self.removeLineitem(liId);
2665                     self._deleteLiList(list, ++idx);
2666                 }
2667             }
2668         );
2669     }
2670
2671     this.editOrderMarc = function(li) {
2672
2673         /*  To run in Firefox directly, must set signed.applets.codebase_principal_support
2674             to true in about:config */
2675
2676         if(openils.XUL.isXUL()) {
2677             win = window.open('/xul/' + openils.XUL.buildId() + '/server/cat/marcedit.xul','','chrome');
2678         } else {
2679             win = window.open('/xul/server/cat/marcedit.xul','','chrome'); 
2680         }
2681         var self = this;
2682         win.xulG = {
2683             record : {marc : li.marc(), "rtype": "bre"},
2684             save : {
2685                 label: 'Save Record', // XXX I18N
2686                 func: function(xmlString) {
2687                     li.marc(xmlString);
2688                     fieldmapper.standardRequest(
2689                         ['open-ils.acq', 'open-ils.acq.lineitem.update'],
2690                         {   async: true,
2691                             params: [openils.User.authtoken, li],
2692                             oncomplete: function(r) {
2693                                 openils.Util.readResponse(r);
2694                                 win.close();
2695                                 self.drawInfo(li.id())
2696                             }
2697                         }
2698                     );
2699                 },
2700             },
2701             'lock_tab' : typeof xulG != 'undefined' ? (typeof xulG['lock_tab'] != 'undefined' ? xulG.lock_tab : undefined) : undefined,
2702             'unlock_tab' : typeof xulG != 'undefined' ? (typeof xulG['unlock_tab'] != 'undefined' ? xulG.unlock_tab : undefined) : undefined
2703         };
2704     }
2705
2706     this._savePl = function(values) {
2707         this.getSelected(
2708             (values.which == 'all'),
2709             function(list) { self._savePlFromLineitems(values, list); }
2710         );
2711     };
2712
2713     this._savePlFromLineitems = function(values, selected) {
2714         openils.Util.show("acq-lit-generic-progress");
2715
2716         if(values.new_name) {
2717             openils.acq.Picklist.create(
2718                 {name: values.new_name},
2719                 function(id) {
2720                     self._updateLiList(
2721                         id, selected, 0,
2722                         function() {
2723                             location.href =
2724                                 oilsBasePath + "/acq/picklist/view/" + id;
2725                         }
2726                     );
2727                 }
2728             );
2729         } else if(values.existing_pl) {
2730             // update lineitems to use an existing picklist
2731             self._updateLiList(
2732                 values.existing_pl, selected, 0,
2733                 function(){
2734                     location.href =
2735                         oilsBasePath + "/acq/picklist/view/" +
2736                         values.existing_pl;
2737                 }
2738             );
2739         }
2740     };
2741
2742     this._updateLiState = function(values, state) {
2743         progressDialog.show(true);
2744         this.getSelected(
2745             (values.which == 'all'),
2746             function(list) {
2747                 self._updateLiStateFromLineitems(values, state, list);
2748             }
2749         );
2750     };
2751
2752     this._updateLiStateFromLineitems = function(values, state, selected) {
2753         if(!selected.length) return;
2754         dojo.forEach(selected, function(li) {li.state(state);});
2755         self._updateLiList(null, selected, 0,
2756             // TODO consider inline updates for efficiency
2757             function() { location.href = location.href }
2758         );
2759     };
2760
2761     this._updateLiList = function(pl, list, idx, oncomplete) {
2762         if(idx >= list.length) return oncomplete();
2763         var li = list[idx];
2764         if(pl != null) li.picklist(pl);
2765         litGenericProgress.update({maximum: list.length, progress: idx});
2766         new openils.acq.Lineitem({lineitem:li}).update(
2767             function(r) {
2768                 self._updateLiList(pl, list, ++idx, oncomplete);
2769             }
2770         );
2771     }
2772
2773     this._loadPOSelect = function() {
2774         if (!this.createPoProviderSelector) {
2775             var widget = new openils.widget.AutoFieldWidget({
2776                 "fmField": "provider",
2777                 "fmClass": "acqpo",
2778                 "searchFilter": {"active": "t"},
2779                 "parentNode": dojo.byId("acq-lit-po-provider"),
2780                 "dijitArgs": {
2781                     "onChange": function() {
2782                         if (this.item) {
2783                             self._updateCreatePoPrepayCheckbox(
2784                                 this.item.prepayment_required()
2785                             );
2786                         }
2787                     }
2788                 }
2789             });
2790             widget.build(function(w) { self.createPoProviderSelector = w; });
2791         }
2792
2793         if (!this.createPoAgencySelector) {
2794             var widget = new openils.widget.AutoFieldWidget({
2795                 "fmField": "ordering_agency",
2796                 "fmClass": "acqpo",
2797                 "parentNode": dojo.byId("acq-lit-po-agency"),
2798                 "orgLimitPerms": ["CREATE_PURCHASE_ORDER"],
2799             });
2800             widget.build(function(w) { self.createPoAgencySelector = w; });
2801         }
2802     };
2803
2804     this.showRealCopyEditUI = function(li) {
2805         copyList = [];
2806         var self = this;
2807         this.volCache = {};
2808
2809         this._fetchLineitem(li.id(), 
2810             function(fullLi) {
2811                 li = self.liCache[li.id()] = fullLi;
2812
2813                 self.pcrud.search(
2814                     'acp', {
2815                         id : li.lineitem_details().map(
2816                             function(item) { return item.eg_copy_id() }
2817                         )
2818                     }, {
2819                         async : true,
2820                         oncomplete : function(r) {
2821                             try {
2822                                 var r_list = openils.Util.readResponse( r );
2823                                 for (var i = 0; i < r_list.length; i++) {
2824                                     var copy = r_list[i];
2825                                     var volId = copy.call_number();
2826                                     var volume = self.volCache[volId];
2827                                     if(!volume) {
2828                                         volume = self.volCache[volId] = self.pcrud.retrieve('acn', volId);
2829                                     }
2830                                     copy.call_number(volume);
2831                                     copyList.push(copy);
2832                                 }
2833                                 if (xulG) {
2834                                     xulG.volume_item_creator( { 'existing_copies' : copyList } );
2835                                 }
2836                             } catch(E) {
2837                                 alert('error in oncomplete: ' + E);
2838                             }
2839                         }
2840                     }
2841                 );
2842             }
2843         );
2844     },
2845
2846     this.drawBibFinder = function(li) {
2847
2848         var query = '';
2849         var liWrapper = new openils.acq.Lineitem({lineitem:li});
2850
2851         dojo.forEach(
2852             ['isbn', 'upc', 'issn', 'title', 'author'],
2853             function(field) {
2854                 var val = liWrapper.findAttr(field, 'lineitem_marc_attr_definition');
2855                 if(val) {
2856                     if(field == 'title' || field == 'author') {
2857                         query += field +':' + val + ' ';
2858                     } else {
2859                         query += 'identifier|' + field + ':' + val + ' ';
2860                     }
2861                 }
2862             }
2863         );
2864
2865         win = window.open(
2866             oilsBasePath + '/acq/lineitem/findbib?query=' + escape(query),
2867             '', 'resizable,scrollbars=1,chrome');
2868
2869         win.window.recordFound = function(bibId) { 
2870             win.close();
2871
2872             var attrs = li.attributes();
2873             li.attributes(null);
2874             li.eg_bib_id(bibId);
2875
2876             fieldmapper.standardRequest(
2877                 ["open-ils.acq", "open-ils.acq.lineitem.update"], 
2878                 {
2879                     "params": [openils.User.authtoken, li],
2880                     "async": true,
2881                     "oncomplete": function(r) {
2882                         if(openils.Util.readResponse(r)) {
2883                             location.href = location.href;
2884                         }
2885                     }
2886                 }
2887             );
2888         }
2889     }
2890 }
2891