Merge branch 'spidev' into 'master'
Kalender Bugfix See merge request fronk/thetool!997
This commit is contained in:
@@ -694,7 +694,7 @@ WHERE `TimerecordingCategory`.`hourday`!='1' AND `TimerecordingCategory`.`hourda
|
||||
if (($r->customer_info_type_text)) {
|
||||
$customer_info_type_text = $r->customer_info_type_text;
|
||||
}
|
||||
if ($r->customer_info_reminder_check) {
|
||||
if ($r->customer_info_reminder_check || $r->customer_info_reminder_check == 0) {
|
||||
$updateArray['customer_info_reminder'] = $r->customer_info_reminder_check;
|
||||
}
|
||||
$customerJson = array('customer_info_type' => $customer_info_type, 'customer_info_text' => $customer_info_text, 'customer_info_type_text' => $customer_info_type_text);
|
||||
|
||||
@@ -409,7 +409,11 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
$('#customer').html('<option></option>');
|
||||
}
|
||||
if (data.data.customer_info_reminder.customer_info_reminder) {
|
||||
$('#customer-info-reminder-check').prop('checked', true);
|
||||
if (data.data.customer_info_reminder.customer_info_reminder == 1) {
|
||||
$('#customer-info-reminder-check').prop('checked', true);
|
||||
} else {
|
||||
$('#customer-info-reminder-check').prop('checked', false);
|
||||
}
|
||||
}
|
||||
$('#customer').select2({
|
||||
placeholder: "Kunden Suche",
|
||||
|
||||
Reference in New Issue
Block a user