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