]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/cat/item/t_list.tt2
LP#1755924: show circ modifier in Item Status list view
[working/Evergreen.git] / Open-ILS / src / templates / staff / cat / item / t_list.tt2
1 <eg-grid
2   id-field="index"
3   idl-class="acp"
4   features="-display,clientsort"
5   main-label="[% l('Item Status') %]"
6   items-provider="gridDataProvider"
7   grid-controls="gridControls"
8   persist-key="cat.items"
9   dateformat="{{$root.egDateAndTimeFormat}}">
10
11   <eg-grid-action handler="add_copies_to_bucket"
12     label="[% l('Add Items to Bucket') %]"></eg-grid-action>
13   <eg-grid-action handler="make_copies_bookable"
14     label="[% l('Make Items Bookable') %]"></eg-grid-action>
15   <eg-grid-action handler="book_copies_now"
16     disabled="need_one_selected"
17     label="[% l('Book Item Now') %]"></eg-grid-action>
18   <eg-grid-action handler="requestItems"
19     label="[% l('Request Items') %]"></eg-grid-action>
20   <eg-grid-action handler="attach_to_peer_bib"
21     label="[% l('Link as Conjoined to Previously Marked Bib Record') %]"></eg-grid-action>
22   <eg-grid-action handler="selectedHoldingsCopyDelete"
23     label="[% l('Delete Items') %]"></eg-grid-action>
24   <eg-grid-action handler="checkin"
25     label="[% l('Check In Items') %]"></eg-grid-action>
26   <eg-grid-action handler="renew"
27     label="[% l('Renew Items') %]"></eg-grid-action>
28   <eg-grid-action handler="cancel_transit"
29     label="[% l('Cancel Transit') %]"></eg-grid-action>
30     
31   <eg-grid-action handler="selectedHoldingsItemStatusTgrEvt" group="[% l('Show') %]"
32     label="[% l('Triggered Events') %]"></eg-grid-action>
33   <eg-grid-action handler="selectedHoldingsItemStatusHolds" group="[% l('Show') %]"
34     label="[% l('Item Holds') %]"></eg-grid-action>
35   <eg-grid-action handler="showBibHolds" group="[% l('Show') %]"
36     label="[% l('Record Holds') %]"></eg-grid-action>
37   <eg-grid-action handler="print_labels" group="[% l('Show') %]"
38     label="[% l('Print Labels') %]"></eg-grid-action>
39     
40   <eg-grid-action handler="selectedHoldingsDamaged" group="[% l('Mark') %]"
41     label="[% l('Item as Damaged') %]"></eg-grid-action>
42   <eg-grid-action handler="selectedHoldingsMissing" group="[% l('Mark') %]"
43     label="[% l('Item as Missing') %]"></eg-grid-action>
44     
45   <eg-grid-action handler="selectedHoldingsCopyAdd" group="[% l('Add') %]"
46     label="[% l('Items') %]"></eg-grid-action>
47   <eg-grid-action handler="selectedHoldingsVolCopyAdd" group="[% l('Add') %]"
48     label="[% l('Volumes and Items') %]"></eg-grid-action>
49   <eg-grid-action handler="selectedHoldingsCopyAlertsAdd" group="[% l('Add') %]"
50     label="[% l('Copy Alerts') %]"></eg-grid-action>
51
52   <eg-grid-action handler="selectedHoldingsVolEdit" group="[% l('Edit') %]"
53     label="[% l('Volumes') %]"></eg-grid-action>
54   <eg-grid-action handler="selectedHoldingsCopyEdit" group="[% l('Edit') %]"
55     label="[% l('Items') %]"></eg-grid-action>
56   <eg-grid-action handler="selectedHoldingsVolCopyEdit" group="[% l('Edit') %]"
57     label="[% l('Volumes and Items') %]"></eg-grid-action>
58   <eg-grid-action handler="replaceBarcodes" group="[% l('Edit') %]"
59     label="[% l('Replace Barcodes') %]"></eg-grid-action>
60   <eg-grid-action handler="selectedHoldingsCopyAlertsEdit" group="[% l('Edit') %]"
61     label="[% l('Manage Copy Alerts') %]"></eg-grid-action>
62
63   <eg-grid-action handler="changeItemOwningLib" group="[% l('Transfer') %]"
64     label="[% l('Items to Previously Marked Library') %]"></eg-grid-action>
65   <eg-grid-action handler="transferItems" group="[% l('Transfer') %]"
66     label="[% l('Items to Previously Marked Volume') %]"></eg-grid-action>
67
68   <eg-grid-field label="[% l('Alert Message') %]"  path='alert_message' visible></eg-grid-field>
69   <eg-grid-field label="[% l('Barcode') %]"        path='barcode' visible></eg-grid-field>
70   <eg-grid-field label="[% l('Call Number') %]"    path="call_number.label" visible></eg-grid-field>
71   <eg-grid-field label="[% l('Due Date') %]"       path="_circ.due_date" datecontext="_circ_lib" dateonlyinterval="_duration" datatype="timestamp" visible></eg-grid-field>
72
73   <eg-grid-field label="[% l('Location') %]"       path="location.name" visible></eg-grid-field>
74   <eg-grid-field label="[% l('Copy Status') %]"    path="status.name" visible></eg-grid-field>
75   <eg-grid-field label="[% l('Title') %]"       
76     path="call_number.record.simple_record.title" visible>
77     <a target="_blank" href="[% ctx.base_path %]/staff/cat/catalog/record/{{item['call_number.record.id']}}">
78       {{item['call_number.record.simple_record.title']}} <span ng-show="item['call_number.record.id']" class="glyphicon glyphicon-new-window"/>
79     </a>
80   </eg-grid-field>
81
82   <eg-grid-field label="[% l('Acquisition Cost') %]"     path="cost" hidden></eg-grid-field>
83   <eg-grid-field label="[% l('Age-Based Hold Protection') %]"  path="age_protect" hidden></eg-grid-field>
84   <eg-grid-field label="[% l('Author') %]"               path="call_number.record.simple_record.author"  hidden></eg-grid-field>
85   <eg-grid-field label="[% l('Checkin Date') %]"         path="_circ_summary.last_checkin_time" datatype="timestamp" hidden></eg-grid-field>
86   <eg-grid-field label="[% l('Checkin Scan Date') %]"    path="_circ_summary.last_checkin_scan_time" datatype="timestamp" hidden></eg-grid-field>
87   <eg-grid-field label="[% l('Checkin Workstation') %]"  path="_circ_summary.last_checkin_workstation" hidden></eg-grid-field>
88   <eg-grid-field label="[% l('Checkout Date') %]"  path="_circ_summary.start_time" datatype="timestamp" hidden></eg-grid-field>
89   <eg-grid-field label="[% l('Checkout Workstation') %]"  path="_circ_summary.checkout_workstation" hidden></eg-grid-field>
90   <eg-grid-field label="[% l('Checkout/Renewal Library') %]"  path="_circ.circ_lib.name" hidden></eg-grid-field>
91   <eg-grid-field label="[% l('Circulation ID') %]"        path="_circ.id" hidden></eg-grid-field>
92   <eg-grid-field label="[% l('Circ or Renewal Workstation') %]"  path="_circ.workstation.name" hidden></eg-grid-field>
93   <eg-grid-field label="[% l('Classification') %]"        path="call_number.label_class.name" hidden></eg-grid-field>
94   <eg-grid-field label="[% l('CN Prefix') %]"             path="call_number.prefix.label" hidden></eg-grid-field>
95   <eg-grid-field label="[% l('CN Suffix') %]"             path="call_number.suffix.label" hidden></eg-grid-field>
96   <eg-grid-field label="[% l('Circulate as Type') %]"     path="circ_as_type" hidden></eg-grid-field>
97   <eg-grid-field label="[% l('Circulate?') %]"            path="circulate" hidden></eg-grid-field>
98   <eg-grid-field label="[% l('Circulation Library') %]"   path="_circ_lib.name" hidden></eg-grid-field>
99   <eg-grid-field label="[% l('Circulation Modifier') %]"  path="circ_modifier.name" hidden></eg-grid-field>
100   <eg-grid-field label="[% l('Copy ID') %]"               path="id" hidden></eg-grid-field>
101   <eg-grid-field label="[% l('Copy Number') %]"           path="copy_number" hidden></eg-grid-field>
102   <eg-grid-field label="[% l('Created By') %]"            path="creator" hidden></eg-grid-field>
103   <eg-grid-field label="[% l('Date Created') %]"          path="create_date" datatype="timestamp" hidden></eg-grid-field>
104   <eg-grid-field label="[% l('Date Last Edited') %]"      path="edit_date" datatype="timestamp" hidden></eg-grid-field>
105   <eg-grid-field label="[% l('Date Record Created') %]"   path="call_number.record.create_date" datatype="timestamp" hidden></eg-grid-field>
106   <eg-grid-field label="[% l('Date Record Last Edited') %]"    path="call_number.record.edit_date" datatype="timestamp" hidden></eg-grid-field>
107   <eg-grid-field label="[% l('Deleted?') %]"              path="deleted" hidden></eg-grid-field>
108   <eg-grid-field label="[% l('Document ID') %]"           path="call_number.record.id" hidden></eg-grid-field>
109   <eg-grid-field label="[% l('Edited By') %]"             path="editor" hidden></eg-grid-field>
110   <eg-grid-field label="[% l('Fine Level') %]"            path="fine_level" hidden></eg-grid-field>
111   <eg-grid-field label="[% l('Fines Stopped') %]"         path="_circ_summary.last_stop_fines" hidden></eg-grid-field>
112   <eg-grid-field label="[% l('Fines Stopped Time') %]"    path="_circ_summary.last_stop_fines_time" datatype="timestamp" hidden></eg-grid-field>
113   <eg-grid-field label="[% l('Floating?') %]"             path="floating" hidden></eg-grid-field>
114   <eg-grid-field label="[% l('Holdable?') %]"             path="holdable" hidden></eg-grid-field>
115   <eg-grid-field label="[% l('Holds Count') %]"           path="holds_count" hidden></eg-grid-field>
116   <eg-grid-field label="[% l('In-House Uses') %]"         path="_inHouseUseCount" hidden></eg-grid-field>
117   <eg-grid-field label="[% l('ISBN') %]"                  path="call_number.record.simple_record.isbn" hidden></eg-grid-field>
118   <eg-grid-field label="[% l('Loan Duration') %]"         path="loan.duration" hidden></eg-grid-field>
119   <eg-grid-field label="[% l('OPAC Visible?') %]"         path="opac_visible" hidden></eg-grid-field>
120   <eg-grid-field label="[% l('Owned By') %]"              path="call_number.record.owner" hidden></eg-grid-field>
121   <eg-grid-field label="[% l('Owning Library') %]"        path="call_number.owning_lib" hidden></eg-grid-field>
122   <eg-grid-field label="[% l('Parts') %]"                 path="parts" hidden></eg-grid-field>
123   <eg-grid-field label="[% l('Price') %]"                 path="price" hidden></eg-grid-field>
124   <eg-grid-field label="[% l('Publication Date') %]"      path="call_number.record.simple_record.pubdate" hidden></eg-grid-field>
125   <eg-grid-field label="[% l('Publisher') %]"             path="call_number.record.simple_record.publisher" hidden></eg-grid-field>
126   <eg-grid-field label="[% l('Quality') %]"               path="call_number.record.simple_record.quality" hidden></eg-grid-field>
127   <eg-grid-field label="[% l('Reference?') %]"            path="ref" hidden></eg-grid-field>
128   <eg-grid-field label="[% l('Remaining Renewals') %]"    path="_circ.renewals_remaining" hidden></eg-grid-field>
129   <eg-grid-field label="[% l('Status Changed Time') %]"   path="status_changed_time" datatype="timestamp" hidden></eg-grid-field>
130   <eg-grid-field label="[% l('TCN') %]"                   path="call_number.record.tcn_value" hidden></eg-grid-field>
131   <eg-grid-field label="[% l('TCN Source') %]"            path="call_number.record.tcn_source" hidden></eg-grid-field>
132   <eg-grid-field label="[% l('Transaction Complete') %]"  path="_circ.xact_finish" datatype="timestamp" hidden></eg-grid-field>
133   <eg-grid-field label="[% l('Alerts') %]" path="copy_alert_count" handlers="gridCellHandlers" visible compiled>
134     {{item['copy_alert_count']}}
135     <button ng-disabled="item['copy_alert_count'] <= 0" class="btn btn-sm btn-default" ng-click="col.handlers.copyAlertsEdit(item['id'])">[% l('Manage') %]</button>
136   </eg-grid-field>
137   
138 </eg-grid>
139
140 <div class="flex-row pad-vert">
141   <div class="flex-cell"></div>
142   <div class="pad-horiz">
143     <button class="btn btn-default"
144       ng-click="print_list()">[% l('Print') %]</button>
145   </div>
146 </div>