Owen Leonard
cdd956bc5f
This patch updates various unrelated templates to use the Bootstrap grid. In each case, confirm that the indicated page looks correct. - Acquisitions -> Vendor -> Add to basket -> From a staged file. - Logged-in user menu (in the upper right) -> Search history. - With plugins disabled in koha-conf.xml, go to Tools -> Tools plugins. - With the EasyAnalyticalRecords system preference set to 'Display,' view a bibliographic record. - Choose Edit -> Link to host item. - Submit a barcode to be linked. - Configure a MARC subfield (e.g. 100$a) to use the unimarc_field_225a_bis plugin. From the MARC edit page, trigger the plugin and confirm that the page in the popup window looks correct. Confirm that changes made in the popup window are saved to the corresponding field in the editor. - Administration -> Funds -> Edit a fund. - Click 'Select owner.' - Search for a patron. Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
59 lines
2.5 KiB
Text
59 lines
2.5 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Cataloging ’ Link to host item</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="catalog_linkitem" class="catalog">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'cat-search.inc' %]
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › Link a host item to <i>[% bibliotitle |html %]</i></div>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-6 col-sm-offset-3 col-md-6 col-md-offset-3">
|
|
|
|
[% IF ( error ) %]
|
|
<div class="dialog alert">
|
|
[% IF ( errornomodbiblio ) %]ERROR: Unable to modify the bibliographic record.[% END %]
|
|
[% IF ( errornohostitemnumber ) %]ERROR: Unable to get the item number from this barcode.[% END %]
|
|
</div>
|
|
<form action="/cgi-bin/koha/catalogue/MARCdetail.pl" method="post">
|
|
<input type="submit" value="OK" />
|
|
<input type="hidden" name="biblionumber" value="[% biblionumber %]" />
|
|
</form>
|
|
[% ELSE %]
|
|
[% IF ( success ) %]
|
|
<div class="dialog message">The item has successfully been linked to <i>[% bibliotitle |html %]</i>.</div>
|
|
<form action="/cgi-bin/koha/catalogue/MARCdetail.pl" method="post">
|
|
<input type="submit" value="OK" />
|
|
<input type="hidden" name="biblionumber" value="[% biblionumber %]" />
|
|
</form>
|
|
[% ELSE %]
|
|
[% IF ( missingparameter ) %]
|
|
<form method="post" action="/cgi-bin/koha/cataloguing/linkitem.pl">
|
|
[% IF ( missingbiblionumber ) %]
|
|
<fieldset id="biblionumber_fieldset">
|
|
<label for="biblionumber_fieldset">Select the biblionumber to link the item to</label>
|
|
<div class="hint">Enter biblionumber:</div>
|
|
<input type="text" name="biblionumber" id="biblionumber" class="focus" size="14" />
|
|
</fieldset>
|
|
[% ELSE %]
|
|
<input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]" />
|
|
[% END %]
|
|
|
|
[% IF ( missingbarcode ) %]
|
|
<fieldset id="barcode_fieldset">
|
|
<label for="barcode_fieldset">Select the host item to link[% IF ( bibliotitle ) %] to <i>[% bibliotitle |html %]</i>[% END %]</label>
|
|
<div class="hint">Enter item barcode:</div>
|
|
<input type="text" name="barcode" id="barcode" class="barcode focus" size="14" />
|
|
</fieldset>
|
|
[% ELSE %]
|
|
<input type="hidden" name="barcode" id="barcode" value="[% barcode %]" />
|
|
[% END %]
|
|
|
|
<input type="submit" value="Select" />
|
|
|
|
</form>
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|