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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt (-1 / +1 lines)
Lines 65-71 Link Here
65
            <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
65
            <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
66
            <input type="hidden" name="op" value="confirm" />
66
            <input type="hidden" name="op" value="confirm" />
67
            <input type="hidden" name="invoice" value="[% invoicenumber | html %]" />
67
            <input type="hidden" name="invoice" value="[% invoicenumber | html %]" />
68
            <input type="hidden" name="shipmentdate" value="[% shipmentdate | $KohaDates %]" />
68
            <input type="hidden" name="shipmentdate" value="[% shipmentdate | $KohaDates dateformat => 'iso' %]" />
69
            <input type="hidden" name="shipmentcost" value="[% shipmentcost | html %]" />
69
            <input type="hidden" name="shipmentcost" value="[% shipmentcost | html %]" />
70
            <input type="hidden" name="shipmentcost_budgetid" value="[% shipmentcost_budgetid | html %]" />
70
            <input type="hidden" name="shipmentcost_budgetid" value="[% shipmentcost_budgetid | html %]" />
71
            <input type="submit" class="button" value="Create new invoice anyway" />
71
            <input type="submit" class="button" value="Create new invoice anyway" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt (-1 / +1 lines)
Lines 121-127 Link Here
121
                                        </li>
121
                                        </li>
122
                                        <li>
122
                                        <li>
123
                                            <label for="enrolmentperioddate">Until date: </label>
123
                                            <label for="enrolmentperioddate">Until date: </label>
124
                                            <input type="text" class="enrolmentperioddate" name="enrolmentperioddate" id="enrolmentperioddate" value="[% category.enrolmentperioddate | $KohaDates %]" />
124
                                            <input type="text" class="enrolmentperioddate" name="enrolmentperioddate" id="enrolmentperioddate" value="[% category.enrolmentperioddate | html %]" />
125
                                             <div class="hint">[% INCLUDE 'date-format.inc' dateformat = Koha.Preference('dateformat') %]</div>
125
                                             <div class="hint">[% INCLUDE 'date-format.inc' dateformat = Koha.Preference('dateformat') %]</div>
126
                                        </li>
126
                                        </li>
127
                                    </ol>
127
                                    </ol>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-1 / +1 lines)
Lines 305-311 fieldset.rows table { clear: none; margin: 0; } Link Here
305
                                          <input type="text" size="10" id="acqui_date" name="firstacquidate" value="[% firstacquidate | html %]" class="flatpickr required" required="required" />
305
                                          <input type="text" size="10" id="acqui_date" name="firstacquidate" value="[% firstacquidate | html %]" class="flatpickr required" required="required" />
306
                                        [% ELSE %]
306
                                        [% ELSE %]
307
                                          [% firstacquidate | $KohaDates %]
307
                                          [% firstacquidate | $KohaDates %]
308
                                          <input type="hidden" id="acqui_date" name="firstacquidate" value="[% firstacquidate | $KohaDates %]"/>
308
                                          <input type="hidden" id="acqui_date" name="firstacquidate" value="[% firstacquidate | $KohaDates dateformat => 'iso' %]"/>
309
                                        [% END %]
309
                                        [% END %]
310
                                        <span class="required">Required</span>
310
                                        <span class="required">Required</span>
311
                                    </li>
311
                                    </li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt (-1 / +1 lines)
Lines 161-167 Link Here
161
                                <div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will modify all selected checkouts!</div>
161
                                <div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will modify all selected checkouts!</div>
162
                                <fieldset class="action">
162
                                <fieldset class="action">
163
                                    <input type="hidden" name="op" value="modify" />
163
                                    <input type="hidden" name="op" value="modify" />
164
                                    <input type="hidden" name="new_hard_due_date" value="[% new_hard_due_date | $KohaDates %]" />
164
                                    <input type="hidden" name="new_hard_due_date" value="[% new_hard_due_date | $KohaDates dateformat => 'iso' %]" />
165
                                    <input type="hidden" name="due_date_days" value="[% due_date_days | html %]" />
165
                                    <input type="hidden" name="due_date_days" value="[% due_date_days | html %]" />
166
                                    <input type="submit" value="Modify selected checkouts" class="button" />
166
                                    <input type="submit" value="Modify selected checkouts" class="button" />
167
                                    <a class="cancel" href="/cgi-bin/koha/tools/batch_extend_due_dates.pl">Cancel</a>
167
                                    <a class="cancel" href="/cgi-bin/koha/tools/batch_extend_due_dates.pl">Cancel</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt (-5 / +4 lines)
Lines 222-232 Link Here
222
            [% END %]
222
            [% END %]
223
223
224
            <input type="hidden" name="step" value="3" />
224
            <input type="hidden" name="step" value="3" />
225
            <input type="hidden" name="not_borrowed_since" value="[% not_borrowed_since | $KohaDates %]" />
225
            <input type="hidden" name="not_borrowed_since" value="[% not_borrowed_since | $KohaDates dateformat => 'iso' %]" />
226
            <input type="hidden" name="last_issue_date" value="[% last_issue_date | $KohaDates %]" />
226
            <input type="hidden" name="last_issue_date" value="[% last_issue_date | $KohaDates dateformat => 'iso' %]" />
227
            <input type="hidden" name="borrower_dateexpiry" value="[% borrower_dateexpiry | $KohaDates %]" />
227
            <input type="hidden" name="borrower_dateexpiry" value="[% borrower_dateexpiry | $KohaDates dateformat => 'iso' %]" />
228
            [% IF Koha.Preference('TrackLastPatronActivity') %]
228
            [% IF Koha.Preference('TrackLastPatronActivity') %]
229
                <input type="hidden" name="borrower_lastseen" value="[% borrower_lastseen | $KohaDates %]" />
229
                <input type="hidden" name="borrower_lastseen" value="[% borrower_lastseen | $KohaDates dateformat => 'iso' %]" />
230
            [% END %]
230
            [% END %]
231
            <input type="hidden" name="borrower_categorycode" value="[% borrower_categorycode | html %]" />
231
            <input type="hidden" name="borrower_categorycode" value="[% borrower_categorycode | html %]" />
232
            <input type="hidden" name="patron_list_id" value="[% patron_list_id | html %]" />
232
            <input type="hidden" name="patron_list_id" value="[% patron_list_id | html %]" />
233
- 

Return to bug 30718