Lines 101-118
Link Here
|
101 |
<thead> |
101 |
<thead> |
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>By</th> |
105 |
<th>By</th> |
106 |
<th>Uncertain</th> |
106 |
<th class="NoSort">Uncertain</th> |
107 |
<th>Price</th> |
107 |
<th class="NoSort">Price</th> |
108 |
<th>Quantity</th> |
108 |
<th class="NoSort">Quantity</th> |
|
|
109 |
<th class="NoSort">Edit</th> |
109 |
</tr> |
110 |
</tr> |
110 |
</thead> |
111 |
</thead> |
111 |
<tbody> |
112 |
<tbody> |
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 |
Edit |
130 |
</a> |
131 |
</td> |
129 |
</td> |
132 |
<td> |
130 |
<td> |
133 |
[% uncertainpriceorder.firstname | html %] [% uncertainpriceorder.surname | html %] |
131 |
[% uncertainpriceorder.firstname | html %] [% uncertainpriceorder.surname | html %] |
Lines 146-151
Link Here
|
146 |
<input class="check_uncertain" data-ordernumber="[% uncertainpriceorder.ordernumber | html %]" type="text" size="10" name="qty[% uncertainpriceorder.ordernumber | html %]" value="[% uncertainpriceorder.quantity | html %]" /> |
144 |
<input class="check_uncertain" data-ordernumber="[% uncertainpriceorder.ordernumber | html %]" type="text" size="10" name="qty[% uncertainpriceorder.ordernumber | html %]" value="[% uncertainpriceorder.quantity | html %]" /> |
147 |
[% END %] |
145 |
[% END %] |
148 |
</td> |
146 |
</td> |
|
|
147 |
<td class="actions"> |
148 |
<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> |
149 |
</td> |
149 |
</tr> |
150 |
</tr> |
150 |
[% END %] |
151 |
[% END %] |
151 |
</tbody> |
152 |
</tbody> |
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 |
{ 'bSortable': false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, |
176 |
], |
177 |
], |
177 |
"sPaginationType": "full" |
178 |
"sPaginationType": "full" |
178 |
})); |
179 |
})); |
179 |
- |
|
|