Bugzilla – Attachment 110305 Details for
Bug 15780
Include inventory number in patron account summary print
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15780: Add inventory number to checkout list on summary print
Bug-15780-Add-inventory-number-to-checkout-list-on.patch (text/plain), 2.29 KB, created by
Katrin Fischer
on 2020-09-17 22:55:47 UTC
(
hide
)
Description:
Bug 15780: Add inventory number to checkout list on summary print
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-09-17 22:55:47 UTC
Size:
2.29 KB
patch
obsolete
>From 48da34ee1cab35ec6fa1cf10ba1f23a3e48cfb87 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Thu, 17 Sep 2020 11:52:10 +0000 >Subject: [PATCH] Bug 15780: Add inventory number to checkout list on summary > print > >This will add the inventory number to the list of checkouts that >can be printed using the 'Print summary' feature from the patron >account in staff. > >To test: >- Apply patch >- Make sure you have some items with and without inventory number set >- Check them out to any patron >- Go to Print > Print summary >- Verify the inventory number column is showing up and the numbers > show with their items. >--- > koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt >index 9e92f4e681..14cc3bd107 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt >@@ -40,6 +40,7 @@ > <th>Item type</th> > <th>Date due</th> > <th>Barcode</th> >+ <th>Inventory number</th> > <th>Charge</th> > <th>Price</th> > <th>Status</th> >@@ -56,6 +57,7 @@ > <td>[% ItemTypes.GetDescription( issue.itype ) | html %]</td> > <td>[% issue.date_due | $KohaDates as_due_date => 1 %]</td> > <td>[% issue.barcode | html %]</td> >+ <td>[% issue.stocknumber | html %]</td> > <td>[% issue.charge | $Price %]</td> > <td>[% issue.replacementprice | $Price %]</td> > <td>[% IF ( issue.overdue ) %]Overdue![% ELSE %] [% END %]</td> >@@ -63,7 +65,7 @@ > [% END %] > > <tr> >- <td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td> >+ <td colspan="7" style="text-align: right; font-weight:bold;">Totals:</td> > <td>[% totaldue | $Price %]</td> > <td>[% totalprice | $Price %]</td> > <td colspan="3"> </td> >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15780
:
110305
|
110306
|
110728
|
111734