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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc (+1 lines)
Lines 201-206 Link Here
201
            let refresh_max_date = 0;
201
            let refresh_max_date = 0;
202
            let disable_buttons = [];
202
            let disable_buttons = [];
203
203
204
            options['defaultDate'] = $(input).val();
204
            if( $(input).data("flatpickr-futureinclusive") === true
205
            if( $(input).data("flatpickr-futureinclusive") === true
205
             || $(input).data("flatpickr-futuredate") === true ) {
206
             || $(input).data("flatpickr-futuredate") === true ) {
206
                let original_date = $(input).val();
207
                let original_date = $(input).val();
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_daily_choice.inc (-1 / +1 lines)
Lines 28-34 Link Here
28
    <label for="[% day.name | html %]" class="inline">[% PROCESS days d=day.name %]</label>
28
    <label for="[% day.name | html %]" class="inline">[% PROCESS days d=day.name %]</label>
29
[% END %]
29
[% END %]
30
<p>
30
<p>
31
    <em>Check days in the above list in order to keep them unpublished troughout upcoming renewals (permanent irregularities).</em>
31
    <em>Check days in the above list in order to keep them unpublished throughout upcoming renewals (permanent irregularities).</em>
32
</p>
32
</p>
33
<p>
33
<p>
34
    <em>Or check days in the "Not published" column below to set unpublished days for this subscription only.</em>
34
    <em>Or check days in the "Not published" column below to set unpublished days for this subscription only.</em>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_monthly_choice.inc (-1 / +1 lines)
Lines 38-44 Link Here
38
    <label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label>
38
    <label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label>
39
[% END %]
39
[% END %]
40
<p>
40
<p>
41
    <em>Check months in the above list in order to keep them unpublished troughout upcoming renewals (permanent irregularities).</em>
41
    <em>Check months in the above list in order to keep them unpublished throughout upcoming renewals (permanent irregularities).</em>
42
</p>
42
</p>
43
<p>
43
<p>
44
    <em>Or check months in the "Not published" column below to set unpublished months for this subscription only.</em>
44
    <em>Or check months in the "Not published" column below to set unpublished months for this subscription only.</em>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_weekly_choice.inc (-1 / +1 lines)
Lines 23-29 Link Here
23
    </div>
23
    </div>
24
</div>
24
</div>
25
<p>
25
<p>
26
    <em>Check weeks in the above list in order to keep them unpublished troughout upcoming renewals (permanent irregularities).</em>
26
    <em>Check weeks in the above list in order to keep them unpublished throughout upcoming renewals (permanent irregularities).</em>
27
</p>
27
</p>
28
<p>
28
<p>
29
    <em>Or check weeks in the "Not published" column below to set unpublished weeks for this subscription only.</em>
29
    <em>Or check weeks in the "Not published" column below to set unpublished weeks for this subscription only.</em>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-1 / +1 lines)
Lines 379-385 Link Here
379
                                <select name="numbering_pattern" id="numberpattern" class="required" required="required">
379
                                <select name="numbering_pattern" id="numberpattern" class="required" required="required">
380
                                    <option value="">-- please choose --</option>
380
                                    <option value="">-- please choose --</option>
381
                                    [% FOREACH numberpattern IN numberpatterns %]
381
                                    [% FOREACH numberpattern IN numberpatterns %]
382
                                        <option value="[% numberpattern.id | html %]" [% IF numberpattern.selected %]selected="selected"[% END %]> </option>
382
                                        <option value="[% numberpattern.id | html %]" [% IF numberpattern.selected %]selected="selected"[% END %]>[% numberpattern.label | html %]</option>
383
                                    [% END %]
383
                                    [% END %]
384
                                </select>
384
                                </select>
385
                                <span class="required">Required</span>
385
                                <span class="required">Required</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt (-3 / +5 lines)
Lines 97-103 Link Here
97
                <ol>
97
                <ol>
98
                    <li>
98
                    <li>
99
                        <label for="startdate">Start date: </label>
99
                        <label for="startdate">Start date: </label>
100
                        <input type="text" size="10" id="startdate" name="startdate" value="[% startdate | html %]" class="flatpickr" />
100
                        <input type="text" size="10" id="startdate" name="startdate" class="flatpickr" value="[% startdate | html %]" />
101
                        <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
101
                        <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
102
                    </li>
102
                    </li>
103
                    <li>
103
                    <li>
Lines 106-112 Link Here
106
                            [% FOREACH st IN [['numberlength', 'issues'], ['weeklength', 'weeks'], ['monthlength', 'months']] %]
106
                            [% FOREACH st IN [['numberlength', 'issues'], ['weeklength', 'weeks'], ['monthlength', 'months']] %]
107
                                [% SET subtype = st.0 %]
107
                                [% SET subtype = st.0 %]
108
                                [% SET value = st.1 %]
108
                                [% SET value = st.1 %]
109
                                <option value="[% value | html %]" [% IF subscription.$subtype %]selected="selected"[% END %]>
109
                                <option value="[% value | html %]"
110
                                    [% IF subscription.$subtype %]
111
                                        selected="selected"
112
                                    [% END %]>
110
                                    [% SWITCH subtype %]
113
                                    [% SWITCH subtype %]
111
                                    [% CASE 'numberlength' %]
114
                                    [% CASE 'numberlength' %]
112
                                        <span>issues</span>
115
                                        <span>issues</span>
113
- 

Return to bug 17656