View | Details | Raw Unified | Return to bug 17353
Collapse All | Expand All

(-)a/C4/Utils/DataTables/Members.pm (-1 / +1 lines)
Lines 39-45 sub search { Link Here
39
        borrowers.borrowernotes, borrowers.branchcode, borrowers.email,
39
        borrowers.borrowernotes, borrowers.branchcode, borrowers.email,
40
        borrowers.userid, borrowers.dateofbirth, borrowers.categorycode,
40
        borrowers.userid, borrowers.dateofbirth, borrowers.categorycode,
41
        categories.description AS category_description, categories.category_type,
41
        categories.description AS category_description, categories.category_type,
42
        branches.branchname";
42
        branches.branchname, borrowers.phone";
43
    my $from = "FROM borrowers
43
    my $from = "FROM borrowers
44
        LEFT JOIN branches ON borrowers.branchcode = branches.branchcode
44
        LEFT JOIN branches ON borrowers.branchcode = branches.branchcode
45
        LEFT JOIN categories ON borrowers.categorycode = categories.categorycode";
45
        LEFT JOIN categories ON borrowers.categorycode = categories.categorycode";
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc (-1 / +2 lines)
Lines 19-24 Link Here
19
            <th>Category</th>
19
            <th>Category</th>
20
            <th>Library</th>
20
            <th>Library</th>
21
            <th>Address</th>
21
            <th>Address</th>
22
            <th>Primary phone</th>
22
        </tr>
23
        </tr>
23
    </thead>
24
    </thead>
24
    <tbody>
25
    <tbody>
Lines 34-39 Link Here
34
                <td>[% Categories.GetName( borrower.categorycode ) %]</td>
35
                <td>[% Categories.GetName( borrower.categorycode ) %]</td>
35
                <td>[% Branches.GetName( borrower.branchcode ) %]</td>
36
                <td>[% Branches.GetName( borrower.branchcode ) %]</td>
36
                <td>[% borrower.address %]</td>
37
                <td>[% borrower.address %]</td>
38
                <td>[% borrower.phone %]</td>
37
            </tr>
39
            </tr>
38
        [% END %]
40
        [% END %]
39
    </tbody>
41
    </tbody>
40
- 

Return to bug 17353