Lines 102-107
$(document).ready(function() {
Link Here
|
102 |
<th>Items expected</th> |
102 |
<th>Items expected</th> |
103 |
<th>Created by</th> |
103 |
<th>Created by</th> |
104 |
<th>Date</th> |
104 |
<th>Date</th> |
|
|
105 |
<th>Basket group</th> |
105 |
<th>Closed</th> |
106 |
<th>Closed</th> |
106 |
<th> </th> |
107 |
<th> </th> |
107 |
</tr> |
108 |
</tr> |
Lines 124-129
$(document).ready(function() {
Link Here
|
124 |
</td> |
125 |
</td> |
125 |
<td><span title="[% basket.creationdate %]">[% basket.creationdate | $KohaDates %]</span></td> |
126 |
<td><span title="[% basket.creationdate %]">[% basket.creationdate | $KohaDates %]</span></td> |
126 |
<td> |
127 |
<td> |
|
|
128 |
[% IF basket.basketgroup %] |
129 |
[% basketgroup = basket.basketgroup %] |
130 |
[% IF basketgroup.closed %] |
131 |
[% basketgroup.name %] (closed) |
132 |
[% ELSE %] |
133 |
<a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% basket.booksellerid %]&basketgroupid=[% basketgroup.id %]">[% basketgroup.name %]</a> |
134 |
[% END %] |
135 |
[% END %] |
136 |
</td> |
137 |
<td> |
127 |
[% IF ( basket.closedate ) %] |
138 |
[% IF ( basket.closedate ) %] |
128 |
<span title="[% basket.closedate %]">[% basket.closedate | $KohaDates %]</span> |
139 |
<span title="[% basket.closedate %]">[% basket.closedate | $KohaDates %]</span> |
129 |
[% ELSE %] |
140 |
[% ELSE %] |
130 |
- |
|
|