]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/circ/renew/t_renew.tt2
LP#1697954: Enable clientsort for renew
[working/Evergreen.git] / Open-ILS / src / templates / staff / circ / renew / t_renew.tt2
1 <!-- item renewal form / list -->
2
3 <div class="container-fluid" style="text-align:center">
4   <div class="alert alert-info alert-less-pad strong-text-2">
5     [% l('Renew Items') %]
6   </div>
7 </div>
8
9 <div class="row">
10   <div class="col-md-6">
11     <form ng-submit="renew(renewalArgs)" role="form" class="form-inline">
12       <div class="input-group">
13
14         <label class="input-group-addon" 
15           for="patron-renewal-barcode" >[% l('Barcode') %]</label>
16
17         <input focus-me="focusBarcode" class="form-control"
18           ng-model="renewalArgs.copy_barcode" 
19           id="patron-renewal-barcode" type="text"/> 
20
21         <input class="btn btn-default" type="submit" value="[% l('Submit') %]"/>
22       </div>
23     </form>
24   </div>
25   <div class="col-md-6">
26     <div class="flex-row">
27       <div class="flex-cell"></div>
28       <div class="checkbox pad-horiz">
29         <label>
30           <input type="checkbox" ng-model="renewalArgs.sticky_date"/>
31           [% l('Specific Due Date') %]
32         </label>
33       </div>
34       <!-- FIXME: This needs a time component as well, but type="datetime" 
35             is not yet supported by any browsers -->
36       <div><eg-date-input ng-model="renewalArgs.due_date"></eg-date-input>
37       </div>
38     </div>
39   </div>
40 </div>
41 <hr/>
42
43 <eg-grid
44   id-field="index"
45   features="clientsort"
46   items-provider="gridDataProvider"
47   grid-controls="gridControls"
48   persist-key="circ.renew"
49   dateformat="{{$root.egDateAndTimeFormat}}">
50
51   <eg-grid-action 
52     handler="fetchLastCircPatron"
53     label="[% l('Retrieve Last Patron Who Circulated Item') %]">
54   </eg-grid-action>
55   <eg-grid-action 
56     handler="showLastFewCircs"
57     label="[% l('Show Last Few Circluations') %]">
58   </eg-grid-action>
59   <eg-grid-action divider="true"></eg-grid-action>
60   <eg-grid-action 
61     handler="showMarkDamaged"
62     label="[% l('Mark Items Damaged') %]">
63   </eg-grid-action>
64   <eg-grid-action divider="true"></eg-grid-action>
65   <eg-grid-action 
66     handler="abortTransit"
67     label="[% l('Cancel Transits') %]">
68   </eg-grid-action>
69
70
71   <eg-grid-field label="[% l('Alert Msg') %]"   
72     path="acp.alert_message"></eg-grid-field>
73
74   <eg-grid-field label="[% l('Balance Owed') %]"     
75     path='mbts.balance_owed'></eg-grid-field>
76
77   <eg-grid-field label="[% l('Barcode') %]" path="copy_barcode">
78     <!-- FIXME: ng-if / ng-disabled not working since the contents 
79         are $interpolate'd and not $compile'd.
80         I want to hide / disable the href when there is no acp ID 
81     -->
82     <a href="./cat/item/{{item.acp.id()}}/summary" target="_self">
83       {{item.copy_barcode}}
84     </a>
85   </eg-grid-field>
86
87   <eg-grid-field label="[% l('Bill #') %]"     
88     path='circ.id'></eg-grid-field>
89
90   <eg-grid-field label="[% l('Call Number') %]" 
91     path="acn.label"></eg-grid-field>
92
93   <eg-grid-field label="[% l('Due Date') %]"    
94     path='circ.due_date' datatype="timestamp"></eg-grid-field>
95
96   <eg-grid-field label="[% l('Family Name') %]"    
97     path='au.family_name'></eg-grid-field>
98
99   <eg-grid-field label="[% l('Location') %]" 
100     path='acp.location.name'> </eg-grid-field>
101
102   <eg-grid-field label="[% l('Remaining Renewals') %]" 
103     path='circ.renewal_remaining'></eg-grid-field>
104
105   <eg-grid-field label="[% l('Title') %]" path="title">
106     <a target="_self" href="[% ctx.base_path %]/staff/cat/catalog/record/{{record.doc_id()}}">
107       {{item.title}}
108     </a>
109   </eg-grid-field>
110
111   <eg-grid-field label="[% l('Author') %]"      
112     path="author" hidden></eg-grid-field>
113
114   <eg-grid-field path="circ.*" parent-idl-class="circ" hidden></eg-grid-field>
115   <eg-grid-field path="acp.*" parent-idl-class="acp" hidden></eg-grid-field>
116   <eg-grid-field path="acn.*" parent-idl-class="acn" hidden></eg-grid-field>
117   <eg-grid-field path="record.*" parent-idl-class="mvr" hidden></eg-grid-field>
118   <eg-grid-field path="mbts.*" parent-idl-class="mbts" hidden></eg-grid-field>
119   <eg-grid-field path="au.*" parent-idl-class="au" hidden></eg-grid-field>
120 </eg-grid>
121
122 <div class="flex-row pad-vert">
123   <div class="flex-cell"></div>
124   <div class="pad-horiz">
125     <button class="btn btn-default" 
126       ng-click="print_receipt()">[% l('Print Receipt') %]</button>
127   </div>
128   <div class="checkbox">
129     <label>
130       <input ng-model="trim_list" type="checkbox"/>
131       [% l('Trim List (20 Rows)') %]
132     </label>
133   </div>
134   <div class="pad-horiz"></div>
135   <div class="checkbox">
136     <label>
137       <input ng-model="strict_barcode" type="checkbox"/>
138       [% l('Strict Barcode') %]
139     </label>
140   </div>
141 </div>
142