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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-27 / +17 lines)
Lines 1-3 Link Here
1
[% BLOCK btn_group %]
2
    <div class="btn-group">
3
       <fieldset class="action">
4
          <label for="csv_code">Select CSV profile:</label>
5
          <select id="csv_profile_for_export">
6
             <option value="default">default</option>
7
             [% IF csv_profiles %]
8
                [% FOR csv IN csv_profiles %]
9
                   <option value="[% csv.export_format_id %]">[% csv.profile %]</option>
10
                [% END %]
11
             [% END %]
12
          </select>
13
       </fieldset>
14
    </div>
15
[% END %]
1
[% USE KohaDates %]
16
[% USE KohaDates %]
2
[% USE Price %]
17
[% USE Price %]
3
[% USE AuthorisedValues %]
18
[% USE AuthorisedValues %]
Lines 185-203 Link Here
185
                            <a href="[% script_name %]?op=close&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="closebutton"><i class="icon-remove-sign"></i> Close this basket</a>
200
                            <a href="[% script_name %]?op=close&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="closebutton"><i class="icon-remove-sign"></i> Close this basket</a>
186
                        </div>
201
                        </div>
187
                    [% END %]
202
                    [% END %]
188
                       <div class="btn-group">
203
                       [% PROCESS btn_group %]
189
                       <fieldset class="action">
190
                          <label for="csv_code">Select CSV profile:</label>
191
                          <select id="csv_profile_for_export">
192
                             <option value="default">default</option>
193
                             [% IF csv_profiles %]
194
                                [% FOR csv IN csv_profiles %]
195
                                   <option value="[% csv.export_format_id %]">[% csv.profile %]</option>
196
                                [% END %]
197
                             [% END %]
198
                          </select>
199
                       </fieldset>
200
                       </div>
201
                       <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="icon-download"></i> Export </a></div>
204
                       <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="icon-download"></i> Export </a></div>
202
                   </div>
205
                   </div>
203
<!-- Modal for confirm deletion box-->
206
<!-- Modal for confirm deletion box-->
Lines 234-252 Link Here
234
                [% UNLESS ( grouped ) %]
237
                [% UNLESS ( grouped ) %]
235
                <div id="toolbar" class="btn-toolbar">
238
                <div id="toolbar" class="btn-toolbar">
236
                    <div class="btn-group"><a href="#" class="btn btn-small" id="reopenbutton"><i class="icon-refresh"></i> Reopen this basket</a></div>
239
                    <div class="btn-group"><a href="#" class="btn btn-small" id="reopenbutton"><i class="icon-refresh"></i> Reopen this basket</a></div>
237
                    <div class="btn-group">
240
                    [% PROCESS btn_group %]
238
                    <fieldset class="action">
239
                       <label for="csv_code">Select CSV profile:</label>
240
                       <select id="csv_profile_for_export">
241
                          <option value="default">default</option>
242
                          [% IF csv_profiles %]
243
                             [% FOR csv IN csv_profiles %]
244
                                <option value="[% csv.export_format_id %]">[% csv.profile %]</option>
245
                             [% END %]
246
                          [% END %]
247
                       </select>
248
                    </fieldset>
249
                    </div>
250
                    <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="icon-download"></i> Export </a></div>
241
                    <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="icon-download"></i> Export </a></div>
251
                </div>
242
                </div>
252
                [% END %]
243
                [% END %]
253
- 

Return to bug 8612