]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul
0c5058752bbc116d05da34671ab39b6cdbc363a7
[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(); persist_helper(); } catch(E) { alert(E); }"
22     width="800" height="580" oils_persist="height width sizemode"
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     <hbox>
41         <hbox id="marc_cn"/>
42         <spacer flex="1" />
43         <button id="generate_barcodes" label="&staff.cat.volume_copy_creator.generate_barcodes.label;" oncommand="g.generate_barcodes();" accesskey="&staff.cat.volume_copy_creator.generate_barcodes.accesskey;"/>
44         <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;"/>
45         <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;"/>
46     </hbox>
47     <groupbox flex="1" class="my_overflow">
48         <caption id="caption" label="&staff.cat.volume_copy_creator.label;"/>
49         <grid flex="1">
50             <columns> <column flex="0"/> <column flex="0"/> <column flex="1"/> </columns>
51             <rows id="rows">
52                 <row>
53                     <label value="&staff.cat.volume_copy_creator.library_label.value;" style="font-weight: bold"/>
54                     <label value="&staff.cat.volume_copy_creator.num_of_volumes_label.value;" style="font-weight: bold"/>
55                 </row>
56             </rows>
57         </grid>
58     </groupbox>
59     <hbox style="border-bottom: solid black thin">
60         <spacer flex="1" />
61         <button id="CreateWithDefaults" disabled="true" oncommand="g.stash_and_close('noedit');"/>
62         <button id="EditThenCreate" disabled="true" oncommand="g.stash_and_close('edit');"/>
63     </hbox>
64
65 </window>
66