View | Details | Raw Unified | Return to bug 15136
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +2 lines)
Lines 1-4 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE Branches %]
2
[% USE KohaDates %]
3
[% USE KohaDates %]
3
[% USE ColumnsSettings %]
4
[% USE ColumnsSettings %]
4
[% USE Price %]
5
[% USE Price %]
Lines 110-116 $(document).ready(function() { Link Here
110
        [%- END -%]
111
        [%- END -%]
111
        [%- IF account.description %], [% account.description %][% END %]
112
        [%- IF account.description %], [% account.description %][% END %]
112
        &nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.biblionumber %]&amp;itemnumber=[% account.itemnumber %]">[% account.title |html %]</a>[% END %]</td>
113
        &nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.biblionumber %]&amp;itemnumber=[% account.itemnumber %]">[% account.title |html %]</a>[% END %]</td>
113
      <td>[%- IF account.homebranch %][% account.homebranch %][% END %]</td>
114
      <td>[% Branches.GetName( account.homebranch ) %]</td>
114
      <td>[% account.note | html_line_break %]</td>
115
      <td>[% account.note | html_line_break %]</td>
115
      [% IF ( account.amountcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
116
      [% IF ( account.amountcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
116
      [% IF ( account.amountoutstandingcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amountoutstanding | $Price %]</td>
117
      [% IF ( account.amountoutstandingcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amountoutstanding | $Price %]</td>
(-)a/members/boraccount.pl (-4 lines)
Lines 94-102 foreach my $accountline ( @{$accts}) { Link Here
94
        $accountline->{payment} = 1;
94
        $accountline->{payment} = 1;
95
        $reverse_col = 1;
95
        $reverse_col = 1;
96
    }
96
    }
97
    if ($accountline->{homebranch}) {
98
        $accountline->{homebranch} = C4::Branch::GetBranchName($accountline->{homebranch});
99
    }
100
}
97
}
101
98
102
$template->param( adultborrower => 1 ) if ( $patron->category->category_type =~ /^(A|I)$/ );
99
$template->param( adultborrower => 1 ) if ( $patron->category->category_type =~ /^(A|I)$/ );
103
- 

Return to bug 15136