Bug 10368 - Added price to overdue report

Signed-off-by: Srdjan <srdjan@catalyst.net.nz>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
Amit Gupta 2013-05-29 13:23:33 +05:30 committed by Galen Charlton
parent 225a700705
commit f6f7a3435c

View file

@ -103,6 +103,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70%
<th>Title</th> <th>Title</th>
<th>Barcode</th> <th>Barcode</th>
<th>Call number</th> <th>Call number</th>
<th>Price of book</th>
</tr></thead> </tr></thead>
<tbody>[% FOREACH overdueloo IN overdueloop %] <tbody>[% FOREACH overdueloo IN overdueloop %]
@ -116,6 +117,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70%
</td> </td>
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber %]&amp;itemnumber=[% overdueloo.itemnum %]#item[% overdueloo.itemnum %]">[% overdueloo.barcode %]</a></td> <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber %]&amp;itemnumber=[% overdueloo.itemnum %]#item[% overdueloo.itemnum %]">[% overdueloo.barcode %]</a></td>
<td>[% overdueloo.itemcallnumber %]</td> <td>[% overdueloo.itemcallnumber %]</td>
<td>[% overdueloo.replacementprice %]</td>
</tr> </tr>
[% END %]</tbody> [% END %]</tbody>
</table> </table>