]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/util.js
in preparation of owning lib dropdown, refactored volume/copy creation and copy editi...
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / cat / util.js
1 dump('entering cat/util.js\n');
2
3 if (typeof cat == 'undefined') var cat = {};
4 cat.util = {};
5
6 cat.util.EXPORT_OK      = [ 
7         'spawn_copy_editor', 'add_copies_to_bucket', 'show_in_opac', 'spawn_spine_editor', 'transfer_copies', 
8         'mark_item_missing', 'mark_item_damaged', 'replace_barcode',
9 ];
10 cat.util.EXPORT_TAGS    = { ':all' : cat.util.EXPORT_OK };
11
12 cat.util.replace_barcode = function(old_bc) {
13         try {
14                 JSAN.use('util.network');
15                 var network = new util.network();
16
17                 if (!old_bc) old_bc = window.prompt('Enter original barcode for the copy:','','Replace Barcode');
18                 if (!old_bc) return;
19
20                 var copy = network.simple_request('FM_ACP_RETRIEVE_VIA_BARCODE',[ old_bc ]);
21                 if (typeof copy.ilsevent != 'undefined') throw(copy); 
22                 if (!copy) throw(copy);
23
24                 // Why did I want to do this twice?  Because this copy is more fleshed?
25                 copy = network.simple_request('FM_ACP_RETRIEVE',[ copy.id() ]);
26                 if (typeof copy.ilsevent != 'undefined') throw(copy);
27                 if (!copy) throw(copy);
28
29                 var new_bc = window.prompt('Enter the replacement barcode for the copy with barcode ' + old_bc + ':','','Replace Barcode');
30                 if (!new_bc) {
31                         alert('Rename aborted.  Blank for barcode not allowed.');
32                         return old_bc;
33                 }
34
35                 var test = network.simple_request('FM_ACP_RETRIEVE_VIA_BARCODE',[ ses(), new_bc ]);
36                 if (typeof test.ilsevent == 'undefined') {
37                         alert('Rename aborted.  Another copy has that barcode');
38                         return old_bc;
39                 }
40                 copy.barcode(new_bc); copy.ischanged('1');
41                 var r = network.simple_request('FM_ACP_FLESHED_BATCH_UPDATE', [ ses(), [ copy ] ]);
42                 if (typeof r.ilsevent != 'undefined') { if (r.ilsevent != 0) throw(r); }
43                 return new_bc;
44         } catch(E) {
45                 JSAN.use('util.error'); var error = new util.error();
46                 error.standard_unexpected_error_alert('Rename did not likely occur.',E);
47         }
48 }
49
50 cat.util.transfer_copies = function(params) {
51         JSAN.use('util.error'); var error = new util.error();
52         JSAN.use('OpenILS.data'); var data = new OpenILS.data();
53         JSAN.use('util.network'); var network = new util.network();
54         try {
55                 data.stash_retrieve();
56                 if (!data.marked_volume) {
57                         alert('Please mark a volume as the destination from within holdings maintenance and then try this again.');
58                         return;
59                 }
60                 netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect UniversalBrowserWrite');
61                 var xml = '<vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" flex="1" style="overflow: auto">';
62                 if (!params.message) {
63                         params.message = 'Transfer items from their original volumes to ';
64                         params.message += data.hash.aou[ params.owning_lib ].shortname() + "'s volume labelled ";
65                         params.message += '"' + params.volume_label + '" on the following record (and change their circ libs to match)?';
66                 }
67
68                 xml += '<description>' + params.message.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;') + '</description>';
69                 xml += '<hbox><button label="Transfer" name="fancy_submit"/>';
70                 xml += '<button label="Cancel" accesskey="C" name="fancy_cancel"/></hbox>';
71                 xml += '<iframe style="overflow: scroll" flex="1" src="' + urls.XUL_BIB_BRIEF + '?docid=' + params.docid + '"/>';
72                 xml += '</vbox>';
73                 data.temp_transfer = xml; data.stash('temp_transfer');
74                 window.open(
75                         urls.XUL_FANCY_PROMPT
76                         + '?xml_in_stash=temp_transfer'
77                         + '&title=' + window.escape('Item Transfer'),
78                         'fancy_prompt', 'chrome,resizable,modal,width=500,height=300'
79                 );
80                 data.stash_retrieve();
81                 if (data.fancy_prompt_data == '') { alert('Transfer Aborted'); return; }
82
83                 JSAN.use('util.functional');
84
85                 var copies = network.simple_request('FM_ACP_FLESHED_BATCH_RETRIEVE', [ params.copy_ids ]);
86
87                 for (var i = 0; i < copies.length; i++) {
88                         copies[i].call_number( data.marked_volume );
89                         copies[i].circ_lib( params.owning_lib );
90                         copies[i].ischanged( 1 );
91                 }
92
93                 var robj = network.simple_request(
94                         'FM_ACP_FLESHED_BATCH_UPDATE', 
95                         [ ses(), copies, true ], 
96                         null,
97                         {
98                                 'title' : 'Override Transfer Failure?',
99                                 'overridable_events' : [
100                                         1208 /* TITLE_LAST_COPY */,
101                                         1227 /* COPY_DELETE_WARNING */,
102                                 ]
103                         }
104                 );
105                 
106                 if (typeof robj.ilsevent != 'undefined') {
107                         throw(robj);
108                 } else {
109                         alert('Items transferred.');
110                 }
111
112         } catch(E) {
113                 error.standard_unexpected_error_alert('All items not likely transferred.',E);
114         }
115 }
116
117 cat.util.spawn_spine_editor = function(selection_list) {
118         JSAN.use('util.error'); var error = new util.error();
119         try {
120                 JSAN.use('util.functional');
121                 JSAN.use('OpenILS.data'); var data = new OpenILS.data(); data.stash_retrieve();
122                 data.temp_barcodes_for_labels = util.functional.map_list( selection_list, function(o){return o.barcode;}) ; 
123                 data.stash('temp_barcodes_for_labels');
124                 xulG.new_tab(
125                         xulG.url_prefix( urls.XUL_SPINE_LABEL ),
126                         { 'tab_name' : 'Spine Labels' },
127                         {}
128                 );
129         } catch(E) {
130                 error.standard_unexpected_error_alert('Spine Labels',E);
131         }
132 }
133
134 cat.util.show_in_opac = function(selection_list) {
135         JSAN.use('util.error'); var error = new util.error();
136         var doc_id; var seen = {};
137         try {
138                 for (var i = 0; i < selection_list.length; i++) {
139                         doc_id = selection_list[i].doc_id;
140                         if (!doc_id) {
141                                 alert(selection_list[i].barcode + ' is not cataloged');
142                                 continue;
143                         }
144                         if (typeof seen[doc_id] != 'undefined') {
145                                 continue;
146                         }
147                         seen[doc_id] = true;
148                         var opac_url = xulG.url_prefix( urls.opac_rdetail ) + '?r=' + doc_id;
149                         var content_params = { 
150                                 'session' : ses(),
151                                 'authtime' : ses('authtime'),
152                                 'opac_url' : opac_url,
153                         };
154                         xulG.new_tab(
155                                 xulG.url_prefix(urls.XUL_OPAC_WRAPPER), 
156                                 {'tab_name':'Retrieving title...'}, 
157                                 content_params
158                         );
159                 }
160         } catch(E) {
161                 error.standard_unexpected_error_alert('Error opening catalog for document id = ' + doc_id,E);
162         }
163 }
164
165 cat.util.add_copies_to_bucket = function(selection_list) {
166         JSAN.use('util.functional');
167         JSAN.use('util.window'); var win = new util.window();
168         JSAN.use('OpenILS.data'); var data = new OpenILS.data(); data.init({'via':'stash'});
169         data.cb_temp_copy_ids = js2JSON(
170                 util.functional.map_list(
171                         selection_list,
172                         function (o) {
173                                 if (typeof o.copy_id != 'undefined' && o.copy_id != null) {
174                                         return o.copy_id;
175                                 } else {
176                                         return o;
177                                 }
178                         }
179                 )
180         );
181         data.stash('cb_temp_copy_ids');
182         win.open( 
183                 xulG.url_prefix(urls.XUL_COPY_BUCKETS_QUICK),
184                 'sel_bucket_win' + win.window_name_increment(),
185                 'chrome,resizable,center'
186         );
187 }
188
189 cat.util.spawn_copy_editor = function(list,edit) {
190         try {
191                 var obj = {};
192                 JSAN.use('OpenILS.data'); obj.data = new OpenILS.data(); obj.data.init({'via':'stash'});
193                 JSAN.use('util.network'); obj.network = new util.network();
194                 JSAN.use('util.error'); obj.error = new util.error();
195         
196                 if (list.length == 0) return;
197         
198                 var title = list.length == 1 ? '' : 'Batch '; 
199                 title += edit == 1 ? 'Edit' : 'View';
200                 title += ' Copy Attributes';
201         
202                 JSAN.use('util.window'); var win = new util.window();
203                 obj.data.temp_copies = undefined; obj.data.stash('temp_copies');
204                 obj.data.temp_callnumbers = undefined; obj.data.stash('temp_callnumbers');
205                 obj.data.temp_copy_ids = js2JSON(list);
206                 obj.data.stash('temp_copy_ids');
207                 var w = win.open(
208                         window.xulG.url_prefix(urls.XUL_COPY_EDITOR)
209                                 +'?handle_update=1&edit='+edit,
210                         title,
211                         'chrome,modal,resizable'
212                 );
213                 /* FIXME -- need to unique the temp space, and not rely on modalness of window */
214                 obj.data.stash_retrieve();
215                 if (!obj.data.temp_copies) alert('Copies not modified.');
216                 obj.data.temp_copies = undefined; obj.data.stash('temp_copies');
217                 obj.data.temp_callnumbers = undefined; obj.data.stash('temp_callnumbers');
218                 obj.data.temp_copy_ids = undefined; obj.data.stash('temp_copy_ids');
219         } catch(E) {
220                 JSAN.use('util.error'); var error = new util.error();
221                 error.standard_unexpected_error_alert('error in cat.util.spawn_copy_editor',E);
222         }
223 }
224
225 cat.util.mark_item_damaged = function(copy_ids) {
226         var error;
227         try {
228                 JSAN.use('util.error'); error = new util.error();
229                 JSAN.use('util.functional');
230                 JSAN.use('util.network'); var network = new util.network();
231                 var copies = network.simple_request('FM_ACP_FLESHED_BATCH_RETRIEVE', [ copy_ids ]);
232                 if (typeof copies.ilsevent != 'undefined') throw(copies);
233                 var magic_status = false;
234                 for (var i = 0; i < copies.length; i++) {
235                         var status = copies[i].status(); if (typeof status == 'object') status = status.id();
236                         if (typeof my_constants.magical_statuses[ status ] != 'undefined') 
237                                 if (my_constants.magical_statuses[ status ].block_mark_item_action) magic_status = true;
238                 }
239                 if (magic_status) {
240                 
241                         error.yns_alert('Action failed.  One or more of these items is in a special status (Checked Out, In Transit, etc.) and cannot be changed to the Damaged status.','Action failed.','OK',null,null,'Check here to confirm this message');
242
243                 } else {
244
245                         var r = error.yns_alert('Change the status for these items to Damaged?  You will have to manually retrieve the last circulation if you need to bill a patron.  Barcodes: ' + util.functional.map_list( copies, function(o) { return o.barcode(); } ).join(", "), 'Mark Damaged', 'OK', 'Cancel', null, 'Check here to confirm this action');
246
247                         if (r == 0) {
248                                 var count = 0;
249                                 for (var i = 0; i < copies.length; i++) {
250                                         try {
251                                                 var robj = network.simple_request('MARK_ITEM_DAMAGED',[ses(),copies[i].id()]);
252                                                 if (typeof robj.ilsevent != 'undefined') throw(robj);
253                                                 count++;
254                                         } catch(E) {
255                                                 error.standard_unexpected_error_alert('Error marking item ' + copies[i].barcode() + ' damaged.',E);
256                                         }
257                                 }
258                                 alert(count == 1 ? 'Item marked Damaged' : count + ' items marked Damaged.');
259                         }
260                 }
261
262         } catch(E) {
263                 if (error) error.standard_unexpected_error_alert('cat.util.mark_item_damaged',E); else alert('FIXME: ' + E);
264         }
265 }
266
267 cat.util.mark_item_missing = function(copy_ids) {
268         var error;
269         try {
270                 JSAN.use('util.error'); error = new util.error();
271                 JSAN.use('util.functional');
272                 JSAN.use('util.network'); var network = new util.network();
273                 var copies = network.simple_request('FM_ACP_FLESHED_BATCH_RETRIEVE', [ copy_ids ]);
274                 if (typeof copies.ilsevent != 'undefined') throw(copies);
275                 var magic_status = false;
276                 for (var i = 0; i < copies.length; i++) {
277                         var status = copies[i].status(); if (typeof status == 'object') status = status.id();
278                         if (typeof my_constants.magical_statuses[ status ] != 'undefined') 
279                                 if (my_constants.magical_statuses[ status ].block_mark_item_action) magic_status = true;
280                 }
281                 if (magic_status) {
282                 
283                         error.yns_alert('Action failed.  One or more of these items is in a special status (Checked Out, In Transit, etc.) and cannot be changed to the Missing status.','Action failed.','OK',null,null,'Check here to confirm this message');
284
285                 } else {
286
287                         var r = error.yns_alert('Change the status for these items to Missing?  Barcodes: ' + util.functional.map_list( copies, function(o) { return o.barcode(); } ).join(", "), 'Mark Missing', 'OK', 'Cancel', null, 'Check here to confirm this action');
288
289                         if (r == 0) {
290                                 var count = 0;
291                                 for (var i = 0; i < copies.length; i++) {
292                                         try {
293                                                 var robj = network.simple_request('MARK_ITEM_MISSING',[ses(),copies[i].id()]);
294                                                 if (typeof robj.ilsevent != 'undefined') throw(robj);
295                                                 count++;
296                                         } catch(E) {
297                                                 error.standard_unexpected_error_alert('Error marking item ' + copies[i].barcode() + ' missing.',E);
298                                         }
299                                 }
300                                 alert(count == 1 ? 'Item marked Missing' : count + ' items marked Missing.');
301                         }
302                 }
303
304         } catch(E) {
305                 if (error) error.standard_unexpected_error_alert('cat.util.mark_item_missing',E); else alert('FIXME: ' + E);
306         }
307 }
308
309
310 dump('exiting cat/util.js\n');