|
@@ -16,6 +16,8 @@ export class QuiltWashingSendPageControlComponent implements OnInit {
|
16
|
16
|
tabModalName:string = 'characteristics'; //当前选中的tab
|
17
|
17
|
hosId = this.tool.getCurrentHospital().id; //当前院区
|
18
|
18
|
|
|
19
|
+ // 送回自主发起科室范围
|
|
20
|
+ clothingBackDeptIds:any = [];
|
19
|
21
|
// 积分计算方式
|
20
|
22
|
clothingDept:any = null;
|
21
|
23
|
// 批次号生成规则
|
|
@@ -144,6 +146,7 @@ export class QuiltWashingSendPageControlComponent implements OnInit {
|
144
|
146
|
clothingSendTypeId: this.clothingSendTypeId,
|
145
|
147
|
hosId: this.hosId,
|
146
|
148
|
clothingDept: this.clothingDept,
|
|
149
|
+ clothingBackDeptIds: this.clothingBackDeptIds.toString(),
|
147
|
150
|
// batchNoRule: { id: this.batchNoRule },
|
148
|
151
|
};
|
149
|
152
|
this.btnLoading = true;
|
|
@@ -184,6 +187,7 @@ export class QuiltWashingSendPageControlComponent implements OnInit {
|
184
|
187
|
this.clothingDept = this.configs.clothingDept;
|
185
|
188
|
// this.batchNoRule = this.configs.batchNoRule ? this.configs.batchNoRule.id : null;
|
186
|
189
|
this.clothingSendTypeId = this.configs.clothingSendTypeId || null;
|
|
190
|
+ this.clothingBackDeptIds = this.configs.clothingBackDeptIds ? this.configs.clothingBackDeptIds.split(',') : [];
|
187
|
191
|
}
|
188
|
192
|
});
|
189
|
193
|
}
|