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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-8 / +9 lines)
Lines 1008-1025 tr.confirm td, tr.highlight.confirm td { Link Here
1008
	margin: .2em 0;
1008
	margin: .2em 0;
1009
}
1009
}
1010
1010
1011
#circ_circulation_issue .date-select {
1011
.date-select {
1012
	font-size : 85%;
1012
    font-size : 85%;
1013
	padding-top : .3em;
1013
    padding-top : .3em;
1014
}
1014
}
1015
1015
1016
#circ_circulation_issue .date-select label {
1016
#circ_circulation_issue .date-select label,
1017
	font-size : inherit;
1017
.date-select label {
1018
	font-weight: normal;
1018
    font-size : inherit;
1019
    font-weight: normal;
1019
}
1020
}
1020
1021
1021
#circ_circulation_issue .date-select input {
1022
.date-select input {
1022
	padding : 1px;
1023
    padding : 1px;
1023
}
1024
}
1024
1025
1025
tr.expired td {
1026
tr.expired td {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table-footer.inc (-3 / +3 lines)
Lines 3-12 Link Here
3
        <td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td>
3
        <td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td>
4
		<td>[% totaldue %]</td>
4
		<td>[% totaldue %]</td>
5
		<td>[% totalprice %]</td>
5
		<td>[% totalprice %]</td>
6
                <td colspan="3">
6
                <td colspan="3"><div class="date-select">
7
            <p>Renewal due date: <input type="text" size="8" id="newduedate" name="newduedate" value="[% newduedate %]" />
7
            <p><label for="newduedate">Renewal due date:</label> <input type="text" size="12" id="newduedate" name="newduedate" value="[% newduedate %]" readonly="readonly" />
8
</p>
8
</p>
9
			<p><label>Forgive fines on return: <input type="checkbox" name="exemptfine" value="1" /></label></p>
9
            <p><label for="exemptfine">Forgive fines on return: <input type="checkbox" id="exemptfine" name="exemptfine" value="1" /></label></p></div>
10
		</td>
10
		</td>
11
	</tr>
11
	</tr>
12
</tfoot>
12
</tfoot>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-5 / +9 lines)
Lines 160-170 var allcheckboxes = $(".checkboxed"); Link Here
160
    $("#exportmenuc").empty();
160
    $("#exportmenuc").empty();
161
    initExportButton();
161
    initExportButton();
162
162
163
    $("#newduedate").datepicker({ minDate: 1 }); // require that renewal date is after today
163
    $("#newduedate").datetimepicker({
164
        minDate: 1, // require that renewal date is after today
165
        hour: 23,
166
        minute: 59
167
    });
164
    $("#duedatespec").datetimepicker({
168
    $("#duedatespec").datetimepicker({
165
        onSelect: function(dateText, inst) { $("#barcode").focus(); },
169
        onClose: function(dateText, inst) { $("#barcode").focus(); },
166
        hour: 23,
170
        hour: 23,
167
        minute: 59,
171
        minute: 59
168
    });
172
    });
169
173
170
 });
174
 });
Lines 399-405 function validate1(date) { Link Here
399
    [% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %]
403
    [% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %]
400
    [% IF ( INVALID_DATE ) %]
404
    [% IF ( INVALID_DATE ) %]
401
    <p>
405
    <p>
402
    <input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" />
406
    <input type="text" size="13" id="duedatespec" name="duedatespec" readonly="readonly" value="[% duedatespec %]" />
403
    <label for="duedatespec">Due date</label>
407
    <label for="duedatespec">Due date</label>
404
    </p>
408
    </p>
405
    [% ELSE %]
409
    [% ELSE %]
Lines 577-583 No patron matched <span class="ex">[% message %]</span> Link Here
577
581
578
    [% IF ( SpecifyDueDate ) %]<div class="date-select">
582
    [% IF ( SpecifyDueDate ) %]<div class="date-select">
579
        <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
583
        <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
580
        [% IF ( duedatespec ) %]<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" />[% ELSE %]<input type="text" size="13" id="duedatespec" name="duedatespec" value="" />
584
        [% IF ( duedatespec ) %]<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" readonly="readonly" />[% ELSE %]<input type="text" size="13" id="duedatespec" name="duedatespec" value="" readonly="readonly" />
581
[% END %]
585
[% END %]
582
          <label for="stickyduedate"> Remember for session:</label>
586
          <label for="stickyduedate"> Remember for session:</label>
583
[% IF ( stickyduedate ) %]
587
[% IF ( stickyduedate ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +6 lines)
Lines 11-16 Link Here
11
[% INCLUDE 'calendar.inc' %]
11
[% INCLUDE 'calendar.inc' %]
12
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
12
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
13
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
13
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
14
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery-ui-timepicker-addon.js"></script>
14
<script type="text/JavaScript" language="JavaScript">
15
<script type="text/JavaScript" language="JavaScript">
15
//<![CDATA[
16
//<![CDATA[
16
$.tablesorter.addParser({
17
$.tablesorter.addParser({
Lines 84-90 $(document).ready(function() { Link Here
84
		}
85
		}
85
	});
86
	});
86
    $("#suspend_until").datepicker({ minDate: 1 }); // require that hold suspended until date is after today
87
    $("#suspend_until").datepicker({ minDate: 1 }); // require that hold suspended until date is after today
87
    $("#newduedate").datepicker({ minDate: 1 }); // require that renewal date is after today
88
    $("#newduedate").datetimepicker({
89
        minDate: 1, // require that renewal date is after today
90
        hour: 23,
91
        minute: 59
92
    });
88
 });
93
 });
89
function uncheck_sibling(me){
94
function uncheck_sibling(me){
90
nodename=me.getAttribute("name");
95
nodename=me.getAttribute("name");
91
- 

Return to bug 8972