]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/conify/global/config/copy_status.html
Prepare Conify for XMLENT
[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 <html xmlns="http://www.w3.org/1999/xhtml">
16         <head>
17                 <title>Conify :: Global :: Config :: Copy Status</title>
18
19                 <style type="text/css">
20                         @import url('/js/dojo/dojox/grid/_grid/tundraGrid.css');
21                         @import url('/js/dojo/dojo/resources/dojo.css');
22                         @import url('/js/dojo/dijit/themes/tundra/tundra.css');
23                         @import url('/js/dojo/dojox/widget/Toaster/Toaster.css');
24                 </style>
25
26                 <style>
27                         html, body {
28                                 height: 100%;
29                                 width: 100%;
30                                 margin: 0px 0px 0px 0px;
31                                 padding: 0px 0px 0px 0px;
32                                 overflow: hidden;
33                         }
34
35                         #status_grid {
36                                 border: 0px;
37                                 width: 100%;
38                                 height: 100%;
39                         }
40
41                         #grid_container {
42                                 width: 100%;
43                                 height: 100%;
44                         }
45                 </style>
46
47                 <!-- The OpenSRF API writ JS -->
48                 <script language='javascript' src='/opac/common/js/utils.js' type='text/javascript'></script>
49                 <script language='javascript' src='/opac/common/js/Cookies.js' type='text/javascript'></script>
50                 <script language='javascript' src='/opac/common/js/CGI.js' type='text/javascript'></script>
51                 <script language='javascript' src='/opac/common/js/JSON_v1.js' type='text/javascript'></script>
52
53                 <!-- Dojo goodness -->
54                 <script type="text/javascript" src="../admin.js"></script>
55                 <script type="text/javascript" src="/js/dojo/dojo/dojo.js"></script>
56                 <script type="text/javascript" src="/js/dojo/dijit/dijit.js"></script>
57
58                 <script type="text/javascript" src="copy_status.js"></script>
59
60         </head>
61
62         <body class="tundra" id='pagebody'>
63
64                 <div dojoType="dijit.layout.LayoutContainer" id="grid_container" jsId="grid_container" orientation="vertical">
65                         <script type="dojo/method">
66 <!--
67                                 window.highlighter= {};
68                                 window.highlighter.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'grid_container', duration : 500 } );
69                                 window.highlighter.red = dojox.fx.highlight( { color : '#FF2018', node : 'grid_container', duration : 500 } );
70
71                                 window.dirtyStore = [];
72
73                 pCRUD.request({
74                     method : 'open-ils.permacrud.search.ccs.atomic',
75                     timeout : 10,
76                     params : [ ses, { id : { "!=" : null } }, { order_by : { ccs : 'name' } } ],
77                     onerror : function (r) { status_update('Problem fetching statuses') },
78                     oncomplete : function (r) {
79
80                         window._status_list = r.recv().content();
81                         window._status_data = ccs.toStoreData( window._status_list, 'name' );
82                         window.status_store = new dojo.data.ItemFileWriteStore({ data : window._status_data });
83
84                             window.status_store.onSet = function (item, attr, o, n) {
85                             if (attr == 'ischanged') return;
86                             if (n == o) return;
87                             this.setValue( item, 'ischanged', 1);
88
89                             if (attr == 'holdable' && typeof n != 'string')
90                                 this.setValue(item, 'holdable', n ? 't' : 'f');
91
92                             if (attr == 'opac_visible' && typeof n != 'string')
93                                 this.setValue(item, 'opac_visible', n ? 't' : 'f');
94
95                         };
96
97                         dojo.addOnUnload( function (event) {
98
99                             status_store.fetch({
100                                 query : { ischanged : 1 },
101                                 onItem : function (item, req) { try { if (this.isItem( item )) window.dirtyStore.push( item ); } catch (e) { /* meh */ } },
102                                 scope : status_store
103                             });
104
105                             if (dirtyStore.length > 0) {
106                                 var confirmation = confirm(
107                                     'There are unsaved modified Statuses!  '+
108                                     'OK to save these changes, Cancel to abandon them.'
109                                 );
110
111                                 if (confirmation) {
112                                     for (var i in window.dirtyStore) {
113                                         window.current_status = window.dirtyStore[i];
114                                         save_status(true);
115                                     }
116                                 }
117                             }
118
119                         });
120                     }
121                 }).send();
122 -->
123                         </script>
124
125                         <div dojoType="dijit.layout.LayoutContainer" orientation="horizontal" style="margin-top: 5px;" layoutAlign="top">
126                                 <span>New Status:</span>
127                                 <div dojoType="dijit.form.TextBox" id="new_status_code" jsId="new_status_name" label="New Status Name"></div>
128                                 <button dojoType="dijit.form.Button" id="save_new_status_code" jsId="save_new_status_name" label="Add"> 
129                                         <script type="dojo/connect" event="onClick">
130 <!--
131                                                 var new_name = new_status_name.getValue();
132                                                 if (!new_name) return;
133
134                         var new_fm_obj = new ccs().fromHash({
135                                 isnew           : 1,
136                             name            : new_name
137                             });
138     
139                         var err = false;
140                             pCRUD.request({
141                             method : 'open-ils.permacrud.create.ccs',
142                                 timeout : 10,
143                             params : [ ses, new_fm_obj ],
144                                 onerror : function (r) {
145                                 highlighter.red.play();
146                                     status_update( 'Problem calling method to create new Status' );
147                                 err = true;
148                                 },
149                                 oncomplete : function (r) {
150                                 var res = r.recv();
151                                     if ( res && res.content() ) {
152                                     var new_item_hash = res.content().toHash();
153                                     status_store.newItem( new_item_hash );
154                                                                         status_update( 'New ' + new_item_hash.name + ' status created' );
155                                                                         status_grid.model.sort(-2);
156                                                                         highlighter.green.play();
157                                 } else {
158                                         highlighter.red.play();
159                                     status_update( 'Problem creating new Status' );
160                                         err = true;
161                                 }
162                                 }
163                         }).send();
164 --> 
165                         </script>
166                                 </button>
167                         </div>
168
169                         <div dojoType="dijit.layout.ContentPane" style="width:100%; height:100%;" layoutAlign="client">
170                                 <div dojoType="dojox.grid.data.DojoData" id="status_data_model" jsId="status_data_model" store="status_store" query="{ 'id' : '*' }"></div>
171                                 <div id="status_grid" dojoType="dojox.Grid" jsId="status_grid">
172                                         <script type="dojo/connect" event="startup">
173 <!--
174                                                 var g = this;
175                                                 var status_grid_layout = [
176                                                         {       cells : [
177                                                                         [
178                                                                                 { name : "ID",
179                                                                                   field : "id",
180                                                                                 },
181                                                                                 { name : "Name",
182                                                                                   field : "name",
183                                                                                   width : "auto",
184                                                                                   editor : dojox.grid.editors.Dijit
185                                                                                 },
186                                                                                 { name : "Translation",
187                                                                                   width : "10em",
188                                                                                   height : "2em",
189                                                                                   get : function (row) {
190                                                                                         if (!window.status_rows) window.status_rows = [];
191                                                                                         var r = window.status_data_model.getRow(row);
192                                                                                         if (r) {
193                                                                                                 window.status_rows[row] = new ccs().fromHash(window.status_data_model.getRow(row));
194                                                                                                 setTimeout(
195                                                                                                         'dojo.query(".status_grid_trans_cell_' + row + '").'+
196                                                                                                                 'instantiate(openils.widget.TranslatorPopup,{field:"name",'+
197                                                                                                                 'targetObject:"window.status_rows['+row+']"});'+
198                                                                                                                 'status_grid.rowHeightChanged('+row+')',
199                                                                                                         0
200                                                                                                 );
201                                                                                                 return '<span class="status_grid_trans_cell_'+row+'"></span>';
202                                                                                         }
203                                                                                         return '';
204                                                                                   }
205                                                                                 },
206                                                                                 { name : "Holdable",
207                                                                                   field : "holdable",
208                                                                                   editor : dojox.grid.editors.bool,
209                                                                                   get : function (row) {
210                                                                                         var r = window.status_data_model.getRow(row);
211                                                                                         if (r) {
212                                                                                                 var h = r.holdable;
213                                                                                                 if (h == 't' || h === true) return true;
214                                                                                                 return false;
215                                                                                         }
216                                                                                   }
217                                                                                 },
218                                                                                 { name : "OPAC Visible",
219                                                                                   field : "opac_visible",
220                                                                                   editor : dojox.grid.editors.bool,
221                                                                                   get : function (row) {
222                                                                                         var r = window.status_data_model.getRow(row);
223                                                                                         if (r) {
224                                                                                                 var h = r.opac_visible;
225                                                                                                 if (h == 't' || h === true) return true;
226                                                                                                 return false;
227                                                                                         }
228                                                                                   }
229                                                                                 }
230                                                                         ]
231                                                                 ]
232                                                         }
233                                                 ];
234
235                                                 this.setStructure(status_grid_layout);
236                                                 this.setModel(window.status_data_model);
237 -->
238                                         </script>
239                                 </div>
240                         </div>
241
242                         <div dojoType="dijit.layout.ContentPane" orientation="horizontal" style="margin-bottom: 5px;" layoutAlign="bottom">
243                 
244                                 <button jsId="save_ccs_button" dojoType="dijit.form.Button" label="Save Changes" onClick="save_them_all()"></button>
245                 
246                                 <button jsId="delete_ccs_button" dojoType="dijit.form.Button" label="Delete Selected">
247                                         <script type="dojo/connect" event="onClick">
248 <!--
249                                                 var selected_rows = status_grid.selection.getSelected();
250                 
251                                                 var selected_items = [];
252                                                 for (var i in selected_rows) {
253                                                         selected_items.push(
254                                                                 status_grid.model.getRow( selected_rows[i] ).__dojo_data_item
255                                                         );
256                                                 }
257
258                                                 status_grid.selection.clear();
259
260                                                 for (var i in selected_items) {
261                                                         current_status = selected_items[i];
262
263                                                         if ( confirm('Are you sure you want to delete ' + status_store.getValue( current_status, 'name' ) + '?')) {
264
265                                                                 status_store.setValue( current_status, 'isdeleted', 1 );
266                         
267                                                                 var modified_ccs = new ccs().fromStoreItem( current_status );
268                                                                 modified_ccs.isdeleted( 1 );
269                         
270                                                                 pCRUD.request({
271                                                                         method : 'open-ils.permacrud.delete.ccs',
272                                                                         timeout : 10,
273                                                                         params : [ ses, modified_ccs ],
274                                                                         onerror : function (r) {
275                                                                                 highlighter.red.play();
276                                                                                 status_update( 'Problem deleting ' + status_store.getValue( current_status, 'name' ) );
277                                                                         },
278                                                                         oncomplete : function (r) {
279                                                                                 var res = r.recv();
280                                                                                 if ( res && res.content() ) {
281                         
282                                                                                         var old_name = status_store.getValue( current_status, 'name' );
283                 
284                                                                                         status_store.fetch({
285                                                                                                 query : { id : status_store.getValue( current_status, 'id' ) },
286                                                                                                 onItem : function (item, req) { try { if (this.isItem( item )) this.deleteItem( item ); } catch (e) { /* meh */ } },
287                                                                                                 scope : status_store
288                                                                                         });
289                         
290                                                                                         current_status = null;
291                         
292                                                                                         highlighter.green.play();
293                                                                                         status_update( old_name + ' deleted' );
294                                                                                 } else {
295                                                                                         highlighter.red.play();
296                                                                                         status_update( 'Problem deleting ' + old_name );
297                                                                                 }
298                                                                         }
299                                                                 }).send();
300                 
301                                                         }
302                                                 }
303 -->
304                                         </script>
305                                 </button>
306         
307                         </div>
308                 </div>
309         
310         </body>
311 </html>