]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/acq/invoice/receive.tt2
It's a lineitem detail (copy) batch receiver
[Evergreen.git] / Open-ILS / src / templates / acq / invoice / receive.tt2
1 [% WRAPPER "base.tt2" %]
2 [% ctx.page_title = "Acquisitions Invoice Receiving" %]
3 <script type="text/javascript">var inv_id = "[% ctx.page_args.0 %]";</script>
4 <script type="text/javascript"
5     src="[% ctx.media_prefix %]/js/ui/default/acq/invoice/receive.js"></script>
6 <style type="text/css">
7     #copy_table thead tr th {
8         font-weight: bold;
9         font-size: 110%;
10         text-align: left;
11         background-color: #e2e2e2;
12     }
13     #copy_table tbody { margin: 1ex; }
14     #copy_table tbody tr { background-color: #aaa; }
15     #copy_table tbody tr.copy-row { background-color: #ccc; }
16     #copy_table tbody tr.copy-row:nth-child(odd) { background-color: #ddd; }
17     #copy_table tbody tr.copy-row td { padding: 2px; }
18     .receive-button { margin: 1ex 0; }
19     .spinner-cell { padding: 1ex; background-color: #ddd; }
20 </style>
21 <div>
22     <p><big>[% ctx.page_title %]</big></p>
23     <p><strong id="inv-header"></strong></p>
24     <div id="non-empty">
25         <p>
26             <span id="set-list-mode">[ <a id="set-list-mode-link" href="javascript:void(0);">Use List Mode</a> ]</span>
27             <span id="set-number-mode">[ <a id="set-number-mode-link" href="javascript:void(0);">Use Numeric Mode</a> ]</span>
28         </p>
29         <div class="receive-button">
30             <button onclick="copy_table.receive_selected();">Receive Selected
31                 Copies</button>
32         </div>
33         <table id="copy_table" width="100%">
34             <thead id="list-mode-headings">
35                 <tr>
36                     <th>
37                         <input type="checkbox" checked="checked" id="select_all"
38                             /><label for="select_all"> Select All</label>
39                     </th>
40                     <th>Owning Branch</th>
41                     <th>Shelving Location</th>
42                     <th>Collection Code</th>
43                     <th>Fund</th>
44                     <th>Circ Modifier</th>
45                     <th>Callnumber</th>
46                     <th>Barcode</th>
47                 </tr>
48             </thead>
49             <tbody id="rows-here">
50             </tbody>
51         </table>
52         <div class="receive-button">
53             <button onclick="copy_table.receive_selected();">Receive Selected
54                 Copies</button>
55         </div>
56     </div>
57     <div class="hidden" id="empty">
58         This invoice has no more copies to receive.
59     </div>
60     <div class="hidden">
61         <div dojoType="openils.widget.ProgressDialog" jsId="progress_dialog"></div>
62     </div>
63 </div>
64 [% END %]