Bug 10368 - Added price to overdue report
authorAmit Gupta <amit.gupta@osslabs.biz>
Wed, 29 May 2013 07:53:33 +0000 (13:23 +0530)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 7 Jun 2013 15:54:35 +0000 (08:54 -0700)
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>
koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt

index 8235a29..59aa8ca 100644 (file)
@@ -103,6 +103,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70%
     <th>Title</th>
     <th>Barcode</th>
     <th>Call number</th>
+    <th>Price of book</th>
 </tr></thead>
 
 <tbody>[% FOREACH overdueloo IN overdueloop %]
@@ -116,6 +117,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70%
         </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.replacementprice %]</td>
         </tr>
 [% END %]</tbody>
 </table>