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