|
Lines 9-15
Link Here
|
| 9 |
$(document).ready(function() { |
9 |
$(document).ready(function() { |
| 10 |
var uncertainpricet = $("#uncertainpricet").dataTable($.extend(true, {}, dataTablesDefaults, { |
10 |
var uncertainpricet = $("#uncertainpricet").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 11 |
"aoColumnDefs": [ |
11 |
"aoColumnDefs": [ |
| 12 |
{ "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, |
12 |
{ "aTargets": [ 2, -1, -2, -3 ], "bSortable": false, "bSearchable": false }, |
| 13 |
], |
13 |
], |
| 14 |
"sPaginationType": "four_button" |
14 |
"sPaginationType": "four_button" |
| 15 |
} ) ); |
15 |
} ) ); |
|
Lines 94-100
var MSG_INVALIDPRICE = _("ERROR: Price is not a valid number, please check the p
Link Here
|
| 94 |
<thead> |
94 |
<thead> |
| 95 |
<tr> |
95 |
<tr> |
| 96 |
<th>Basket</th> |
96 |
<th>Basket</th> |
| 97 |
<th>Order</th> |
97 |
<th>Order</th> |
|
|
98 |
<th>Edit</th> |
| 98 |
<th>By</th> |
99 |
<th>By</th> |
| 99 |
<th>Uncertain</th> |
100 |
<th>Uncertain</th> |
| 100 |
<th>Price</th> |
101 |
<th>Price</th> |
|
Lines 105-118
var MSG_INVALIDPRICE = _("ERROR: Price is not a valid number, please check the p
Link Here
|
| 105 |
[% FOREACH uncertainpriceorder IN uncertainpriceorders %] |
106 |
[% FOREACH uncertainpriceorder IN uncertainpriceorders %] |
| 106 |
<tr> |
107 |
<tr> |
| 107 |
<td> |
108 |
<td> |
| 108 |
[% uncertainpriceorder.basketname %] |
109 |
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% uncertainpriceorder.basketno %]">[% uncertainpriceorder.basketname %]</a> |
|
|
110 |
</td> |
| 111 |
<td> |
| 112 |
[% uncertainpriceorder.bibtitle %] / [% uncertainpriceorder.bibauthor %] <br /> [% uncertainpriceorder.bibpublishercode %], [% uncertainpriceorder.bibpublicationyear %]<br />[% uncertainpriceorder.bibisbn %] |
| 113 |
</td> |
| 114 |
<td class="actions"> |
| 115 |
<a href="/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% uncertainpriceorder.ordernumber %]&booksellerid=[% booksellerid %]&basketno=[% uncertainpriceorder.basketno %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a> |
| 109 |
</td> |
116 |
</td> |
| 110 |
<td> |
|
|
| 111 |
[% uncertainpriceorder.bibtitle %] / [% uncertainpriceorder.bibauthor %] <br /> [% uncertainpriceorder.bibpublishercode %], [% uncertainpriceorder.bibpublicationyear %]<br />[% uncertainpriceorder.bibisbn %]<br /> |
| 112 |
<a href="neworderempty.pl?ordernumber=[% uncertainpriceorder.ordernumber %]&booksellerid=[% booksellerid %]&basketno=[% uncertainpriceorder.basketno %]"> |
| 113 |
edit |
| 114 |
</a> |
| 115 |
</td> |
| 116 |
<td> |
117 |
<td> |
| 117 |
[% uncertainpriceorder.firstname %] [% uncertainpriceorder.surname %] |
118 |
[% uncertainpriceorder.firstname %] [% uncertainpriceorder.surname %] |
| 118 |
</td> |
119 |
</td> |
| 119 |
- |
|
|