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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 892-897 modules: Link Here
892
              columnname: description
892
              columnname: description
893
            -
893
            -
894
              columnname: barcode
894
              columnname: barcode
895
            -
896
              columnname: callnumber
895
            -
897
            -
896
              columnname: date_due
898
              columnname: date_due
897
            -
899
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-2 / +3 lines)
Lines 83-88 Link Here
83
          <th>Account type</th>
83
          <th>Account type</th>
84
          <th>Description of charges</th>
84
          <th>Description of charges</th>
85
          <th>Barcode</th>
85
          <th>Barcode</th>
86
          <th>Call number</th>
86
          <th>Due date</th>
87
          <th>Due date</th>
87
          <th>Checkin date</th>
88
          <th>Checkin date</th>
88
          <th>Checkout date</th>
89
          <th>Checkout date</th>
Lines 108-113 Link Here
108
        [%- IF account.description %][% account.description | html %][% END %]
109
        [%- IF account.description %][% account.description | html %][% END %]
109
        &nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber | uri %]&amp;itemnumber=[% account.itemnumber | uri %]">[% account.item.biblio.title | html %]</a>[% END %]</td>
110
        &nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber | uri %]&amp;itemnumber=[% account.itemnumber | uri %]">[% account.item.biblio.title | html %]</a>[% END %]</td>
110
      <td>[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% account.itemnumber | uri %]&amp;biblionumber=[% account.item.biblionumber | uri %]#item[% account.itemnumber | uri %]">[% account.item.barcode | html %]</a>[% END %]</td>
111
      <td>[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% account.itemnumber | uri %]&amp;biblionumber=[% account.item.biblionumber | uri %]#item[% account.itemnumber | uri %]">[% account.item.barcode | html %]</a>[% END %]</td>
112
      <td>[% IF ( account.itemnumber ) %][% account.item.itemcallnumber | html %][% END %]</td>
111
      <td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td>
113
      <td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td>
112
      <td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td>
114
      <td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td>
113
      <td>[% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %]</td>
115
      <td>[% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %]</td>
Lines 159-165 Link Here
159
  [% END %]
161
  [% END %]
160
<tfoot>
162
<tfoot>
161
  <tr>
163
  <tr>
162
    <td colspan="13">Total due</td>
164
    <td colspan="14">Total due</td>
163
    [% IF ( totalcredit ) %]
165
    [% IF ( totalcredit ) %]
164
        <td class="credit" style="text-align: right;">[% total | $Price %]</td>
166
        <td class="credit" style="text-align: right;">[% total | $Price %]</td>
165
        <td>
167
        <td>
166
- 

Return to bug 32977