Lines 102-107
Link Here
|
102 |
<tr> |
102 |
<tr> |
103 |
<th>Basket</th> |
103 |
<th>Basket</th> |
104 |
<th>[% tp('noun', 'Order') | html %]</th> |
104 |
<th>[% tp('noun', 'Order') | html %]</th> |
|
|
105 |
<th>Edit</th> |
105 |
<th>By</th> |
106 |
<th>By</th> |
106 |
<th>Uncertain</th> |
107 |
<th>Uncertain</th> |
107 |
<th>Price</th> |
108 |
<th>Price</th> |
Lines 112-118
Link Here
|
112 |
[% FOREACH uncertainpriceorder IN uncertainpriceorders %] |
113 |
[% FOREACH uncertainpriceorder IN uncertainpriceorders %] |
113 |
<tr> |
114 |
<tr> |
114 |
<td> |
115 |
<td> |
115 |
[% uncertainpriceorder.basketname | html %] |
116 |
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% uncertainpriceorder.basketno %]">[% uncertainpriceorder.basketname %]</a> |
116 |
</td> |
117 |
</td> |
117 |
<td> |
118 |
<td> |
118 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% uncertainpriceorder.biblionumber | uri %]">[% uncertainpriceorder.title | html %]</a> |
119 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% uncertainpriceorder.biblionumber | uri %]">[% uncertainpriceorder.title | html %]</a> |
Lines 125-133
Link Here
|
125 |
[% END %] |
126 |
[% END %] |
126 |
[% IF ( uncertainpriceorder.isbn ) %]<br />[% uncertainpriceorder.isbn | html %][% END %] |
127 |
[% IF ( uncertainpriceorder.isbn ) %]<br />[% uncertainpriceorder.isbn | html %][% END %] |
127 |
<br /> |
128 |
<br /> |
128 |
<a href="neworderempty.pl?ordernumber=[% uncertainpriceorder.ordernumber | uri %]&booksellerid=[% booksellerid | uri %]&basketno=[% uncertainpriceorder.basketno | uri %]"> |
129 |
</td> |
129 |
Edit |
130 |
<td class="actions"> |
130 |
</a> |
131 |
<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> |
131 |
</td> |
132 |
</td> |
132 |
<td> |
133 |
<td> |
133 |
[% uncertainpriceorder.firstname | html %] [% uncertainpriceorder.surname | html %] |
134 |
[% uncertainpriceorder.firstname | html %] [% uncertainpriceorder.surname | html %] |
Lines 172-178
Link Here
|
172 |
$(document).ready(function() { |
173 |
$(document).ready(function() { |
173 |
var uncertainpricet = $("#uncertainpricet").dataTable($.extend(true, {}, dataTablesDefaults, { |
174 |
var uncertainpricet = $("#uncertainpricet").dataTable($.extend(true, {}, dataTablesDefaults, { |
174 |
"aoColumnDefs": [ |
175 |
"aoColumnDefs": [ |
175 |
{ "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, |
176 |
{ "aTargets": [ 2, -1, -2, -3 ], "bSortable": false, "bSearchable": false }, |
176 |
], |
177 |
], |
177 |
"sPaginationType": "full" |
178 |
"sPaginationType": "full" |
178 |
})); |
179 |
})); |
179 |
- |
|
|