]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/acq/invoice/receive.tt2
Merge branch 'master' of git.evergreen-ils.org:Evergreen-DocBook into doc_consolidati...
[working/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     <p id="inv-copy-count-info"></p>
25     <div id="non-empty">
26         <p>The remaining are listed below.</p>
27         <p>
28             <span id="set-list-mode">[ <a id="set-list-mode-link" href="javascript:void(0);">Use List Mode</a> ]</span>
29             <span id="set-number-mode">[ <a id="set-number-mode-link" href="javascript:void(0);">Use Numeric Mode</a> ]</span>
30         </p>
31         <div class="receive-button">
32             <button onclick="copy_table.receive_selected();">Receive Selected
33                 Copies</button>
34         </div>
35         <table id="copy_table" width="100%">
36             <thead id="list-mode-headings">
37                 <tr>
38                     <th>
39                         <input type="checkbox" checked="checked" id="select_all"
40                             /><label for="select_all"> Select All</label>
41                     </th>
42                     <th>Owning Branch</th>
43                     <th>Shelving Location</th>
44                     <th>Collection Code</th>
45                     <th>Fund</th>
46                     <th>Circ Modifier</th>
47                     <th>Callnumber</th>
48                     <th>Barcode</th>
49                 </tr>
50             </thead>
51             <tbody id="rows-here">
52             </tbody>
53         </table>
54         <div class="receive-button">
55             <button onclick="copy_table.receive_selected();">Receive Selected
56                 Copies</button>
57         </div>
58     </div>
59     <div class="hidden" id="empty">
60         This invoice has no more copies to receive.
61     </div>
62     <p>
63         <button onclick="copy_table.back_to_invoice();">Return to Invoice</button>
64     </p>
65     <div class="hidden">
66         <div dojoType="openils.widget.ProgressDialog" jsId="progress_dialog"></div>
67     </div>
68 </div>
69 [% END %]