Lines 115-120
Link Here
|
115 |
[% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %] |
115 |
[% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %] |
116 |
[% IF ( enter ) %] |
116 |
[% IF ( enter ) %] |
117 |
<form action="updatesupplier.pl" name="updatesupplier" class="validated" method="post"> |
117 |
<form action="updatesupplier.pl" name="updatesupplier" class="validated" method="post"> |
|
|
118 |
<div id="toolbar" class="btn-toolbar"> |
119 |
<button class="btn btn-default btn-sm" type="submit"><i class="fa fa-save"></i> Save</button> |
120 |
[% IF ( booksellerid ) %] |
121 |
<a class="btn btn-default btn-sm cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]"> |
122 |
[% ELSE %] |
123 |
<a class="btn btn-default btn-sm cancel" href="/cgi-bin/koha/acqui/acqui-home.pl"> |
124 |
[% END %] <i class="fa fa-remove"></i> Cancel</a> |
125 |
</div> |
126 |
<div class="yui-g"> |
118 |
<input type="hidden" name="booksellerid" value="[% booksellerid | html %]" /> |
127 |
<input type="hidden" name="booksellerid" value="[% booksellerid | html %]" /> |
119 |
<fieldset class="rows"> |
128 |
<fieldset class="rows"> |
120 |
<legend>Company details</legend> |
129 |
<legend>Company details</legend> |
Lines 242-247
Link Here
|
242 |
<fieldset class="action"><input type="submit" value="Save" /> [% IF ( booksellerid ) %] |
251 |
<fieldset class="action"><input type="submit" value="Save" /> [% IF ( booksellerid ) %] |
243 |
<a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | html %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl"> |
252 |
<a class="cancel" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | html %]">[% ELSE %]<a class="cancel" href="/cgi-bin/koha/acqui/acqui-home.pl"> |
244 |
[% END %]Cancel</a></fieldset> |
253 |
[% END %]Cancel</a></fieldset> |
|
|
254 |
</div> |
245 |
</form> |
255 |
</form> |
246 |
[% ELSE %] |
256 |
[% ELSE %] |
247 |
<h1>[% name | html %]</h1> |
257 |
<h1>[% name | html %]</h1> |
Lines 354-359
Link Here
|
354 |
|
364 |
|
355 |
[% MACRO jsinclude BLOCK %] |
365 |
[% MACRO jsinclude BLOCK %] |
356 |
[% Asset.js("js/acquisitions-menu.js") | $raw %] |
366 |
[% Asset.js("js/acquisitions-menu.js") | $raw %] |
|
|
367 |
[% Asset.js("lib/jquery/plugins/jquery.fixFloat.js") | $raw %] |
357 |
[% INCLUDE 'datatables.inc' %] |
368 |
[% INCLUDE 'datatables.inc' %] |
358 |
<script> |
369 |
<script> |
359 |
function confirm_deletion() { |
370 |
function confirm_deletion() { |
Lines 424-429
Link Here
|
424 |
$('body').on('click', '.contact_claimissues', null, function () { |
435 |
$('body').on('click', '.contact_claimissues', null, function () { |
425 |
$(this).next('.contact_claimissues_hidden').val($(this).is(':checked') ? '1' : '0'); |
436 |
$(this).next('.contact_claimissues_hidden').val($(this).is(':checked') ? '1' : '0'); |
426 |
}); |
437 |
}); |
|
|
438 |
$('#toolbar').fixFloat(); |
427 |
}); |
439 |
}); |
428 |
</script> |
440 |
</script> |
429 |
[% END %] |
441 |
[% END %] |
430 |
- |
|
|