|
Lines 10-16
Link Here
|
| 10 |
Batch list |
10 |
Batch list |
| 11 |
[% END %] › Order staged MARC records › Acquisitions › Koha |
11 |
[% END %] › Order staged MARC records › Acquisitions › Koha |
| 12 |
</title> |
12 |
</title> |
| 13 |
<style>.biblio { padding: 0 .5em;margin:0; }.item_edit_form{border-top:1px solid #AAA;padding-top:.5em;}@media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }</style> |
13 |
<style> |
|
|
14 |
.biblio { |
| 15 |
padding: 0 .5em; |
| 16 |
margin:0; |
| 17 |
} |
| 18 |
.order_details { |
| 19 |
display: flex; |
| 20 |
justify-content: space-between; |
| 21 |
} |
| 22 |
.biblio .actions { |
| 23 |
float: right; |
| 24 |
} |
| 25 |
@media (max-width: 992px) { |
| 26 |
.order_details { |
| 27 |
display: block; |
| 28 |
} |
| 29 |
} |
| 30 |
@media (max-width: 767px) { |
| 31 |
#dataPreview { |
| 32 |
margin: 0; |
| 33 |
width : auto; |
| 34 |
} |
| 35 |
} |
| 36 |
</style> |
| 14 |
[% INCLUDE 'doc-head-close.inc' %] |
37 |
[% INCLUDE 'doc-head-close.inc' %] |
| 15 |
[% Asset.css("css/addbiblio.css") | $raw %] |
38 |
[% Asset.css("css/addbiblio.css") | $raw %] |
| 16 |
[%# As long as cataloging plugins rely on 'script' tags added inline, JS must be in the header %] |
39 |
[%# As long as cataloging plugins rely on 'script' tags added inline, JS must be in the header %] |
|
Lines 132-137
Link Here
|
| 132 |
[%- END -%] |
155 |
[%- END -%] |
| 133 |
</span> |
156 |
</span> |
| 134 |
</label> |
157 |
</label> |
|
|
158 |
<span class="actions"> |
| 159 |
<a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% biblio.import_record_id | uri %]" class="previewData btn btn-default btn-xs">MARC</a> |
| 160 |
<a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% biblio.import_record_id | uri %]" class="previewData btn btn-default btn-xs">Card</a> |
| 161 |
<a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid | uri %]&basketno=[% basketno | uri %]&breedingid=[% biblio.import_record_id | uri %]&import_batch_id=[% biblio.import_batch_id | uri %]&biblionumber=[% biblio.match_biblionumber | uri %]" class="btn btn-default btn-xs">Add order</a> |
| 162 |
</span> |
| 135 |
<fieldset class="rows order_details"> |
163 |
<fieldset class="rows order_details"> |
| 136 |
<ol> |
164 |
<ol> |
| 137 |
<li class="status"> |
165 |
<li class="status"> |
|
Lines 207-213
Link Here
|
| 207 |
<div class="item_edit_form"> |
235 |
<div class="item_edit_form"> |
| 208 |
[% IF biblio.item_error %]Item records could not be processed because the number of item fields was uneven.[% END %] |
236 |
[% IF biblio.item_error %]Item records could not be processed because the number of item fields was uneven.[% END %] |
| 209 |
[% FOREACH item IN biblio.iteminfos %] |
237 |
[% FOREACH item IN biblio.iteminfos %] |
| 210 |
<fieldset> |
238 |
<fieldset class="rows"> |
| 211 |
<legend>Item record [% item.item_id | html %]</legend> |
239 |
<legend>Item record [% item.item_id | html %]</legend> |
| 212 |
<ol> |
240 |
<ol> |
| 213 |
<li> |
241 |
<li> |
|
Lines 336-346
Link Here
|
| 336 |
[% END %] |
364 |
[% END %] |
| 337 |
</fieldset> <!-- /.rows.order_details --> |
365 |
</fieldset> <!-- /.rows.order_details --> |
| 338 |
</td> |
366 |
</td> |
| 339 |
<td class="actions"> |
|
|
| 340 |
<a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% biblio.import_record_id | uri %]" class="previewData btn btn-default btn-xs">MARC</a> |
| 341 |
<a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% biblio.import_record_id | uri %]" class="previewData btn btn-default btn-xs">Card</a> |
| 342 |
<a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid | uri %]&basketno=[% basketno | uri %]&breedingid=[% biblio.import_record_id | uri %]&import_batch_id=[% biblio.import_batch_id | uri %]&biblionumber=[% biblio.match_biblionumber | uri %]" class="btn btn-default btn-xs">Add order</a> |
| 343 |
</td> |
| 344 |
</tr> |
367 |
</tr> |
| 345 |
[% END # /FOREACH biblio %] |
368 |
[% END # /FOREACH biblio %] |
| 346 |
</tbody> |
369 |
</tbody> |
| 347 |
- |
|
|