Bug 13781: Fix relatives's checkouts missing heading columns
authorgenevieve <genevieve.plantin@inlibro.com>
Fri, 4 Sep 2015 13:15:26 +0000 (09:15 -0400)
committerMason James <mtj@kohaaloha.com>
Fri, 2 Oct 2015 10:42:49 +0000 (23:42 +1300)
There was two missing heading columns (location and fine) and one hidden heading missing column (this hidden column is needing for sorting the table) it was taking the due_date column for the hidden column, so I added them

Both patches tested together. Works as expected.
Signed-off-by: Marc VĂ©ron <veron@veron.ch>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Mason James <mtj@kohaaloha.com>

koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt

index 9a124ae..2d178c6 100644 (file)
@@ -474,13 +474,16 @@ function validate1(date) {
         <table id="relatives-issues-table" style="width: 100% !Important;">
             <thead>
                 <tr>
+                    <th scope="col">Due date hidden not formatted</th>
                     <th scope="col">Due date</th>
                     <th scope="col">Title</th>
                     <th scope="col">Item type</th>
+                    <th scope="col">Location</th>
                     <th scope="col">Checked out on</th>
                     <th scope="col">Checked out from</th>
                     <th scope="col">Call no</th>
                     <th scope="col">Charge</th>
+                    <th scope="col">Fine</th>
                     <th scope="col">Price</th>
                     <th scope="col">Patron</th>
                 </tr>