Lines 12-17
Link Here
|
12 |
10: { sorter: false } |
12 |
10: { sorter: false } |
13 |
} |
13 |
} |
14 |
}); |
14 |
}); |
|
|
15 |
$("#cancelledorderst").tablesorter(); |
15 |
}); |
16 |
}); |
16 |
//]]> |
17 |
//]]> |
17 |
</script> |
18 |
</script> |
Lines 228-240
Link Here
|
228 |
<th> </th> |
229 |
<th> </th> |
229 |
<th>[% qty_total %]</th> |
230 |
<th>[% qty_total %]</th> |
230 |
<th>[% total_est_gste %]</th> |
231 |
<th>[% total_est_gste %]</th> |
231 |
[% IF ( active ) %] |
232 |
[% IF ( active ) %] |
232 |
[% IF ( closedate ) %] |
233 |
[% IF ( closedate ) %] |
233 |
<td colspan="1" rowspan="3"> </td> |
234 |
<th colspan="1" rowspan="3"></th> |
234 |
[% ELSE %] |
235 |
[% ELSE %] |
235 |
<td colspan="3" rowspan="3"> </td> |
236 |
<th colspan="3" rowspan="3"></th> |
236 |
[% END %] |
237 |
[% END %] |
237 |
[% END %] |
238 |
[% END %] |
238 |
</tr> |
239 |
</tr> |
239 |
<tr> |
240 |
<tr> |
240 |
<th>Tax ([% gist_rate %])</th> |
241 |
<th>Tax ([% gist_rate %])</th> |
Lines 257-262
Link Here
|
257 |
<th> </th> |
258 |
<th> </th> |
258 |
<th>[% qty_total %]</th> |
259 |
<th>[% qty_total %]</th> |
259 |
<th>[% total_est_gsti %]</th> |
260 |
<th>[% total_est_gsti %]</th> |
|
|
261 |
[% IF ( active ) %] |
262 |
[% IF ( closedate ) %] |
263 |
<th colspan="1"></th> |
264 |
[% ELSE %] |
265 |
<th colspan="3"></th> |
266 |
[% END %] |
267 |
[% END %] |
260 |
</tr> |
268 |
</tr> |
261 |
[% END %] |
269 |
[% END %] |
262 |
</tfoot> |
270 |
</tfoot> |
Lines 321-326
Link Here
|
321 |
[% IF ( listincgst ) %]<small class="highlight">** Vendor's listings already include tax.</small> |
329 |
[% IF ( listincgst ) %]<small class="highlight">** Vendor's listings already include tax.</small> |
322 |
[% END %] |
330 |
[% END %] |
323 |
</div> |
331 |
</div> |
|
|
332 |
[% IF (cancelledorders_loop) %] |
333 |
<div id="cancelledorders"> |
334 |
<h2>Cancelled orders</h2> |
335 |
<table id="cancelledorderst"> |
336 |
<thead> |
337 |
<tr> |
338 |
<th>Order</th> |
339 |
<th>RRP</th> |
340 |
<th>Est.</th> |
341 |
<th>Qty.</th> |
342 |
<th>Total</th> |
343 |
<th>Fund</th> |
344 |
</tr> |
345 |
</thead> |
346 |
<tbody> |
347 |
[% FOREACH order IN cancelledorders_loop %] |
348 |
<tr style="color:grey"> |
349 |
<td> |
350 |
<p> |
351 |
[% IF ( order.order_received ) %] (rcvd)[% END %] |
352 |
[% IF (order.title) %] |
353 |
[% order.title |html %] by [% order.author %]<br /> |
354 |
[% ELSE %] |
355 |
<em>Deleted bibliographic record, can't find title</em><br /> |
356 |
[% END %] |
357 |
[% IF ( order.notes ) %] [% order.notes %][% END %] |
358 |
[% IF ( order.isbn ) %] - [% order.isbn %][% END %] |
359 |
[% IF ( order.issn ) %] - [% order.issn %][% END %] |
360 |
[% IF ( order.publishercode ) %], [% order.publishercode %][% END %] |
361 |
[% IF ( order.publicationyear ) %], [% order.publicationyear %][% END %] |
362 |
</p> |
363 |
</td> |
364 |
<td><p>[% order.rrp %]</p></td> |
365 |
<td><p>[% order.ecost %]</p></td> |
366 |
<td><p>[% order.quantity %]</p></td> |
367 |
<td><p>[% order.line_total %]</p></td> |
368 |
<td><p>[% order.budget_name %]</p></td> |
369 |
</tr> |
370 |
[% END %] |
371 |
</tbody> |
372 |
</table> |
373 |
</div> |
374 |
[% END %] |
324 |
<br /> |
375 |
<br /> |
325 |
[% UNLESS ( closedate ) %] |
376 |
[% UNLESS ( closedate ) %] |
326 |
[% INCLUDE 'acquisitions-add-to-basket.inc' %] |
377 |
[% INCLUDE 'acquisitions-add-to-basket.inc' %] |
327 |
- |
|
|