|
@@ -2289,6 +2289,12 @@ export class FuwutaiComponent implements OnInit {
|
2289
|
2289
|
this.isRelatedDepartment = true;
|
2290
|
2290
|
this.solutionId = undefined;
|
2291
|
2291
|
}
|
|
2292
|
+ // 重置新建工单数据-继续建单-编辑
|
|
2293
|
+ resetOrderData2(){
|
|
2294
|
+ this.fileList = [];
|
|
2295
|
+ this.repairImgs = [];
|
|
2296
|
+ this.isRelatedDepartment = true;
|
|
2297
|
+ }
|
2292
|
2298
|
// 打开新建工单
|
2293
|
2299
|
deathTasktypeId; //获取这个写死的任务类型的id,送病人回病房
|
2294
|
2300
|
deathTasktypeIdPatient; //获取这个写死的任务类型的id,转出院记录
|
|
@@ -2301,7 +2307,11 @@ export class FuwutaiComponent implements OnInit {
|
2301
|
2307
|
}
|
2302
|
2308
|
this.buildType = buildType;
|
2303
|
2309
|
if(this.itsmData.mdv2Switch){
|
2304
|
|
- this.buildType !== '继续建单' && this.buildType !== '编辑事件' && this.resetOrderData();
|
|
2310
|
+ if(this.buildType !== '继续建单' && this.buildType !== '编辑事件'){
|
|
2311
|
+ this.resetOrderData();
|
|
2312
|
+ }else{
|
|
2313
|
+ this.resetOrderData2();
|
|
2314
|
+ }
|
2305
|
2315
|
this.searchApplicationHospital();
|
2306
|
2316
|
this.searchApplicationCategory();
|
2307
|
2317
|
this.searchApplicationPriority();
|