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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_daily_choice.inc (-2 / +2 lines)
Lines 22-30 Link Here
22
22
23
[% FOREACH day IN daily_choice %]
23
[% FOREACH day IN daily_choice %]
24
    [% IF permanent_irreg.grep( day.value ).0 == day.value %]
24
    [% IF permanent_irreg.grep( day.value ).0 == day.value %]
25
        <input type="checkbox" name="permanent_irregularity" id="[% day.name %]" data-dow="[% day.value %]" value="[% day.value %]" class="skip" checked="checked" />
25
        <input type="checkbox" name="permanent_irregularity" id="[% day.name | html %]" data-dow="[% day.value | html %]" value="[% day.value | html %]" class="skip" checked="checked" />
26
    [% ELSE %]
26
    [% ELSE %]
27
        <input type="checkbox" name="permanent_irregularity" id="[% day.name %]" data-dow="[% day.value %]" value="[% day.value %]" class="skip" />
27
        <input type="checkbox" name="permanent_irregularity" id="[% day.name | html %]" data-dow="[% day.value | html %]" value="[% day.value | html %]" class="skip" />
28
    [% END %]
28
    [% END %]
29
    <label for="[% day.name | html %]" class="inline">[% PROCESS days d=day.name %]</label>
29
    <label for="[% day.name | html %]" class="inline">[% PROCESS days d=day.name %]</label>
30
[% END %]
30
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_monthly_choice.inc (-2 / +2 lines)
Lines 32-40 Link Here
32
32
33
[% FOREACH month IN monthly_choice %]
33
[% FOREACH month IN monthly_choice %]
34
    [% IF permanent_irreg.grep( month.value ).0 == month.value %]
34
    [% IF permanent_irreg.grep( month.value ).0 == month.value %]
35
        <input type="checkbox" name="permanent_irregularity" id="[% month.name %]" data-dow="[% month.value %]" value="[% month.value %]" class="skip" checked="checked" />
35
        <input type="checkbox" name="permanent_irregularity" id="[% month.name | html %]" data-dow="[% month.value | html %]" value="[% month.value | html %]" class="skip" checked="checked" />
36
    [% ELSE %]
36
    [% ELSE %]
37
        <input type="checkbox" name="permanent_irregularity" id="[% month.name %]" data-dow="[% month.value %]" value="[% month.value %]" class="skip" />
37
        <input type="checkbox" name="permanent_irregularity" id="[% month.name | html %]" data-dow="[% month.value | html %]" value="[% month.value | html %]" class="skip" />
38
    [% END %]
38
    [% END %]
39
    <label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label>
39
    <label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label>
40
[% END %]
40
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_weekly_choice.inc (-3 / +3 lines)
Lines 10-20 Link Here
10
                    <li>
10
                    <li>
11
                        <a href="#" class="small">
11
                        <a href="#" class="small">
12
                            [% IF permanent_irreg.grep( p.dow ).0 == p.dow %]
12
                            [% IF permanent_irreg.grep( p.dow ).0 == p.dow %]
13
                                <input type="checkbox" name="permanent_irregularity" value="[% p.dow %]" data-dow="[% p.dow %]" class="skip" checked="checked" />
13
                                <input type="checkbox" name="permanent_irregularity" value="[% p.dow | html %]" data-dow="[% p.dow | html %]" class="skip" checked="checked" />
14
                            [% ELSE %]
14
                            [% ELSE %]
15
                                <input type="checkbox" name="permanent_irregularity" value="[% p.dow %]" data-dow="[% p.dow %]" class="skip" />
15
                                <input type="checkbox" name="permanent_irregularity" value="[% p.dow | html %]" data-dow="[% p.dow | html %]" class="skip" />
16
                            [% END %]
16
                            [% END %]
17
                            &nbsp;Week <b>#[% p.dow %]</b> ([% p.publicationdate | $KohaDates %])
17
                            &nbsp;Week <b>#[% p.dow | html %]</b> ([% p.publicationdate | $KohaDates %])
18
                        </a>
18
                        </a>
19
                    </li>
19
                    </li>
20
                [% END %]
20
                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt (-4 / +4 lines)
Lines 2-7 Link Here
2
[% USE Koha %]
2
[% USE Koha %]
3
[% USE Branches %]
3
[% USE Branches %]
4
[% PROCESS 'i18n.inc' %]
4
[% PROCESS 'i18n.inc' %]
5
[% USE raw %]
5
[% USE Asset %]
6
[% USE Asset %]
6
[% SET footerjs = 1 %]
7
[% SET footerjs = 1 %]
7
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
Lines 158-166 Link Here
158
    [% MACRO jsinclude BLOCK %]
159
    [% MACRO jsinclude BLOCK %]
159
        [% INCLUDE 'calendar.inc' %]
160
        [% INCLUDE 'calendar.inc' %]
160
        <script>
161
        <script>
161
            var subscriptionid = "[% subscription.subscriptionid %]";
162
            var subscriptionid = "[% subscription.subscriptionid | html %]";
162
            var irregularity = "[% subscription.irregularity %]";
163
            var irregularity = "[% subscription.irregularity | html %]";
163
            var more_than_one_serial = "[% more_than_one_serial %]";
164
            var more_than_one_serial = "[% more_than_one_serial | html %]";
164
            $(document).ready(function(){
165
            $(document).ready(function(){
165
                if (subscriptionid) {
166
                if (subscriptionid) {
166
                    testPredictionPattern();
167
                    testPredictionPattern();
167
- 

Return to bug 17656