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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-4 / +4 lines)
Lines 122-132 Link Here
122
        &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>
122
        &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>
123
      <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>
123
      <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>
124
      <td>[% IF ( account.itemnumber ) %][% account.item.itemcallnumber | html %][% END %]</td>
124
      <td>[% IF ( account.itemnumber ) %][% account.item.itemcallnumber | html %][% END %]</td>
125
      <td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td>
125
      <td>[% IF ( account.issue_id ) || (account.old_issue_id) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td>
126
      <td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td>
126
      <td>[% IF ( account.issue_id ) || (account.old_issue_id) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td>
127
      <td>[% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %]</td>
127
      <td>[% IF ( account.issue_id ) || (account.old_issue_id) %][% account.checkout.issuedate | $KohaDates %][% END %]</td>
128
      <td class="checked_out_from">
128
      <td class="checked_out_from">
129
          [% IF account.issue_id && account.checkout.library %]
129
          [% IF ( account.issue_id ) || (account.old_issue_id) && account.checkout.library %]
130
              [% account.checkout.library.branchname | html %]
130
              [% account.checkout.library.branchname | html %]
131
          [% END %]
131
          [% END %]
132
      </td>
132
      </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-5 / +4 lines)
Lines 143-164 Link Here
143
        [% END %]
143
        [% END %]
144
    </td>
144
    </td>
145
    <td>
145
    <td>
146
        [% IF line.issue_id %]
146
        [% IF line.issue_id || line.old_issue_id %]
147
            [% line.checkout.date_due | $KohaDates as_due_date => 1 %]
147
            [% line.checkout.date_due | $KohaDates as_due_date => 1 %]
148
        [% END %]
148
        [% END %]
149
    </td>
149
    </td>
150
    <td>
150
    <td>
151
        [% IF line.issue_id %]
151
        [% IF line.issue_id || line.old_issue_id %]
152
            [% line.checkout.returndate | $KohaDates with_hours => 1 %]
152
            [% line.checkout.returndate | $KohaDates with_hours => 1 %]
153
        [% END %]
153
        [% END %]
154
    </td>
154
    </td>
155
    <td>
155
    <td>
156
        [% IF line.issue_id %]
156
        [% IF line.issue_id || line.old_issue_id %]
157
            [% line.checkout.issuedate | $KohaDates %]
157
            [% line.checkout.issuedate | $KohaDates %]
158
        [% END %]
158
        [% END %]
159
    </td>
159
    </td>
160
    <td class="checked_out_from">
160
    <td class="checked_out_from">
161
        [% IF line.issue_id && line.checkout.library %]
161
        [% IF (line.issue_id || line.old_issue_id) && line.checkout.library %]
162
            [% line.checkout.library.branchname | html %]
162
            [% line.checkout.library.branchname | html %]
163
        [% END %]
163
        [% END %]
164
    </td>
164
    </td>
165
- 

Return to bug 39025