]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.xul
get rid of the opacity bell & whistle
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / circ / offline_renew.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Example Template for remote xul -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window SYSTEM "chrome://open_ils_staff_client/locale/lang.dtd">
13
14 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
15 <!-- OVERLAYS -->
16 <?xul-overlay href="chrome://open_ils_staff_client/content/OpenILS/util_overlay_offline.xul"?>
17
18 <window id="offline_checkout_win" sizemode="maximized"
19         onload="try { my_init(); } catch(E) { alert(E); }"
20         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
21
22         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
23         <!-- BEHAVIOR -->
24         <script type="text/javascript">
25                 var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
26         </script>
27         <scripts id="openils_util_scripts"/>
28
29         <script type="text/javascript" src="chrome://open_ils_staff_client/content/main/JSAN.js"/>
30         <script type="text/javascript" src="offline_renew.js"/>
31
32         <groupbox flex="1">
33                 <caption label="Standalone Renew"/>
34                 <hbox flex="1">
35                         <vbox flex="1">
36                                 <hbox>
37                                         <label value="Step 1)" style="font-weight: bold" />
38                                         <description>Check today's date above.</description>
39                                 </hbox>
40                                 <hbox>
41                                         <label value="Step 2)" style="font-weight: bold" accesskey="2" control="p_barcode"/>
42                                         <description>(Optional) Enter the patron's barcode:</description>
43                                 </hbox>
44                                 <hbox>
45                                         <spacer flex="1"/>
46                                         <textbox id="p_barcode" />
47                                 </hbox>
48                                 <hbox>
49                                         <spacer flex="1"/>
50                                         <description>Check barcode?</description>
51                                         <checkbox id="strict_p_barcode" persist="checked"/>
52                                 </hbox>
53                                 <hbox>
54                                         <label value="Step 3)" style="font-weight: bold" accesskey="3" control="duedate"/>
55                                         <description>Enter the item due date:</description>
56                                 </hbox>
57                                 <hbox>
58                                         <spacer flex="1"/>
59                                         <textbox id="duedate" style="font-family: monospace;"/>
60                                 </hbox>
61                                 <hbox>
62                                         <spacer flex="1"/>
63                                         <menulist id="duedate_menu">
64                                                 <menupopup>
65                                                         <menuitem label="or choose one of these" value="0"/>
66                                                         <menuitem label="Today + 3 days" value="3"/>
67                                                         <menuitem label="Today + 7 days" value="7"/>
68                                                         <menuitem label="Today + 14 days" value="14"/>
69                                                         <menuitem label="Today + 30 days" value="30"/>
70                                                 </menupopup>
71                                         </menulist>
72                                 </hbox>
73                                 <hbox>
74                                         <label value="Step 4)" style="font-weight: bold" accesskey="4" control="i_barcode"/>
75                                         <description>Enter the item barcode:</description>
76                                 </hbox>
77                                 <hbox>
78                                         <spacer flex="1"/>
79                                         <hbox><textbox id="i_barcode"/><button id="enter" label="Enter" accesskey="E"/></hbox>
80                                 </hbox>
81                                 <hbox>
82                                         <spacer flex="1"/>
83                                         <description>Check barcode?</description>
84                                         <checkbox id="strict_i_barcode" persist="checked"/>
85                                 </hbox>
86                                 <hbox>
87                                         <label value="Step 5)" style="font-weight: bold"/>
88                                         <description>Repeat Steps 3 and 4 until done.</description>
89                                 </hbox>
90                                 <hbox>
91                                         <label value="Step 6)" style="font-weight: bold"/>
92                                         <description>Finish</description>
93                                 </hbox>
94                                 <hbox>
95                                         <spacer flex="1"/>
96                                         <description>Print receipt?</description>
97                                         <checkbox id="print_receipt" persist="checked"/>
98                                 </hbox>
99                                 <hbox>
100                                         <spacer flex="1"/>
101                                         <button id="cancel" label="Cancel" />
102                                         <button id="submit" label="Save these transactions" accesskey="S" />
103                                 </hbox>
104                         </vbox>
105                         <splitter>
106                                 <grippy />
107                         </splitter>
108                         <vbox flex="2">
109                                 <tree id="checkout_list" flex="1" enableColumnDrag="true"/>
110                                 <hbox id="checkout_bottom_ui">
111                                         <spacer flex="1"/>
112                                         <button id="delete" label="Delete selected transaction" oncommand="alert('Not Yet Implemented');"/>
113                                 </hbox>
114                         </vbox>
115                 </hbox>
116         </groupbox>
117
118 </window>
119