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

(-)a/acqui/basketgroup.pl (-6 / +31 lines)
Lines 58-63 use Koha::EDI qw/create_edi_order get_edifact_ean/; Link Here
58
58
59
use Koha::Acquisition::Bookseller;
59
use Koha::Acquisition::Bookseller;
60
60
61
use List::MoreUtils qw/uniq/;
62
61
our $input=new CGI;
63
our $input=new CGI;
62
64
63
our ($template, $loggedinuser, $cookie)
65
our ($template, $loggedinuser, $cookie)
Lines 388-399 if ( $op eq "add" ) { Link Here
388
    generate_edifact_orders( $basketgroupid );
390
    generate_edifact_orders( $basketgroupid );
389
    exit;
391
    exit;
390
}else{
392
}else{
391
# no param : display the list of all basketgroups for a given vendor
393
    my @booksellers;
392
    my $basketgroups = &GetBasketgroups($booksellerid);
394
    if ($booksellerid) {
393
    my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
395
        my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
394
    my $baskets = &GetBasketsByBookseller($booksellerid);
396
        push @booksellers, $bookseller;
395
397
        $template->param(booksellername => $booksellers[0]->{name});
396
    displaybasketgroups($basketgroups, $bookseller, $baskets);
398
    } else {
399
        @booksellers = Koha::Acquisition::Bookseller->search;
400
    }
401
    foreach my $bookseller (@booksellers) {
402
        $bookseller->{basketgroups} = GetBasketgroups($bookseller->{id});
403
        foreach my $basketgroup (@{ $bookseller->{basketgroups} }) {
404
            my $baskets = GetBasketsByBasketgroup($basketgroup->{id});
405
            $basketgroup->{basketsqty} = 0;
406
            my (@ordered_biblionumbers, @received_biblionumbers);
407
            foreach my $basket (@$baskets) {
408
                $basketgroup->{basketsqty} += 1;
409
                my @orders = GetOrders($basket->{basketno});
410
                foreach my $order (@orders) {
411
                    push @ordered_biblionumbers, $order->{biblionumber};
412
                    if ($order->{datereceived}) {
413
                        push @received_biblionumbers, $order->{biblionumber};
414
                    }
415
                }
416
            }
417
            $basketgroup->{ordered_titles_count} = uniq @ordered_biblionumbers;
418
            $basketgroup->{received_titles_count} = uniq @received_biblionumbers;
419
        }
420
    }
421
    $template->param(booksellers => \@booksellers);
397
}
422
}
398
$template->param(listclosed => ((defined $input->param('listclosed')) && ($input->param('listclosed') eq '1'))? 1:0 );
423
$template->param(listclosed => ((defined $input->param('listclosed')) && ($input->param('listclosed') eq '1'))? 1:0 );
399
#prolly won't use all these, maybe just use print, the rest can be done inside validate
424
#prolly won't use all these, maybe just use print, the rest can be done inside validate
(-)a/koha-tmpl/intranet-tmpl/prog/css/datatables.css (+3 lines)
Lines 240-245 tr.even.selected td { Link Here
240
240
241
/* ColumnFilter */
241
/* ColumnFilter */
242
span.filter_column > input[type="text"] {
242
span.filter_column > input[type="text"] {
243
    box-sizing: border-box;
244
    -moz-box-sizing: border-box;
245
    -webkit-box-sizing: border-box;
243
    font-size: 80%;
246
    font-size: 80%;
244
    width: 100%;
247
    width: 100%;
245
    box-sizing: border-box;
248
    box-sizing: border-box;
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-menu.inc (+3 lines)
Lines 2-7 Link Here
2
	<li><a href="/cgi-bin/koha/acqui/lateorders.pl">Late orders</a></li>
2
	<li><a href="/cgi-bin/koha/acqui/lateorders.pl">Late orders</a></li>
3
	[% IF ( suggestion ) %]<li><a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a></li>[% ELSE %][% END %]
3
	[% IF ( suggestion ) %]<li><a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a></li>[% ELSE %][% END %]
4
    <li><a href="/cgi-bin/koha/acqui/invoices.pl">Invoices</a></li>
4
    <li><a href="/cgi-bin/koha/acqui/invoices.pl">Invoices</a></li>
5
    [% IF ( CAN_user_acquisition_group_manage ) %]
6
      <li><a href="/cgi-bin/koha/acqui/basketgroup.pl">Basket groups</a></li>
7
    [% END %]
5
    [% IF ( CAN_user_acquisition_budget_manage ) %]
8
    [% IF ( CAN_user_acquisition_budget_manage ) %]
6
    <li><a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a></li>
9
    <li><a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a></li>
7
    <li><a href="/cgi-bin/koha/admin/aqbudgets.pl">Funds</a></li>
10
    <li><a href="/cgi-bin/koha/admin/aqbudgets.pl">Funds</a></li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-99 / +167 lines)
Lines 1-9 Link Here
1
[% USE Branches %]
1
[% USE Branches %]
2
[% USE KohaDates %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Basket grouping for [% booksellername |html %]</title>
4
[% IF booksellerid %]
5
  <title>Koha &rsaquo; Basket groups for [% booksellername |html %]</title>
6
[% ELSE %]
7
  <title>Koha &rsaquo; Basket groups</title>
8
[% END %]
4
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
5
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'datatables.inc' %]
11
[% INCLUDE 'datatables.inc' %]
12
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.columnFilter.js"></script>
7
<script type="text/javascript" src="[% interface %]/lib/yui/utilities/utilities.js"></script>
13
<script type="text/javascript" src="[% interface %]/lib/yui/utilities/utilities.js"></script>
8
<script type="text/javascript" src="[% interface %]/lib/yui/button/button-min.js"></script>
14
<script type="text/javascript" src="[% interface %]/lib/yui/button/button-min.js"></script>
9
<script type="text/javascript" src="[% interface %]/lib/yui/container/container_core-min.js"></script>
15
<script type="text/javascript" src="[% interface %]/lib/yui/container/container_core-min.js"></script>
Lines 107-121 function submitForm(form) { Link Here
107
}
113
}
108
114
109
 $(document).ready(function() {
115
 $(document).ready(function() {
110
    $("#basket_groups").tabs();
116
    $(".basket_groups").tabs();
111
117
112
    $("table").dataTable($.extend(true, {}, dataTablesDefaults, {
118
    $("table").each(function () {
113
        "aoColumnDefs": [
119
      var column_filter_options = {
114
            { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
120
        sPlaceHolder: "head:after",
115
        ],
121
        aoColumns: [
116
        "bAutoWidth": false,
122
          { type: "text" },
117
        "sPaginationType": "four_button"
123
          { type: "text" },
118
    } ));
124
          { type: "text" },
125
          { type: "text" },
126
          { type: "text" },
127
          { type: "text" },
128
          { type: "text" },
129
          null
130
        ]
131
      };
132
      if ($(this).hasClass('basket_group_closed')) {
133
        // There is one more column in closed basketgroups tables
134
        column_filter_options.aoColumns.unshift({ type: "text" });
135
      }
136
      $(this).dataTable($.extend(true, {}, dataTablesDefaults, {
137
          "aoColumnDefs": [
138
              { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
139
          ],
140
          "bPaginate": false,
141
          "bAutoWidth": false
142
      } ))
143
      .columnFilter(column_filter_options);
144
    });
119
145
120
 });
146
 });
121
147
Lines 129-138 function submitForm(form) { Link Here
129
155
130
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
156
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
131
[% IF ( grouping ) %]
157
[% IF ( grouping ) %]
132
    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basketgroup.pl?booksellerid=[% booksellerid %]">Basket grouping</a> &rsaquo; Add basket group for [% booksellername |html %]</div>
158
    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basketgroup.pl?booksellerid=[% booksellerid %]">Basket groups</a> &rsaquo; Add basket group for [% booksellername |html %]
133
[% ELSE %]
159
[% ELSE %]
134
    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; Basket grouping</div>
160
  [% IF (booksellerid) %]
161
    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo;
162
  [% END %]
163
  Basket groups
135
[% END %]
164
[% END %]
165
</div>
136
166
137
<div id="doc3" class="yui-t2">
167
<div id="doc3" class="yui-t2">
138
    <div id="bd">
168
    <div id="bd">
Lines 299-395 function submitForm(form) { Link Here
299
                        </div>
329
                        </div>
300
                    </div>
330
                    </div>
301
                [% ELSE %]
331
                [% ELSE %]
302
                    <div id="toolbar" class="btn-toolbar">
332
                    [% IF booksellerid %]
303
                        <div class="btn-group"><a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="newbasketgroup"><i class="fa fa-plus"></i> New basket group</a></div>
333
                        <div id="toolbar" class="btn-toolbar">
304
                    </div>
334
                            <div class="btn-group"><a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="newbasketgroup"><i class="fa fa-plus"></i> New basket group</a></div>
305
                    <h1>Basket grouping for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
335
                        </div>
306
                    <div id="basket_groups" class="toptabs">
336
                    [% END %]
307
                        <ul class="ui-tabs-nav">
337
308
                            [% UNLESS ( listclosed) %]<li class="ui-tabs-active"><a href="#opened">Open</a></li>
338
                    [% FOREACH bookseller IN booksellers %]
309
                            [% ELSE%]<li><a href="#opened">Open</a></li>[% END %]
339
                        [% IF bookseller.basketgroups.size > 0 %]
310
                            [% IF ( listclosed) %]<li class="ui-tabs-active"><a href="#closed">Closed</a></li>
340
                            <h1>Basket groups for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% bookseller.id %]">[% bookseller.name |html %]</a></h1>
311
                            [% ELSE %]<li><a href="#closed">Closed</a></li>[% END %]
341
                            <div class="basket_groups toptabs">
312
                        </ul>
342
                                <ul class="ui-tabs-nav">
313
                        <div id="opened">
343
                                    [% UNLESS ( listclosed) %]<li class="ui-tabs-active"><a href="#opened[% bookseller.id %]">Open</a></li>
314
                            <table id="basket_group_opened">
344
                                    [% ELSE%]<li><a href="#opened[% bookseller.id %]">Open</a></li>[% END %]
315
                                <thead>
345
                                    [% IF ( listclosed) %]<li class="ui-tabs-active"><a href="#closed[% bookseller.id %]">Closed</a></li>
316
                                    <tr>
346
                                    [% ELSE %]<li><a href="#closed[% bookseller.id %]">Closed</a></li>[% END %]
317
                                        <th>Name</th>
347
                                </ul>
318
                                        <th>Number</th>
348
                                <div id="opened[% bookseller.id %]">
319
                                        <th>Billing place</th>
349
                                    <table id="basket_group_opened">
320
                                        <th>Delivery place</th>
350
                                        <thead>
321
                                        <th>Number of baskets</th>
322
                                        <th>Action</th>
323
                                    </tr>
324
                                </thead>
325
                                <tbody>
326
                                    [% FOREACH basketgroup IN basketgroups %]
327
                                        [% UNLESS ( basketgroup.closed ) %]
328
                                            <tr>
351
                                            <tr>
329
                                                <td>[% IF ( basketgroup.name ) %]
352
                                                <th>Search name</th>
330
                                                    [% basketgroup.name %]
353
                                                <th>Search no.</th>
331
                                                    [% ELSE %]
354
                                                <th>Search billing place</th>
332
                                                        Basket group no. [% basketgroup.id %]
355
                                                <th>Search delivery place</th>
333
                                                    [% END %]
356
                                                <th>Search no. of baskets</th>
334
                                                </td>
357
                                                <th>Search no. of ordered titles</th>
335
                                                <td>[% basketgroup.id %]</td>
358
                                                <th>Search no. of received titles</th>
336
                                                <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
359
                                                <th></th>
337
                                                <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
338
                                                <td>[% basketgroup.basketsqty %]</td>
339
                                                <td>
340
                                                    <input type="button" onclick="closeandprint('[% basketgroup.id %]');" value="Close and export as PDF" />
341
                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Edit" /></form>
342
                                                    [% UNLESS basketgroup.basketsqty %]
343
                                                        <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="delete" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Delete" /></form>
344
                                                    [% END %]
345
                                                </td>
346
                                            </tr>
360
                                            </tr>
347
                                        [% END %]
348
                                    [% END %]
349
                                </tbody>
350
                            </table>
351
                        </div>
352
                        <div id="closed">
353
                            <table id="basket_group_closed">
354
                                <thead>
355
                                    <tr>
356
                                        <th>Name</th>
357
                                        <th>Number</th>
358
                                        <th>Billing place</th>
359
                                        <th>Delivery place</th>
360
                                        <th>Number of baskets</th>
361
                                        <th>Action</th>
362
                                    </tr>
363
                                </thead>
364
                                <tbody>
365
                                    [% FOREACH basketgroup IN basketgroups %]
366
                                        [% IF ( basketgroup.closed ) %]
367
                                            <tr>
361
                                            <tr>
368
                                                <td>
362
                                                <th>Name</th>
369
                                                    [% IF ( basketgroup.name ) %]
363
                                                <th>No.</th>
370
                                                        [% basketgroup.name %]
364
                                                <th>Billing place</th>
371
                                                        [% ELSE %]
365
                                                <th>Delivery place</th>
372
                                                            Basket group no. [% basketgroup.id %]
366
                                                <th>No. of baskets</th>
373
                                                        [% END %]
367
                                                <th>No. of ordered titles</th>
374
                                                </td>
368
                                                <th>No. of received titles</th>
375
                                                <td>[% basketgroup.id %]</td>
369
                                                <th>Action</th>
376
                                                <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
377
                                                <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
378
                                                <td>[% basketgroup.basketsqty %]</td>
379
                                                <td>
380
                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="View" /></form>
381
                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="reopen" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Reopen" /></form>
382
                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="print" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Export as PDF" /></form>
383
                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="export" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Export as CSV" /></form>
384
                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="ediprint" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Generate EDIFACT order" /></form>
385
                                                </td>
386
                                            </tr>
370
                                            </tr>
387
                                        [% END %]
371
                                        </thead>
388
                                    [% END %]
372
                                        <tbody>
389
                                </tbody>
373
                                            [% FOREACH basketgroup IN bookseller.basketgroups %]
390
                            </table>
374
                                                [% UNLESS ( basketgroup.closed ) %]
391
                        </div>
375
                                                    <tr>
392
                    </div>
376
                                                        <td>
377
                                                            [% IF ( basketgroup.name ) %]
378
                                                                [% basketgroup.name %]
379
                                                            [% ELSE %]
380
                                                                Basket group no. [% basketgroup.id %]
381
                                                            [% END %]
382
                                                        </td>
383
                                                        <td>[% basketgroup.id %]</td>
384
                                                        <td>[% Branches.GetName(basketgroup.billingplace) %]</td>
385
                                                        <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName(basketgroup.deliveryplace) %][% END %]</td>
386
                                                        <td>[% basketgroup.basketsqty %]</td>
387
                                                        <td>[% basketgroup.ordered_titles_count %]</td>
388
                                                        <td>[% basketgroup.received_titles_count %]</td>
389
                                                        <td>
390
                                                            <input type="button" onclick="closeandprint('[% basketgroup.id %]');" value="Close and export as PDF" />
391
                                                            <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Edit" /></form>
392
                                                            [% UNLESS basketgroup.basketsqty %]
393
                                                                <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="delete" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Delete" /></form>
394
                                                            [% END %]
395
                                                        </td>
396
                                                    </tr>
397
                                                [% END %]
398
                                            [% END %]
399
                                        </tbody>
400
                                    </table>
401
                                </div>
402
                                <div id="closed[% bookseller.id %]">
403
                                    <table class="basket_group_closed">
404
                                        <thead>
405
                                            <tr>
406
                                                <th>Search name</th>
407
                                                <th>Search no.</th>
408
                                                <th>Search date closed</th>
409
                                                <th>Search billing place</th>
410
                                                <th>Search delivery place</th>
411
                                                <th>Search no. of baskets</th>
412
                                                <th>Search no. of ordered titles</th>
413
                                                <th>Search no. of received titles</th>
414
                                                <th></th>
415
                                            </tr>
416
                                            <tr>
417
                                                <th>Name</th>
418
                                                <th>No.</th>
419
                                                <th>Date closed</th>
420
                                                <th>Billing place</th>
421
                                                <th>Delivery place</th>
422
                                                <th>No. of baskets</th>
423
                                                <th>No. of ordered titles</th>
424
                                                <th>No. of received titles</th>
425
                                                <th>Action</th>
426
                                            </tr>
427
                                        </thead>
428
                                        <tbody>
429
                                            [% FOREACH basketgroup IN bookseller.basketgroups %]
430
                                                [% IF ( basketgroup.closed ) %]
431
                                                    <tr>
432
                                                        <td>
433
                                                            [% IF ( basketgroup.name ) %]
434
                                                                [% basketgroup.name %]
435
                                                            [% ELSE %]
436
                                                                Basket group no. [% basketgroup.id %]
437
                                                            [% END %]
438
                                                        </td>
439
                                                        <td>[% basketgroup.id %]</td>
440
                                                        <td>[% basketgroup.closeddate |$KohaDates %]</td>
441
                                                        <td>[% Branches.GetName(basketgroup.billingplace) %]</td>
442
                                                        <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName(basketgroup.deliveryplace) %][% END %]</td>
443
                                                        <td>[% basketgroup.basketsqty %]</td>
444
                                                        <td>[% basketgroup.ordered_titles_count %]</td>
445
                                                        <td>[% basketgroup.received_titles_count %]</td>
446
                                                        <td>
447
                                                            <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="View" /></form>
448
                                                            <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="reopen" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Reopen" /></form>
449
                                                            <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="print" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Export as PDF" /></form>
450
                                                            <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="export" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Export as CSV" /></form>
451
                                                            <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="ediprint" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Generate EDIFACT order" /></form>
452
                                                        </td>
453
                                                    </tr>
454
                                                [% END %]
455
                                            [% END %]
456
                                        </tbody>
457
                                    </table>
458
                                </div>
459
                            </div>
460
                        [% END %]
461
                    [% END %]
393
                [% END %]
462
                [% END %]
394
            </div>
463
            </div>
395
        </div>
464
        </div>
396
- 

Return to bug 11708