|
Lines 224-230
Item types administration
Link Here
|
| 224 |
</li> |
224 |
</li> |
| 225 |
|
225 |
|
| 226 |
[%# The tax rate is only useful if the item are created on ordering and if the item type is defined at the biblio level %] |
226 |
[%# The tax rate is only useful if the item are created on ordering and if the item type is defined at the biblio level %] |
| 227 |
[% IF Koha.Preference('AcqCreateItem') eq 'ordering' and Koha.Preference('item-level_itypes') eq '0' %] |
227 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' and Koha.Preference('item-level_itypes') == '0' %] |
| 228 |
<li> |
228 |
<li> |
| 229 |
<label for="gstrate">Tax rate: </label> |
229 |
<label for="gstrate">Tax rate: </label> |
| 230 |
<select name="gstrate" id="gstrate"> |
230 |
<select name="gstrate" id="gstrate"> |
|
Lines 328-334
Item types administration
Link Here
|
| 328 |
<th>Hide in OPAC</th> |
328 |
<th>Hide in OPAC</th> |
| 329 |
<th>Charge</th> |
329 |
<th>Charge</th> |
| 330 |
[%# The tax rate is only useful if the item are created on ordering and if the item type is defined at the biblio level %] |
330 |
[%# The tax rate is only useful if the item are created on ordering and if the item type is defined at the biblio level %] |
| 331 |
[% IF Koha.Preference('AcqCreateItem') eq 'ordering' and Koha.Preference('item-level_itypes') eq '0' %] |
331 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' and Koha.Preference('item-level_itypes') == '0' %] |
| 332 |
<th>Tax rate</th> |
332 |
<th>Tax rate</th> |
| 333 |
[% END %] |
333 |
[% END %] |
| 334 |
<th>Checkin message</th> |
334 |
<th>Checkin message</th> |
|
Lines 366-372
Item types administration
Link Here
|
| 366 |
[% END %] |
366 |
[% END %] |
| 367 |
</td> |
367 |
</td> |
| 368 |
[%# The tax rate is only useful if the item are created on ordering and if the item type is defined at the biblio level %] |
368 |
[%# The tax rate is only useful if the item are created on ordering and if the item type is defined at the biblio level %] |
| 369 |
[% IF Koha.Preference('AcqCreateItem') eq 'ordering' and Koha.Preference('item-level_itypes') eq '0' %] |
369 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' and Koha.Preference('item-level_itypes') == '0' %] |
| 370 |
<td> |
370 |
<td> |
| 371 |
[% IF loo.gstrate.length > 0 %] |
371 |
[% IF loo.gstrate.length > 0 %] |
| 372 |
[% loo.gstrate * 100 | format("%.1f") %]% |
372 |
[% loo.gstrate * 100 | format("%.1f") %]% |
| 373 |
- |
|
|