Lines 475-481
Link Here
|
475 |
<option value="0">Exactly on</option> |
475 |
<option value="0">Exactly on</option> |
476 |
<option value="1">After</option> |
476 |
<option value="1">After</option> |
477 |
</select> |
477 |
</select> |
478 |
<input type="text" size="10" id="hardduedate" name="hardduedate" value="[% hardduedate | html %]" class="flatpickr" /> |
478 |
<input type="text" size="10" id="hardduedate" name="hardduedate" class="flatpickr" /> |
479 |
<div class="hint">[% INCLUDE 'date-format.inc' %]</div> |
479 |
<div class="hint">[% INCLUDE 'date-format.inc' %]</div> |
480 |
</td> |
480 |
</td> |
481 |
<td><input type="text" name="decreaseloanholds" id="decreaseloanholds" size="2" /></td> |
481 |
<td><input type="text" name="decreaseloanholds" id="decreaseloanholds" size="2" /></td> |
Lines 1502-1518
Link Here
|
1502 |
// specific processing for the Note column |
1502 |
// specific processing for the Note column |
1503 |
var note = $(this).find("a[name='viewnote']").data("content"); |
1503 |
var note = $(this).find("a[name='viewnote']").data("content"); |
1504 |
$(current_column).find("input[type='text']").val(note); |
1504 |
$(current_column).find("input[type='text']").val(note); |
1505 |
} else if ( i == 9 ) { |
1505 |
} else if ( i == 9 || i == 26 ) { |
1506 |
// specific processing for the Hard due date column |
1506 |
// specific processing for Hard due date and No automatic renewal after (hard limit) |
1507 |
var select_value = $(this).find("input[type='hidden'][name='hardduedatecomparebackup']").val(); |
1507 |
if (itm_text) { |
1508 |
var input_value = ''; |
1508 |
input_values = itm_text.split(' '); |
1509 |
if (typeof select_value === 'undefined'){ |
1509 |
$(current_column).find("input[type='text']").val( input_values[1] ); |
1510 |
select_value = '-1'; |
1510 |
$(current_column).find("select").val(itm_code); |
1511 |
}else { |
|
|
1512 |
input_value = itm_text.split(' ')[1]; |
1513 |
} |
1511 |
} |
1514 |
$(current_column).find("input[type='text']").val(input_value); |
|
|
1515 |
$(current_column).find("select").val(select_value); |
1516 |
} else if ( i == 16 ) { |
1512 |
} else if ( i == 16 ) { |
1517 |
// specific processing for cap_fine_to_replacement_price |
1513 |
// specific processing for cap_fine_to_replacement_price |
1518 |
var cap_fine_to_replacement_price = $(this).find("input[type='checkbox']"); |
1514 |
var cap_fine_to_replacement_price = $(this).find("input[type='checkbox']"); |
1519 |
- |
|
|