Lines 85-97
Link Here
|
85 |
<tr> |
85 |
<tr> |
86 |
<th>No.</th> |
86 |
<th>No.</th> |
87 |
<th>Name</th> |
87 |
<th>Name</th> |
88 |
<th class="title-numeric">Item count</th> |
88 |
<th>Item count</th> |
89 |
<th class="title-numeric">Bibliographic record count</th> |
89 |
<th>Bibliographic record count</th> |
90 |
<th>Items expected</th> |
90 |
<th>Items expected</th> |
91 |
<th>[% tp('basket created by', 'Created by') | html %]</th> |
91 |
<th>[% tp('basket created by', 'Created by') | html %]</th> |
92 |
<th class="title-string">Date</th> |
92 |
<th>Date</th> |
93 |
<th>Basket group</th> |
93 |
<th>Basket group</th> |
94 |
<th class="title-string">Closed</th> |
94 |
<th>Closed</th> |
95 |
<th class="noExport">Actions</th> |
95 |
<th class="noExport">Actions</th> |
96 |
</tr> |
96 |
</tr> |
97 |
</thead> |
97 |
</thead> |
Lines 104-122
Link Here
|
104 |
[% END %] |
104 |
[% END %] |
105 |
<td>[% basket.basketno | html %]</td> |
105 |
<td>[% basket.basketno | html %]</td> |
106 |
<td><a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno | uri %]">[% basket.basketname | html %]</a></td> |
106 |
<td><a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno | uri %]">[% basket.basketname | html %]</a></td> |
107 |
<td> |
107 |
<td data-order="[% basket.total_items | html %]"> |
108 |
<span title="[% basket.total_items | html %]">[% basket.total_items | html %] |
108 |
[% basket.total_items | html %] |
109 |
[% IF basket.total_items_cancelled %] |
109 |
[% IF basket.total_items_cancelled %] |
110 |
([% basket.total_items_cancelled | html %] cancelled) |
110 |
([% basket.total_items_cancelled | html %] cancelled) |
111 |
[% END %] |
111 |
[% END %] |
112 |
</span> |
|
|
113 |
</td> |
112 |
</td> |
114 |
<td> |
113 |
<td data-order="[% basket.total_biblios | html %]"> |
115 |
<span title="[% basket.total_biblios | html %]">[% basket.total_biblios | html %] |
114 |
[% basket.total_biblios | html %] |
116 |
[% IF basket.total_biblios_cancelled %] |
115 |
[% IF basket.total_biblios_cancelled %] |
117 |
([% basket.total_biblios_cancelled | html %] cancelled) |
116 |
([% basket.total_biblios_cancelled | html %] cancelled) |
118 |
[% END %] |
117 |
[% END %] |
119 |
</span> |
|
|
120 |
</td> |
118 |
</td> |
121 |
<td>[% basket.expected_items | html %]</td> |
119 |
<td>[% basket.expected_items | html %]</td> |
122 |
<td> |
120 |
<td> |
Lines 125-131
Link Here
|
125 |
[% basket.authorisedby.surname | html %] |
123 |
[% basket.authorisedby.surname | html %] |
126 |
[% END %] |
124 |
[% END %] |
127 |
</td> |
125 |
</td> |
128 |
<td><span title="[% basket.creationdate | html %]">[% basket.creationdate | $KohaDates %]</span></td> |
126 |
<td data-order="[% basket.creationdate | html %]">[% basket.creationdate | $KohaDates %]</td> |
129 |
<td> |
127 |
<td> |
130 |
[% IF basket.basketgroup %] |
128 |
[% IF basket.basketgroup %] |
131 |
[% basketgroup = basket.basketgroup %] |
129 |
[% basketgroup = basket.basketgroup %] |
Lines 136-147
Link Here
|
136 |
[% END %] |
134 |
[% END %] |
137 |
[% END %] |
135 |
[% END %] |
138 |
</td> |
136 |
</td> |
139 |
<td> |
137 |
<td data-order="[% basket.closedate | html %]"> |
140 |
[% IF ( basket.closedate ) %] |
138 |
[% basket.closedate | $KohaDates %] |
141 |
<span title="[% basket.closedate | html %]">[% basket.closedate | $KohaDates %]</span> |
|
|
142 |
[% ELSE %] |
143 |
<span title="9999-99-99"></span> |
144 |
[% END %] |
145 |
</td> |
139 |
</td> |
146 |
<td class="actions"> |
140 |
<td class="actions"> |
147 |
[% IF not basket.closedate and supplier.active %] |
141 |
[% IF not basket.closedate and supplier.active %] |
Lines 215-222
Link Here
|
215 |
'bInfo': false, |
209 |
'bInfo': false, |
216 |
"aaSorting": [[ 1, "asc" ]], |
210 |
"aaSorting": [[ 1, "asc" ]], |
217 |
"aoColumnDefs": [ |
211 |
"aoColumnDefs": [ |
218 |
{ "sType": "title-string", "aTargets" : [ "title-string" ] }, |
|
|
219 |
{ "sType": "title-numeric", "aTargets" : [ "title-numeric" ] }, |
220 |
{ 'aTargets': [-1], 'bSortable': false } |
212 |
{ 'aTargets': [-1], 'bSortable': false } |
221 |
] |
213 |
] |
222 |
})); |
214 |
})); |