]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul
Monograph Parts; Unified vol/copy wizard; Call Number affixes; Instant Detail
[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 <?xml-stylesheet href="/xul/server/skin/cat.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="cat_volume_copy_creator_win" 
22     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
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 flex="1" class="my_overflow">
40     <vbox id="summary_box" oils_persist="height"/>
41     <splitter
42         collapse="before"
43         resize_before="flex"
44         resize_after="flex"
45         oils_persist="state hidden"
46         oils_persist_peers="summary_box main">
47         <grippy/>
48     </splitter>
49     <vbox id="main" oils_persist="height" flex="1">
50         <hbox flex="0">
51             <hbox id="batch_bar">
52                 <label value="&staff.cat.volume_copy_creator.batch_bar;"/>
53                 <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.classification;"/>
54                 <hbox id="batch_class"/>
55                 <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.prefix;"/>
56                 <hbox id="batch_prefix"/>
57                 <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.label.label;"
58                     accesskey="&staff.cat.volume_copy_creator.batch_bar.call_number.label.accesskey;" control="marc_cn_menulist"/>
59                 <hbox id="marc_cn"/>
60                 <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.suffix;"/>
61                 <hbox id="batch_suffix"/>
62                 <hbox id="batch_button_box"/>
63             </hbox>
64             <spacer flex="1" />
65         </hbox>
66         <groupbox flex="1" class="my_overflow">
67             <caption id="caption" label="&staff.cat.volume_copy_creator.label;"/>
68             <grid flex="1">
69                 <columns> <column flex="0"/> <column flex="0"/> <column flex="1"/> </columns>
70                 <rows id="rows">
71                     <row>
72                         <label value="&staff.cat.volume_copy_creator.library_label.value;" style="font-weight: bold"/>
73                         <label value="&staff.cat.volume_copy_creator.num_of_volumes_label.value;" style="font-weight: bold"/>
74                     </row>
75                 </rows>
76             </grid>
77         </groupbox>
78         <hbox style="border-bottom: solid black thin" flex="0">
79             <hbox id="misc_control_bar">
80                 <button id="generate_barcodes"
81                     label="&staff.cat.volume_copy_creator.generate_barcodes.label;"
82                     oncommand="g.generate_barcodes();"
83                     accesskey="&staff.cat.volume_copy_creator.generate_barcodes.accesskey;"/>
84                 <checkbox id="check_barcodes"
85                     label="&staff.cat.volume_copy_creator.check_barcodes.label;"
86                     oncommand="g.save_prefs();"
87                     accesskey="&staff.cat.volume_copy_creator.check_barcodes.accesskey;"/>
88                 <checkbox id="print_labels"
89                     label="&staff.cat.volume_copy_creator.print_labels.label;"
90                     oncommand="g.save_prefs();"
91                     accesskey="&staff.cat.volume_copy_creator.print_labels.accesskey;"/>
92             </hbox>
93             <spacer flex="1"/>
94             <hbox id="non_unified_buttons">
95                 <button id="CreateWithDefaults" disabled="true" oncommand="g.stash_and_close('noedit');"/>
96                 <button id="EditThenCreate" disabled="true" oncommand="g.stash_and_close('edit');"/>
97             </hbox>
98             <button id="Create" disabled="true" oncommand="g.stash_and_close('unified_interface');"/>
99         </hbox>
100     </vbox>
101 </vbox>
102
103 </window>
104