|
Lines 59-69
$(document).ready(function() {
Link Here
|
| 59 |
'bUseColVis': true, |
59 |
'bUseColVis': true, |
| 60 |
'aoColumns': [ |
60 |
'aoColumns': [ |
| 61 |
null, |
61 |
null, |
| 62 |
{ type: 'number' }, |
|
|
| 63 |
{ type: 'text' }, |
62 |
{ type: 'text' }, |
| 64 |
{ type: 'number' }, |
63 |
{ type: 'text' }, |
| 65 |
{ type: 'number' }, |
64 |
{ type: 'text' }, |
| 66 |
{ type: 'number' }, |
65 |
{ type: 'text' }, |
|
|
66 |
{ type: 'text' }, |
| 67 |
{ type: 'text' }, |
67 |
{ type: 'text' }, |
| 68 |
{ type: 'date-range' }, |
68 |
{ type: 'date-range' }, |
| 69 |
{ type: 'text' }, |
69 |
{ type: 'text' }, |
|
Lines 148-155
$(document).ready(function() {
Link Here
|
| 148 |
<th class='NoVisible'>bookseller</th> |
148 |
<th class='NoVisible'>bookseller</th> |
| 149 |
<th>No.</th> |
149 |
<th>No.</th> |
| 150 |
<th>Name</th> |
150 |
<th>Name</th> |
| 151 |
<th class="title-numeric">Item count</th> |
151 |
<th>Item count</th> |
| 152 |
<th class="title-numeric">Biblio count</th> |
152 |
<th>Biblio count</th> |
| 153 |
<th>Items expected</th> |
153 |
<th>Items expected</th> |
| 154 |
<th>Created by</th> |
154 |
<th>Created by</th> |
| 155 |
<th class="title-string">Date</th> |
155 |
<th class="title-string">Date</th> |
|
Lines 191-208
$(document).ready(function() {
Link Here
|
| 191 |
<td>[% basket.basketno %]</td> |
191 |
<td>[% basket.basketno %]</td> |
| 192 |
<td>[% basket.basketname %]</td> |
192 |
<td>[% basket.basketname %]</td> |
| 193 |
<td> |
193 |
<td> |
| 194 |
<span title="[% basket.total_items %]">[% basket.total_items %] |
194 |
[% basket.total_items %] |
| 195 |
[% IF basket.total_items_cancelled %] |
195 |
[% IF basket.total_items_cancelled %] |
| 196 |
([% basket.total_items_cancelled %] cancelled) |
196 |
([% basket.total_items_cancelled %] cancelled) |
| 197 |
[% END %] |
197 |
[% END %] |
| 198 |
</span> |
|
|
| 199 |
</td> |
198 |
</td> |
| 200 |
<td> |
199 |
<td> |
| 201 |
<span title="[% basket.total_biblios %]">[% basket.total_biblios %] |
200 |
[% basket.total_biblios %] |
| 202 |
[% IF basket.total_biblios_cancelled %] |
201 |
[% IF basket.total_biblios_cancelled %] |
| 203 |
([% basket.total_biblios_cancelled %] cancelled) |
202 |
([% basket.total_biblios_cancelled %] cancelled) |
| 204 |
[% END %] |
203 |
[% END %] |
| 205 |
</span> |
|
|
| 206 |
</td> |
204 |
</td> |
| 207 |
<td>[% basket.expected_items %]</td> |
205 |
<td>[% basket.expected_items %]</td> |
| 208 |
<td> |
206 |
<td> |
| 209 |
- |
|
|