|
@@ -16,6 +16,8 @@ export class QuiltWashingSendPageControlComponent implements OnInit {
|
16
|
16
|
tabModalName:string = 'characteristics';
|
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
|
|
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
|
|
186
|
189
|
this.clothingSendTypeId = this.configs.clothingSendTypeId || null;
|
|
190
|
+ this.clothingBackDeptIds = this.configs.clothingBackDeptIds ? this.configs.clothingBackDeptIds.split(',') : [];
|
187
|
191
|
}
|
188
|
192
|
});
|
189
|
193
|
}
|