|
@@ -38,6 +38,10 @@ export class BloodProductsConfigComponent implements OnInit {
|
38
|
38
|
autoDeptLimits:any[] = [
|
39
|
39
|
{label:'是否根据起点科室建单',value: 0}
|
40
|
40
|
];
|
|
41
|
+ // 是否支持按钮送达交接
|
|
42
|
+ delivery:any[] = [
|
|
43
|
+ {label:'是否开启',value: 0}
|
|
44
|
+ ];
|
41
|
45
|
// 选择起点科室
|
42
|
46
|
limitDeptIds:any = [];
|
43
|
47
|
// 配置
|
|
@@ -135,6 +139,7 @@ export class BloodProductsConfigComponent implements OnInit {
|
135
|
139
|
taskType: this.tasktype.id,
|
136
|
140
|
hosId: this.hosId,
|
137
|
141
|
autoCreate: this.autoCreateOrders[0].checked ? 1 : 0,
|
|
142
|
+ delivery: this.delivery[0].checked ? 1 : 0,
|
138
|
143
|
autoSendUser: this.autoSendUsers[0].checked ? 1 : 0,
|
139
|
144
|
autoDept: this.autoDepts[0].checked ? 1 : 0,
|
140
|
145
|
autoDeptLimit: this.autoDeptLimits[0].checked ? 1 : 0,
|
|
@@ -237,6 +242,7 @@ export class BloodProductsConfigComponent implements OnInit {
|
237
|
242
|
this.handoverMode = this.configs.handoverType?this.configs.handoverType.id:undefined;
|
238
|
243
|
this.radioCheckModesValue = this.configs.checkType.id;
|
239
|
244
|
this.autoCreateOrders[0].checked = this.configs.autoCreate == 1;
|
|
245
|
+ this.delivery[0].checked = this.configs.delivery == 1;
|
240
|
246
|
this.autoSendUsers[0].checked = this.configs.autoSendUser == 1;
|
241
|
247
|
this.autoDepts[0].checked = this.configs.autoDept == 1;
|
242
|
248
|
this.autoDeptLimits[0].checked = this.configs.autoDeptLimit == 1;
|