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

(-)a/acqui/addorderiso2709.pl (-3 / +1 lines)
Lines 333-345 sub import_batches_list { Link Here
333
            # check if there is at least 1 line still staged
333
            # check if there is at least 1 line still staged
334
            my $stagedList=GetImportRecordsRange($batch->{'import_batch_id'}, undef, undef, 'staged');
334
            my $stagedList=GetImportRecordsRange($batch->{'import_batch_id'}, undef, undef, 'staged');
335
            if (scalar @$stagedList) {
335
            if (scalar @$stagedList) {
336
                my ($staged_date, $staged_hour) = split (/ /, $batch->{'upload_timestamp'});
337
                push @list, {
336
                push @list, {
338
                        import_batch_id => $batch->{'import_batch_id'},
337
                        import_batch_id => $batch->{'import_batch_id'},
339
                        num_biblios => $batch->{'num_biblios'},
338
                        num_biblios => $batch->{'num_biblios'},
340
                        num_items => $batch->{'num_items'},
339
                        num_items => $batch->{'num_items'},
341
                        staged_date => $staged_date,
340
                        staged_date => $batch->{'upload_timestamp'},
342
                        staged_hour => $staged_hour,
343
                        import_status => $batch->{'import_status'},
341
                        import_status => $batch->{'import_status'},
344
                        file_name => $batch->{'file_name'},
342
                        file_name => $batch->{'file_name'},
345
                        comments => $batch->{'comments'},
343
                        comments => $batch->{'comments'},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-3 / +7 lines)
Lines 19-28 Link Here
19
    [% END %]
19
    [% END %]
20
    $(document).ready(function() {
20
    $(document).ready(function() {
21
        var srlt = $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
21
        var srlt = $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
22
            "aoColumns": [
23
            null,null,null,{ "sType": "title-string" },null,null
24
            ],
22
            "aoColumnDefs": [
25
            "aoColumnDefs": [
23
                { "aTargets": [ 5 ], "bSortable": false, "bSearchable": false },
26
                { "aTargets": [ 5 ], "bSortable": false, "bSearchable": false },
24
            ],
27
            ],
25
            "sPaginationType": "four_button"
28
            "sPaginationType": "four_button",
29
            "aaSorting": []
26
        } ) );
30
        } ) );
27
31
28
        $("form#Aform").submit(function() {
32
        $("form#Aform").submit(function() {
Lines 37-42 Link Here
37
            return true;
41
            return true;
38
        });
42
        });
39
    });
43
    });
44
40
//]]>
45
//]]>
41
</script>
46
</script>
42
</head>
47
</head>
Lines 109-115 Link Here
109
                        <td>[% batch_lis.file_name %]</td>
114
                        <td>[% batch_lis.file_name %]</td>
110
                       <td>[% batch_lis.comments %]</td>
115
                       <td>[% batch_lis.comments %]</td>
111
                       <td>[% batch_lis.import_status %]</td>
116
                       <td>[% batch_lis.import_status %]</td>
112
                       <td>[% batch_lis.staged_date | $KohaDates %] [% batch_lis.staged_hour %]</td>
117
                       <td><span title="[% batch_lis.staged_date %]">[% batch_lis.staged_date | $KohaDates %]</span></td>
113
                       <td>[% batch_lis.num_biblios %]</td>
118
                       <td>[% batch_lis.num_biblios %]</td>
114
                       <td><a href="[% batch_lis.scriptname %]?import_batch_id=[% batch_lis.import_batch_id %]&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]">Add orders</a></td>
119
                       <td><a href="[% batch_lis.scriptname %]?import_batch_id=[% batch_lis.import_batch_id %]&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]">Add orders</a></td>
115
                     </tr>
120
                     </tr>
116
- 

Return to bug 11059