Bug 34478: Manual fix - convert link to form - boraccount.tt
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
a060170d29
commit
1d4b275332
1 changed files with 14 additions and 1 deletions
|
@ -161,7 +161,20 @@
|
|||
[% END %]
|
||||
<a href="accountline-details.pl?accountlines_id=[% account.accountlines_id | uri %]" class="btn btn-default btn-xs details-action"><i class="fa fa-list"></i> Details</a>
|
||||
[% IF account.is_debit && account.amountoutstanding > 0 %]
|
||||
<a class="btn btn-default btn-xs pay-action" href="/cgi-bin/koha/members/paycollect.pl?borrowernumber=[% account.borrowernumber | html %]&pay_individual=1&debit_type_code=[% account.debit_type_code | html %]&amount=[% account.amount | html %]&amountoutstanding=[% account.amountoutstanding | html %]&description=[% account.description | html %]&itemnumber=[% account.itemnumber | html %]&accountlines_id=[% account.accountlines_id | html %]&csrf_token=[% csrf_token | html %]"><i class="fa-solid fa-money-bill-1"></i> Pay</a>
|
||||
<form method="post" action="/cgi-bin/koha/members/paycollect.pl">
|
||||
[% INCLUDE 'csrf-token.inc' %]
|
||||
<input type="hidden" name="borrowernumber" value="[% account.borrowernumber | html %]"/>
|
||||
<input type="hidden" name="pad_individual" value="1" />
|
||||
<input type="hidden" name="debit_type_code" value="[% account.debit_type_code | html %]" />
|
||||
<input type="hidden" name="amount" value="[% account.ammount | html %]" />
|
||||
<input type="hidden" name="amountoutstanding" value="[% account.amountoutstanding | html %]"/>
|
||||
<input type="hidden" name="description" value="[% account.description | html %]" />
|
||||
<input type="hidden" name="itemnumber" value="[% account.itemnumber | html %]" />
|
||||
<input type="hidden" name="accountlines_id" value="[% account.accountlines_id | html %]" />
|
||||
<button type="submit" class="btn btn-default btn-xs pay-action">
|
||||
<i class="fa-solid fa-money-bill-1"></i> Pay</a>
|
||||
</button>
|
||||
</form>
|
||||
[% END %]
|
||||
[% IF account.is_credit && account.status != 'VOID' %]
|
||||
<form method="post" action="/cgi-bin/koha/members/boraccount.pl">
|
||||
|
|
Loading…
Reference in a new issue