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 141-148
$(document).ready(function() {
Link Here
|
141 |
<th class='NoVisible'>bookseller</th> |
141 |
<th class='NoVisible'>bookseller</th> |
142 |
<th>No.</th> |
142 |
<th>No.</th> |
143 |
<th>Name</th> |
143 |
<th>Name</th> |
144 |
<th class="title-numeric">Item count</th> |
144 |
<th>Item count</th> |
145 |
<th class="title-numeric">Biblio count</th> |
145 |
<th>Biblio count</th> |
146 |
<th>Items expected</th> |
146 |
<th>Items expected</th> |
147 |
<th>Created by</th> |
147 |
<th>Created by</th> |
148 |
<th class="title-string">Date</th> |
148 |
<th class="title-string">Date</th> |
Lines 184-201
$(document).ready(function() {
Link Here
|
184 |
<td>[% basket.basketno %]</td> |
184 |
<td>[% basket.basketno %]</td> |
185 |
<td>[% basket.basketname %]</td> |
185 |
<td>[% basket.basketname %]</td> |
186 |
<td> |
186 |
<td> |
187 |
<span title="[% basket.total_items %]">[% basket.total_items %] |
187 |
[% basket.total_items %] |
188 |
[% IF basket.total_items_cancelled %] |
188 |
[% IF basket.total_items_cancelled %] |
189 |
([% basket.total_items_cancelled %] cancelled) |
189 |
([% basket.total_items_cancelled %] cancelled) |
190 |
[% END %] |
190 |
[% END %] |
191 |
</span> |
|
|
192 |
</td> |
191 |
</td> |
193 |
<td> |
192 |
<td> |
194 |
<span title="[% basket.total_biblios %]">[% basket.total_biblios %] |
193 |
[% basket.total_biblios %] |
195 |
[% IF basket.total_biblios_cancelled %] |
194 |
[% IF basket.total_biblios_cancelled %] |
196 |
([% basket.total_biblios_cancelled %] cancelled) |
195 |
([% basket.total_biblios_cancelled %] cancelled) |
197 |
[% END %] |
196 |
[% END %] |
198 |
</span> |
|
|
199 |
</td> |
197 |
</td> |
200 |
<td>[% basket.expected_items %]</td> |
198 |
<td>[% basket.expected_items %]</td> |
201 |
<td> |
199 |
<td> |
202 |
- |
|
|