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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 665-670 modules: Link Here
665
              columnname: returndate
665
              columnname: returndate
666
            -
666
            -
667
              columnname: issuedate
667
              columnname: issuedate
668
            -
669
              columnname: checked_out_from
668
            -
670
            -
669
              columnname: note
671
              columnname: note
670
            -
672
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +6 lines)
Lines 52-57 Link Here
52
          <th>Due date</th>
52
          <th>Due date</th>
53
          <th>Checkin date</th>
53
          <th>Checkin date</th>
54
          <th>Checkout date</th>
54
          <th>Checkout date</th>
55
          <th class="checked_out_from">Checked out from</th>
55
          <th>Home library</th>
56
          <th>Home library</th>
56
          <th>Note</th>
57
          <th>Note</th>
57
          <th>Amount</th>
58
          <th>Amount</th>
Lines 75-80 Link Here
75
      <td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td>
76
      <td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td>
76
      <td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td>
77
      <td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td>
77
      <td>[% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %]</td>
78
      <td>[% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %]</td>
79
      <td class="checked_out_from">
80
          [% IF account.issue_id && account.checkout.library %]
81
              [% account.checkout.library.branchname | html %]
82
          [% END %]
83
      </td>
78
      <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td>
84
      <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td>
79
      <td>[% account.note | html_line_break %]</td>
85
      <td>[% account.note | html_line_break %]</td>
80
      [% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
86
      [% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
81
- 

Return to bug 26327