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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/subscriptions-search.inc (-2 / +4 lines)
Lines 12-31 Link Here
12
                <label for="title">Title:</label>
12
                <label for="title">Title:</label>
13
                <input type="text" id="title" name="title_filter" value="[% title_filter %]" />
13
                <input type="text" id="title" name="title_filter" value="[% title_filter %]" />
14
              </li>
14
              </li>
15
              [% IF Koha.Preference( 'marcflavour' ) == "UNIMARC" %]
15
              <li>
16
              <li>
16
                <label for="ean">EAN:</label>
17
                <label for="ean">EAN:</label>
17
                <input type="text" id="ean" name="EAN_filter" value="[% EAN_filter %]" />
18
                <input type="text" id="ean" name="EAN_filter" value="[% EAN_filter %]" />
18
              </li>
19
              </li>
20
              [% END %]
19
              <li>
21
              <li>
20
                <label for="publisher">Publisher:</label>
22
                <label for="publisher">Publisher:</label>
21
                <input type="text" id="publisher" name="publisher_filter" value="[% publisher_filter %]" />
23
                <input type="text" id="publisher" name="publisher_filter" value="[% publisher_filter %]" />
22
              </li>
24
              </li>
23
              <li>
25
              <li>
24
                <label for="supplier">Supplier:</label>
26
                <label for="supplier">Vendor:</label>
25
                <input type="text" id="supplier" name="supplier_filter" value="[% supplier_filter %]" />
27
                <input type="text" id="supplier" name="supplier_filter" value="[% supplier_filter %]" />
26
              </li>
28
              </li>
27
              <li>
29
              <li>
28
                <label for="branch">Branch:</label>
30
                <label for="branch">Library:</label>
29
                <select id="branch" name="branch_filter">
31
                <select id="branch" name="branch_filter">
30
                  <option value="">All</option>
32
                  <option value="">All</option>
31
                  [% FOREACH branch IN branches_loop %]
33
                  [% FOREACH branch IN branches_loop %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt (-2 / +3 lines)
Lines 1-4 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE Branches %]
3
[% USE Koha %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Serials [% biblionumber %]</title>
5
<title>Koha &rsaquo; Serials [% biblionumber %]</title>
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
6
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
Lines 75-81 Link Here
75
                                    [% IF (sub.internalnotes) %]([% sub.internalnotes %])[% END %]
77
                                    [% IF (sub.internalnotes) %]([% sub.internalnotes %])[% END %]
76
                                </td>
78
                                </td>
77
                                <td>
79
                                <td>
78
                                    [% IF (sub.branchcode) %][% sub.branchcode %][% END %]
80
                                    [% IF (sub.branchcode) %][% Branches.GetName( sub.branchcode ) %][% END %]
79
                                </td>
81
                                </td>
80
                                <td>
82
                                <td>
81
                                    [% IF (sub.callnumber) %][% sub.callnumber %][% END %]
83
                                    [% IF (sub.callnumber) %][% sub.callnumber %][% END %]
82
- 

Return to bug 10971