]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/backdate_post_checkin.xul
LP1100482 - Add max checked out indicator to patron interface
[Evergreen.git] / Open-ILS / xul / staff_client / server / circ / backdate_post_checkin.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Dialog: Backdate circ post-checkin  -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- PRESENTATION -->
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="backdate_post_checkin_win" 
21     onload="try { backdate_post_checkin_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
23     oils_persist="height width"
24     title="&staff.hold_list.cancel_hold_dialog.title;">
25
26     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27     <!-- BEHAVIOR -->
28     <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;</script>
29     <scripts id="openils_util_scripts"/>
30
31     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
32     <script type="text/javascript" src="backdate_post_checkin.js"/>
33
34     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
35
36     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
37     <!-- CONTENT -->
38     <dialogheader title="&staff.circ.backdate_post_checkin.header;" description="&staff.circ.backdate_post_checkin.description;" />
39     <vbox class="my_overflow" id="circ_brief_area" flex="1"/>
40     <progressmeter type="determined" id="progress" />
41     <hbox>
42         <label id="checkin_effective_date_label" value="&staff.circ.checkin_overlay.effective_date.label;" control="checkin_effective_datepicker" accesskey="&staff.circ.checkin_overlay.effective_date.accesskey;"/>
43         <datepicker id="checkin_effective_datepicker" type="popup" context="clipboard"/>
44         <spacer flex="1"/>
45         <button id="cancel_btn" label="&staff.circ.backdate_post_checkin.cancel_btn.label;" accesskey="&staff.circ.backdate_post_checkin.cancel_btn.accesskey;" />
46         <button id="apply_btn" disabled="true" label="&staff.circ.backdate_post_checkin.apply_btn.label;" accesskey="&staff.circ.backdate_post_checkin.apply_btn.accesskey;" />
47     </hbox>
48 </window>
49