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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-18 / +13 lines)
Lines 2-8 Link Here
2
[% USE Asset %]
2
[% USE Asset %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% USE Branches %]
4
[% USE Branches %]
5
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Koha &rsaquo; Acquisitions &rsaquo; Order staged MARC records
6
<title>Koha &rsaquo; Acquisitions &rsaquo; Order staged MARC records
8
[% IF ( batch_details ) %]
7
[% IF ( batch_details ) %]
Lines 13-18 Link Here
13
</title>
12
</title>
14
<style>#dataPreview { width : 80%; } @media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }</style>
13
<style>#dataPreview { width : 80%; } @media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }</style>
15
[% INCLUDE 'doc-head-close.inc' %]
14
[% INCLUDE 'doc-head-close.inc' %]
15
[%# As long as cataloging plugins rely on <script> tags added inline, JS must be in the header %]
16
[% Asset.js("js/acquisitions-menu.js") | $raw %]
17
[% INCLUDE 'datatables.inc' %]
18
[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
19
[% Asset.js("js/acq.js") | $raw %]
20
[% Asset.js("js/funds_sorts.js") | $raw %]
21
[% Asset.js("js/addorderiso2709.js") | $raw %]
22
<script>
23
    var ERR_NO_RECORD_SELECTED = _("There is no record selected");
24
    var ERR_INVALID_QUANTITY = _("quantity values are not filled in or are not numbers");
25
    var ERR_FUNDS_MISSING = _("Some budgets are not defined in item records");
26
    var MSG_LOADING = _("Loading");
27
</script>
16
</head>
28
</head>
17
29
18
<body id="acq_addorderiso2709" class="acq">
30
<body id="acq_addorderiso2709" class="acq">
Lines 432-451 Link Here
432
            </div> [% # /div.col-sm-6 %]
444
            </div> [% # /div.col-sm-6 %]
433
       </div> [% # /div.row %]
445
       </div> [% # /div.row %]
434
446
435
436
[% MACRO jsinclude BLOCK %]
437
    [% Asset.js("js/acquisitions-menu.js") | $raw %]
438
    [% INCLUDE 'datatables.inc' %]
439
    [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
440
    [% Asset.js("js/acq.js") | $raw %]
441
    [% Asset.js("js/funds_sorts.js") | $raw %]
442
    [% Asset.js("js/addorderiso2709.js") | $raw %]
443
    <script>
444
        var ERR_NO_RECORD_SELECTED = _("There is no record selected");
445
        var ERR_INVALID_QUANTITY = _("quantity values are not filled in or are not numbers");
446
        var ERR_FUNDS_MISSING = _("Some budgets are not defined in item records");
447
        var MSG_LOADING = _("Loading");
448
    </script>
449
[% END %]
450
451
[% INCLUDE 'intranet-bottom.inc' %]
447
[% INCLUDE 'intranet-bottom.inc' %]
452
- 

Return to bug 25473