Lines 1-4
Link Here
|
1 |
[% USE KohaDates %] |
1 |
[% USE KohaDates %] |
|
|
2 |
[% USE Branches %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
<title>Koha › Acquisitions › Order staged MARC records |
4 |
<title>Koha › Acquisitions › Order staged MARC records |
4 |
[% IF ( batch_details ) %] |
5 |
[% IF ( batch_details ) %] |
Lines 293-314
Link Here
|
293 |
<ol> |
294 |
<ol> |
294 |
<li> |
295 |
<li> |
295 |
<label for="homebranch_item_[% item.item_id %]">homebranch</label><select id="homebranch_item_[% item.item_id %]" name="homebranch_[% item.biblio_count %]"> |
296 |
<label for="homebranch_item_[% item.item_id %]">homebranch</label><select id="homebranch_item_[% item.item_id %]" name="homebranch_[% item.biblio_count %]"> |
296 |
[% FOREACH branchloo IN branchloop %] |
297 |
[% FOREACH l IN libraries %] |
297 |
[% IF ( branchloo.value ) == ( item.homebranch ) %] |
298 |
[% IF l.branchcode == item.homebranch %] |
298 |
<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option> |
299 |
<option value="[% l.branchcode %]" selected="selected">[% l.branchname %]</option> |
299 |
[% ELSE %] |
300 |
[% ELSE %] |
300 |
<option value="[% branchloo.value %]">[% branchloo.branchname %]</option> |
301 |
<option value="[% l.branchcode %]">[% l.branchname %]</option> |
301 |
[% END %] |
302 |
[% END %] |
302 |
[% END %] |
303 |
[% END %] |
303 |
</select> |
304 |
</select> |
304 |
</li> |
305 |
</li> |
305 |
|
306 |
|
306 |
<li><label for="holdingbranch_item_[% item.item_id %]">holdingbranch</label><select id="holdingbranch_item_[% item.item_id %]" name="holdingbranch_[% item.biblio_count %]"> |
307 |
<li><label for="holdingbranch_item_[% item.item_id %]">holdingbranch</label><select id="holdingbranch_item_[% item.item_id %]" name="holdingbranch_[% item.biblio_count %]"> |
307 |
[% FOREACH branchloo IN branchloop %] |
308 |
[% FOREACH l IN libraries %] |
308 |
[% IF ( branchloo.value ) == ( item.holdingbranch ) %] |
309 |
[% IF l.branchcode == item.holdingbranch %] |
309 |
<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option> |
310 |
<option value="[% l.branchcode %]" selected="selected">[% l.branchname %]</option> |
310 |
[% ELSE %] |
311 |
[% ELSE %] |
311 |
<option value="[% branchloo.value %]">[% branchloo.branchname %]</option> |
312 |
<option value="[% l.branchcode %]">[% l.branchname %]</option> |
312 |
[% END %] |
313 |
[% END %] |
313 |
[% END %] |
314 |
[% END %] |
314 |
</select> |
315 |
</select> |
315 |
- |
|
|