|
@@ -197,7 +197,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
197
|
197
|
console.log(e);
|
198
|
198
|
if(!e[0].checked){
|
199
|
199
|
// todo
|
200
|
|
- this.batchInspectAutoClearTime = null;
|
|
200
|
+ this.batchInspectAutoClearTime = undefined;
|
201
|
201
|
}
|
202
|
202
|
}
|
203
|
203
|
// 修改是否允许追加服务
|
|
@@ -450,7 +450,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
450
|
450
|
this.accurateTimeFilling[0].checked = this.configs.accurateTimeFilling == 1;
|
451
|
451
|
this.batchInspectAutoClear[0].checked = this.configs.batchInspectAutoClear == 1;
|
452
|
452
|
this.timeMod = this.configs.timeMod || null;
|
453
|
|
- this.batchInspectAutoClearTime = this.configs.batchInspectAutoClearTime || null;
|
|
453
|
+ this.batchInspectAutoClearTime = this.configs.batchInspectAutoClearTime ? new Date(this.configs.batchInspectAutoClearTime) : undefined;
|
454
|
454
|
this.queuingInformation[0].checked = this.configs.queuingInformation == 1;
|
455
|
455
|
|
456
|
456
|
this.startShowAnotherService[0].checked = this.configs.startShowAnotherService == 1;
|