Bug 9763 - Add callnumber column to "print summary" for moremember.pl
authorKyle M Hall <kyle@bywatersolutions.com>
Thu, 7 Mar 2013 13:56:59 +0000 (08:56 -0500)
committerGalen Charlton <gmc@esilibrary.com>
Wed, 29 May 2013 14:48:39 +0000 (07:48 -0700)
Test plan:
1) Apply patch
2) Check out some items to a borrower
3) Choose "Print summary" from the "Print" pulldown
4) Observe the new callnumber column after "Author" and before "Item type"
5) Note that the totals in the footer are still aligned correctly

Signed-off-by: Eli Anthony <library.assist@taylorcountygov.com>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt

index 9665ab3..0c5486e 100644 (file)
@@ -30,6 +30,7 @@
        <tr>
                <th>Title</th>
                <th>Author</th>
+                <th>Call no</th>
         <th>Item type</th>
         <th>Date due</th>
                <th>Charge</th>
@@ -45,6 +46,7 @@
                </a>
                </td>
                <td>[% issueloo.author %]</td>
+                <td>[% issueloo.itemcallnumber %]</td>
                <td>[% issueloo.itemtype_description %]</td>
                <td>[% issueloo.date_due %]</td>
                <td>[% issueloo.charge %]</td>
@@ -53,7 +55,7 @@
        </tr>
        [% END %]
        <tr>
-            <td colspan="4" style="text-align: right; font-weight:bold;">Totals:</td>
+            <td colspan="5" style="text-align: right; font-weight:bold;">Totals:</td>
             <td>[% totaldue %]</td>
             <td>[% totalprice %]</td>
             <td colspan="2">&nbsp;</td>