]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/conify/global/config/copy_status.html
Merge branch 'master' of git://git.evergreen-ils.org/Evergreen into ttopac
[working/Evergreen.git] / Open-ILS / web / conify / global / config / copy_status.html
1 <!--
2 # Copyright (C) 2008  Georgia Public Library Service / Equinox Software, Inc
3 # Mike Rylander <miker@esilibrary.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 -->
15 <!DOCTYPE html PUBLIC 
16         "-//W3C//DTD XHTML 1.0 Transitional//EN" 
17         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
18         <!--#include virtual="/opac/locale/${locale}/conify.dtd"-->
19 ]>
20 <html xmlns="http://www.w3.org/1999/xhtml">
21         <head>
22                 <title>&conify.copy_status.title;</title>
23
24                 <style type="text/css">
25                         @import url('/js/dojo/dojox/grid/_grid/tundraGrid.css');
26                         @import url('/js/dojo/dojo/resources/dojo.css');
27                         @import url('/js/dojo/dijit/themes/tundra/tundra.css');
28                         @import url('/js/dojo/dojox/widget/Toaster/Toaster.css');
29                 </style>
30
31                 <style type="text/css">
32                         html, body {
33                                 height: 100%;
34                                 width: 100%;
35                                 margin: 0px 0px 0px 0px;
36                                 padding: 0px 0px 0px 0px;
37                                 overflow: hidden;
38                         }
39
40                         #status_grid {
41                                 border: 0px;
42                                 width: 100%;
43                                 height: 100%;
44                         }
45
46                         #grid_container {
47                                 width: 100%;
48                                 height: 100%;
49                         }
50                 </style>
51
52                 <!-- The OpenSRF API writ JS -->
53                 <script language='javascript' src='/IDL2js' type='text/javascript'></script>
54                 <script language='javascript' src='/opac/common/js/utils.js' type='text/javascript'></script>
55                 <script language='javascript' src='/opac/common/js/CGI.js' type='text/javascript'></script>
56                 <script language='javascript' src='/opac/common/js/JSON_v1.js' type='text/javascript'></script>
57
58                 <!-- Dojo goodness -->
59                 <script type="text/javascript" src="../admin.js"></script>
60                 <script type="text/javascript" src="/js/dojo/dojo/dojo.js"></script>
61                 <script type="text/javascript" src="/js/dojo/dojo/openils_dojo.js"></script>
62                 <script type="text/javascript" src="/js/dojo/dijit/dijit.js"></script>
63
64                 <script type="text/javascript" src="copy_status.js"></script>
65
66         <script type="text/javascript">
67 <![CDATA[
68             var dirtyStore = [];
69
70             var _status_list = pCRUD.retrieveAll('ccs', { order_by : { ccs : 'name' } });
71             var _status_data = ccs.toStoreData( _status_list, 'name' );
72             var status_store = new dojo.data.ItemFileWriteStore({ data : _status_data });
73
74             status_store.onSet = function (item, attr, o, n) {
75                 if (attr == 'ischanged') return;
76                 if (n == o) return;
77                 this.setValue( item, 'ischanged', 1);
78
79                 if (attr == 'holdable' && typeof n != 'string')
80                     this.setValue(item, 'holdable', n ? 't' : 'f');
81
82                 if (attr == 'opac_visible' && typeof n != 'string')
83                     this.setValue(item, 'opac_visible', n ? 't' : 'f');
84
85             };
86
87             dojo.addOnUnload( function (event) {
88
89                 status_store.fetch({
90                     query : { ischanged : 1 },
91                     onItem : function (item, req) { try { if (this.isItem( item )) dirtyStore.push( item ); } catch (e) { /* meh */ } },
92                     scope : status_store
93                 });
94
95                 if (dirtyStore.length > 0) {
96                     var confirmation = confirm(
97                         ccs_strings.CONFIRM_EXIT_CCS
98                     );
99
100                     if (confirmation) {
101                         for (var i in window.dirtyStore) {
102                             current_status = dirtyStore[i];
103                             save_status(true);
104                         }
105                     }
106                 }
107
108             });
109 ]]>
110         </script>
111
112         </head>
113
114         <body class="tundra" id='pagebody'>
115
116                 <div dojoType="dijit.layout.LayoutContainer" id="grid_container" jsId="grid_container" orientation="vertical">
117
118                         <div dojoType="dijit.layout.LayoutContainer" orientation="horizontal" style="margin-top: 5px;" layoutAlign="top">
119                                 <span>&conify.copy_status.new_status.label;</span>
120                                 <div dojoType="dijit.form.TextBox" id="new_status_code" jsId="new_status_name" label="&conify.copy_status.new_status.name;"></div>
121                                 <button dojoType="dijit.form.Button" id="save_new_status_code" jsId="save_new_status_name" label="&conify.copy_status.new_status.save;"> 
122                                         <script type="dojo/connect" event="onClick">
123 <![CDATA[
124                                                 var new_name = new_status_name.getValue();
125                                                 if (!new_name) return;
126
127                         var new_fm_obj = new ccs().fromHash({
128                                 isnew           : 1,
129                             name            : new_name
130                             });
131     
132                         var err = false;
133                             pCRUD.create(new_fm_obj, {
134                                 onerror : function (r) {
135                                 highlighter.red.play();
136                                     status_update( ccs_strings.ERROR_CALLING_METHOD_CCS );
137                                 err = true;
138                                 },
139                                 oncomplete : function (r, list) {
140                                     var new_item_hash = list[0].toHash();
141                                     status_store.newItem( new_item_hash );
142                                                                 status_update( dojo.string.substitute(ccs_strings.SUCCESS_CREATING_STATUS, [new_item_hash.name]) );
143                                                                 status_grid.model.sort(-2);
144                                                                 highlighter.green.play();
145                                 }
146                         });
147 ]]> 
148                         </script>
149                                 </button>
150                         </div>
151
152                         <div dojoType="dijit.layout.ContentPane" style="width:100%; height:100%;" layoutAlign="client">
153                                 <div dojoType="dojox.grid.data.DojoData" id="status_data_model" jsId="status_data_model" store="status_store" query="{ 'id' : '*' }"></div>
154                                 <div id="status_grid" dojoType="dojox.Grid" jsId="status_grid">
155                                         <script type="dojo/connect" event="startup">
156 <![CDATA[
157                                                 var g = this;
158                                                 var status_grid_layout = [
159                                                         {       cells : [
160                                                                         [
161                                                                                 { name : ccs_strings.ID,
162                                                                                   field : "id",
163                                                                                 },
164                                                                                 { name : ccs_strings.NAME,
165                                                                                   field : "name",
166                                                                                   width : "auto",
167                                                                                   editor : dojox.grid.editors.Dijit
168                                                                                 },
169                                                                                 { name : ccs_strings.TRANSLATION,
170                                                                                   width : "10em",
171                                                                                   height : "2em",
172                                           formatter: function (row) {
173                                                                                                 return '<span class="status_grid_trans_cell_'+row+'"></span>';
174                                           },
175                                                                                   get : function (row) {
176                                                                                         if (!window.status_rows) window.status_rows = [];
177                                                                                         var r = window.status_data_model.getRow(row);
178                                                                                         if (r) {
179                                                                                                 window.status_rows[row] = new ccs().fromHash(window.status_data_model.getRow(row));
180                                                                                                 setTimeout(
181                                                                                                         'dojo.query(".status_grid_trans_cell_' + row + '").'+
182                                                                                                                 'instantiate(openils.widget.TranslatorPopup,{field:"name",'+
183                                                                                                                 'targetObject:"window.status_rows['+row+']"});'+
184                                                                                                                 'status_grid.rowHeightChanged('+row+')',
185                                                                                                         0
186                                                                                                 );
187                                                                                                 return row;
188                                                                                         }
189                                                                                         return '';
190                                                                                   }
191                                                                                 },
192                                                                                 { name : ccs_strings.HOLDABLE,
193                                                                                   field : "holdable",
194                                                                                   editor : dojox.grid.editors.bool,
195                                                                                   get : function (row) {
196                                                                                         var r = window.status_data_model.getRow(row);
197                                                                                         if (r) {
198                                                                                                 var h = r.holdable;
199                                                                                                 if (h == 't' || h === true) return true;
200                                                                                                 return false;
201                                                                                         }
202                                                                                   }
203                                                                                 },
204                                                                                 { name : ccs_strings.OPAC_VISIBLE,
205                                                                                   field : "opac_visible",
206                                                                                   editor : dojox.grid.editors.bool,
207                                                                                   get : function (row) {
208                                                                                         var r = window.status_data_model.getRow(row);
209                                                                                         if (r) {
210                                                                                                 var h = r.opac_visible;
211                                                                                                 if (h == 't' || h === true) return true;
212                                                                                                 return false;
213                                                                                         }
214                                                                                   }
215                                                                                 }
216                                                                         ]
217                                                                 ]
218                                                         }
219                                                 ];
220
221                                                 this.setStructure(status_grid_layout);
222                                                 this.setModel(window.status_data_model);
223 ]]>
224                                         </script>
225                                 </div>
226                         </div>
227
228                         <div dojoType="dijit.layout.ContentPane" orientation="horizontal" style="margin-bottom: 5px;" layoutAlign="bottom">
229                 
230                                 <button jsId="save_ccs_button" dojoType="dijit.form.Button" label="&conify.copy_status.save_changes;" onClick="save_them_all()"></button>
231                 
232                                 <button jsId="delete_ccs_button" dojoType="dijit.form.Button" label="&conify.copy_status.delete_selected;">
233                                         <script type="dojo/connect" event="onClick">
234 <![CDATA[
235                                                 var selected_rows = status_grid.selection.getSelected();
236                 
237                                                 var selected_items = [];
238                                                 for (var i in selected_rows) {
239                                                         selected_items.push(
240                                                                 status_grid.model.getRow( selected_rows[i] ).__dojo_data_item
241                                                         );
242                                                 }
243
244                                                 status_grid.selection.clear();
245
246                                                 for (var i in selected_items) {
247                                                         current_status = selected_items[i];
248
249                                                         if ( confirm(dojo.string.substitute(ccs_strings.CONFIRM_DELETE, [status_store.getValue( current_status, 'name' )]))) {
250
251                                                                 status_store.setValue( current_status, 'isdeleted', 1 );
252                         
253                                                                 var modified_ccs = new ccs().fromStoreItem( current_status );
254                                                                 modified_ccs.isdeleted( 1 );
255                         
256                                                                 pCRUD.eliminate(modified_ccs, {
257                                                                         onerror : function (r) {
258                                                                                 highlighter.red.play();
259                                                                                 status_update( dojo.string.substitute( ccs_strings.ERROR_DELETING, [status_store.getValue( current_status, 'name' )] ) );
260                                                                         },
261                                                                         oncomplete : function (r) {
262                                                                                 var old_name = status_store.getValue( current_status, 'name' );
263                 
264                                                                                 status_store.fetch({
265                                                                                         query : { id : status_store.getValue( current_status, 'id' ) },
266                                                                                         onItem : function (item, req) { try { if (this.isItem( item )) this.deleteItem( item ); } catch (e) { /* meh */ } },
267                                                                                         scope : status_store
268                                                                                 });
269                         
270                                                                                 current_status = null;
271                         
272                                                                                 highlighter.green.play();
273                                                                                 status_update( dojo.string.substitute(ccs_strings.STATUS_DELETED, [old_name]) );
274                                                                         }
275                                                                 });
276                 
277                                                         }
278                                                 }
279 ]]>
280                                         </script>
281                                 </button>
282         
283                         </div>
284                 </div>
285         
286         <script type="text/javascript">
287             var highlighter= {};
288             highlighter.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'grid_container', duration : 500 } );
289             highlighter.red = dojox.fx.highlight( { color : '#FF2018', node : 'grid_container', duration : 500 } );
290         </script>
291  
292         </body>
293 </html>