]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul
Batch barcode editing and copy (item attribute) editor tweaks. A few things here...
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / cat / volume_copy_creator.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Copy Viewer/Editor -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="cat_volume_copy_creator_win" 
21     onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
22     width="800" height="580"
23     title="&staff.cat.volume_copy_creator.title;"
24     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
25
26     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27     <!-- BEHAVIOR -->
28     <script type="text/javascript">
29     var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; 
30     </script>
31     <scripts id="openils_util_scripts"/>
32
33     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
34     <script type="text/javascript" src="volume_copy_creator.js"/>
35     
36     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
37     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
38
39     <vbox id="summary_box"/>
40     <groupbox flex="1" class="my_overflow">
41         <caption id="caption" label="&staff.cat.volume_copy_creator.label;"/>
42         <hbox style="border-bottom: solid black thin">
43             <hbox id="marc_cn"/>
44             <spacer flex="1" />
45             <checkbox id="check_barcodes" label="&staff.cat.volume_copy_creator.check_barcodes.label;" oncommand="g.save_prefs();" accesskey="&staff.cat.volume_copy_creator.check_barcodes.accesskey;"/>
46             <checkbox id="print_labels" label="&staff.cat.volume_copy_creator.print_labels.label;"  oncommand="g.save_prefs();" accesskey="&staff.cat.volume_copy_creator.print_labels.accesskey;"/>
47             <button id="CreateWithDefaults" disabled="true" oncommand="g.stash_and_close('noedit');"/>
48             <button id="EditThenCreate" disabled="true" oncommand="g.stash_and_close('edit');"/>
49         </hbox>
50         <grid flex="1">
51             <columns> <column flex="0"/> <column flex="0"/> <column flex="1"/> </columns>
52             <rows id="rows">
53                 <row>
54                     <label value="&staff.cat.volume_copy_creator.library_label.value;" style="font-weight: bold"/>
55                     <label value="&staff.cat.volume_copy_creator.num_of_volumes_label.value;" style="font-weight: bold"/>
56                 </row>
57             </rows>
58         </grid>
59     </groupbox>
60
61 </window>
62