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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-6 / +5 lines)
Lines 18-24 Link Here
18
[% USE AuthorisedValues %]
18
[% USE AuthorisedValues %]
19
19
20
[% INCLUDE 'doc-head-open.inc' %]
20
[% INCLUDE 'doc-head-open.inc' %]
21
<title>Koha &rsaquo; Acquisitions &rsaquo; [% UNLESS ( basketno ) %]New [% END %]Basket [% basketname|html %] ([% basketno %]) for [% name|html %]</title>
21
<title>Koha &rsaquo; Acquisitions &rsaquo; [% UNLESS ( basketno ) %]New [% END %]Basket [% basketname|html %] ([% basketno |html %]) for [% name|html %]</title>
22
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
22
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
23
[% INCLUDE 'doc-head-close.inc' %]
23
[% INCLUDE 'doc-head-close.inc' %]
24
[% INCLUDE 'datatables.inc' %]
24
[% INCLUDE 'datatables.inc' %]
Lines 82-88 Link Here
82
            function confirm_ediorder() {
82
            function confirm_ediorder() {
83
                var is_confirmed = confirm(_("Are you sure you want to close this basket and generate an EDIFACT order?"));
83
                var is_confirmed = confirm(_("Are you sure you want to close this basket and generate an EDIFACT order?"));
84
                if (is_confirmed) {
84
                if (is_confirmed) {
85
                    window.location = "/cgi-bin/koha/acqui/basket.pl?op=edi_confirm&basketno=[% basketno %]";
85
                    window.location = "/cgi-bin/koha/acqui/basket.pl?op=edi_confirm&basketno=[% basketno |html %]";
86
                }
86
                }
87
            }
87
            }
88
88
Lines 107-113 Link Here
107
                var skip = [% IF ( skip_confirm_reopen ) %] 1 [% ELSE %] 0 [% END %];
107
                var skip = [% IF ( skip_confirm_reopen ) %] 1 [% ELSE %] 0 [% END %];
108
                var is_confirmed = skip || confirm(_("Are you sure you want to reopen this basket?"));
108
                var is_confirmed = skip || confirm(_("Are you sure you want to reopen this basket?"));
109
                if (is_confirmed) {
109
                if (is_confirmed) {
110
                    window.location = "/cgi-bin/koha/acqui/basket.pl?op=reopen&basketno=[% basketno %]";
110
                    window.location = "/cgi-bin/koha/acqui/basket.pl?op=reopen&basketno=[% basketno |html %]";
111
                }
111
                }
112
            }
112
            }
113
//]]>
113
//]]>
Lines 197-203 Link Here
197
    <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
197
    <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
198
    <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
198
    <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
199
    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% name|html %]</a> &rsaquo;
199
    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% name|html %]</a> &rsaquo;
200
    [% UNLESS ( basketno ) %][% IF ( delete_confirmed ) %]Deleted [% ELSE %]New [% END %][% END %]Basket [% basketname|html %] [% IF ( basketno ) %]([% basketno %])[% END %] for [% name|html %]
200
    [% UNLESS ( basketno ) %][% IF ( delete_confirmed ) %]Deleted [% ELSE %]New [% END %][% END %]Basket [% basketname|html %] [% IF ( basketno ) %]([% basketno |html %])[% END %] for [% name|html %]
201
</div>
201
</div>
202
202
203
<div id="doc3" class="yui-t2">
203
<div id="doc3" class="yui-t2">
Lines 361-367 Link Here
361
                [% END %]
361
                [% END %]
362
            </div>
362
            </div>
363
        [% END %]
363
        [% END %]
364
        <h1>[% UNLESS ( basketno ) %]New [% END %]Basket [% basketname|html %] ([% basketno %]) for <a href="supplier.pl?booksellerid=[% booksellerid %]">[% name|html %]</a></h1>
364
        <h1>[% UNLESS ( basketno ) %]New [% END %]Basket [% basketname|html %] ([% basketno |html %]) for <a href="supplier.pl?booksellerid=[% booksellerid %]">[% name|html %]</a></h1>
365
        [% IF ( basketno ) %]
365
        [% IF ( basketno ) %]
366
            <div id="acqui_basket_summary" class="yui-g">
366
            <div id="acqui_basket_summary" class="yui-g">
367
                <div class="rows">
367
                <div class="rows">
368
- 

Return to bug 16069