|
Lines 113-118
Link Here
|
| 113 |
[% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %] |
113 |
[% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %] |
| 114 |
[% IF ( enter ) %] |
114 |
[% IF ( enter ) %] |
| 115 |
<form action="updatesupplier.pl" name="updatesupplier" class="validated" method="post"> |
115 |
<form action="updatesupplier.pl" name="updatesupplier" class="validated" method="post"> |
|
|
116 |
<div id="toolbar" class="btn-toolbar"> |
| 117 |
<button class="btn btn-default btn-sm" type="submit"><i class="fa fa-save"></i> Save</button> |
| 118 |
[% IF ( booksellerid ) %] |
| 119 |
<a class="btn btn-default btn-sm cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]"> |
| 120 |
[% ELSE %] |
| 121 |
<a class="btn btn-default btn-sm cancel" href="/cgi-bin/koha/acqui/acqui-home.pl"> |
| 122 |
[% END %] <i class="fa fa-remove"></i> Cancel</a> |
| 123 |
</div> |
| 116 |
<div class="yui-g"> |
124 |
<div class="yui-g"> |
| 117 |
<input type="hidden" name="booksellerid" value="[% booksellerid %]" /> |
125 |
<input type="hidden" name="booksellerid" value="[% booksellerid %]" /> |
| 118 |
<fieldset class="rows"> |
126 |
<fieldset class="rows"> |
|
Lines 239-247
Link Here
|
| 239 |
<li><label for="notes">Notes: </label> |
247 |
<li><label for="notes">Notes: </label> |
| 240 |
<textarea cols="40" rows="4" id="notes" name="notes" >[% notes %]</textarea></li></ol> |
248 |
<textarea cols="40" rows="4" id="notes" name="notes" >[% notes %]</textarea></li></ol> |
| 241 |
</fieldset> |
249 |
</fieldset> |
| 242 |
<fieldset class="action"><input type="submit" value="Save" /> [% IF ( booksellerid ) %] |
|
|
| 243 |
<a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl"> |
| 244 |
[% END %]Cancel</a></fieldset> |
| 245 |
</div> |
250 |
</div> |
| 246 |
</form> |
251 |
</form> |
| 247 |
[% ELSE %] |
252 |
[% ELSE %] |
|
Lines 352-357
Link Here
|
| 352 |
|
357 |
|
| 353 |
[% MACRO jsinclude BLOCK %] |
358 |
[% MACRO jsinclude BLOCK %] |
| 354 |
<script type="text/javascript" src="[% interface %]/[% theme %]/js/acquisitions-menu_[% KOHA_VERSION %].js"></script> |
359 |
<script type="text/javascript" src="[% interface %]/[% theme %]/js/acquisitions-menu_[% KOHA_VERSION %].js"></script> |
|
|
360 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat_[% KOHA_VERSION %].js"></script> |
| 355 |
[% INCLUDE 'datatables.inc' %] |
361 |
[% INCLUDE 'datatables.inc' %] |
| 356 |
<script type="text/javascript"> |
362 |
<script type="text/javascript"> |
| 357 |
function confirm_deletion() { |
363 |
function confirm_deletion() { |
|
Lines 422-427
Link Here
|
| 422 |
$('body').on('click', '.contact_claimissues', null, function () { |
428 |
$('body').on('click', '.contact_claimissues', null, function () { |
| 423 |
$(this).next('.contact_claimissues_hidden').val($(this).is(':checked') ? '1' : '0'); |
429 |
$(this).next('.contact_claimissues_hidden').val($(this).is(':checked') ? '1' : '0'); |
| 424 |
}); |
430 |
}); |
|
|
431 |
$('#toolbar').fixFloat(); |
| 425 |
}); |
432 |
}); |
| 426 |
</script> |
433 |
</script> |
| 427 |
[% END %] |
434 |
[% END %] |
| 428 |
- |
|
|