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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +1 lines)
Lines 44-50 Link Here
44
44
45
   [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
45
   [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
46
      <td>[% account.date %]</td>
46
      <td>[% account.date %]</td>
47
      <td>[% account.description %]&nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.biblionumber %]&amp;itemnumber=[% account.itemnumber %]">View item</a>&nbsp;[% END %][% IF ( account.printtitle ) %] [% account.title |html %][% END %]</td>
47
      <td>[% account.description %]&nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.biblionumber %]&amp;itemnumber=[% account.itemnumber %]">View item</a>&nbsp;[% END %][% account.title |html %]</td>
48
      <td>[% account.note %]</td>
48
      <td>[% account.note %]</td>
49
      [% IF ( account.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amount %]</td>
49
      [% IF ( account.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amount %]</td>
50
      [% IF ( account.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amountoutstanding %]</td>
50
      [% IF ( account.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amountoutstanding %]</td>
(-)a/members/boraccount.pl (-4 lines)
Lines 87-95 foreach my $accountline ( @{$accts}) { Link Here
87
        $accountline->{payment} = 1;
87
        $accountline->{payment} = 1;
88
        $reverse_col = 1;
88
        $reverse_col = 1;
89
    }
89
    }
90
    if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){
91
        $accountline->{printtitle} = 1;
92
    }
93
}
90
}
94
91
95
$template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
92
$template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
96
- 

Return to bug 6732