|
@@ -2835,6 +2835,7 @@ export class FuwutaiComponent implements OnInit {
|
2835
|
2835
|
this.malPriorityDTO = null;
|
2836
|
2836
|
this.buildType = buildType;
|
2837
|
2837
|
console.log(123,buildType)
|
|
2838
|
+ this.searchApplicationHospital();
|
2838
|
2839
|
if(this.itsmData.mdv2Switch){
|
2839
|
2840
|
if(this.buildType !== '继续建单' && this.buildType !== '编辑事件' && this.buildType !== '报修转事件'){
|
2840
|
2841
|
this.resetOrderData();
|
|
@@ -2842,7 +2843,6 @@ export class FuwutaiComponent implements OnInit {
|
2842
|
2843
|
this.resetOrderData2();
|
2843
|
2844
|
}
|
2844
|
2845
|
this.getSysConfig(type);
|
2845
|
|
- this.searchApplicationHospital();
|
2846
|
2846
|
this.searchApplicationCategory();
|
2847
|
2847
|
this.searchApplicationPriority();
|
2848
|
2848
|
this.searchApplicationSource();
|
|
@@ -2922,7 +2922,9 @@ export class FuwutaiComponent implements OnInit {
|
2922
|
2922
|
this.noWorkerPhone = false;
|
2923
|
2923
|
} else {
|
2924
|
2924
|
//正常初始化
|
2925
|
|
- this.searchApplicationDepartment("hsms");
|
|
2925
|
+ if(this.crossHospital!=1){
|
|
2926
|
+ this.searchApplicationDepartment("hsms");
|
|
2927
|
+ }
|
2926
|
2928
|
this.noWorkerPhone = true;
|
2927
|
2929
|
}
|
2928
|
2930
|
this.getSearchTaskList("").subscribe((result) => {
|
|
@@ -3333,6 +3335,14 @@ export class FuwutaiComponent implements OnInit {
|
3333
|
3335
|
.getFetchDataList("data", "department", dataObj)
|
3334
|
3336
|
.subscribe((data) => {
|
3335
|
3337
|
if (data.status == 200) {
|
|
3338
|
+ if(data.list.length>0){
|
|
3339
|
+ data.list.forEach(i=>{
|
|
3340
|
+ if(i.inputcode){
|
|
3341
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
3342
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
3343
|
+ }
|
|
3344
|
+ })
|
|
3345
|
+ }
|
3336
|
3346
|
if(type==1){
|
3337
|
3347
|
this.deptZyList.startDept = data.list
|
3338
|
3348
|
}else{
|
|
@@ -3344,7 +3354,6 @@ export class FuwutaiComponent implements OnInit {
|
3344
|
3354
|
|
3345
|
3355
|
// 物品配送-任务类型-院区切换
|
3346
|
3356
|
changeTypeQtHospital(e, type){
|
3347
|
|
- console.log(111,e)
|
3348
|
3357
|
if(type==1){
|
3349
|
3358
|
this.validateFormQt.controls.startDeptQt.setValue(null)
|
3350
|
3359
|
}else{
|
|
@@ -3368,6 +3377,14 @@ export class FuwutaiComponent implements OnInit {
|
3368
|
3377
|
.getFetchDataList("data", "department", dataObj)
|
3369
|
3378
|
.subscribe((data) => {
|
3370
|
3379
|
if (data.status == 200) {
|
|
3380
|
+ if(data.list.length>0){
|
|
3381
|
+ data.list.forEach(i=>{
|
|
3382
|
+ if(i.inputcode){
|
|
3383
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
3384
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
3385
|
+ }
|
|
3386
|
+ })
|
|
3387
|
+ }
|
3371
|
3388
|
if(type==1){
|
3372
|
3389
|
this.deptQtList.startDept = data.list
|
3373
|
3390
|
}else{
|
|
@@ -4878,11 +4895,19 @@ export class FuwutaiComponent implements OnInit {
|
4878
|
4895
|
//id院区,type起点科室'start',终点科室'end'。科室名称dept。
|
4879
|
4896
|
let value = "";
|
4880
|
4897
|
if (dept) {
|
4881
|
|
- value = dept;
|
|
4898
|
+ value = dept.toUpperCase();
|
4882
|
4899
|
}
|
4883
|
4900
|
if (type === "start" && this.deptZyList["startStatus"] == 202) {
|
4884
|
4901
|
//固定科室范围,禁止搜索
|
4885
|
4902
|
this.mainService.getdeptList(this.radioValueZy).subscribe((data:any) => {
|
|
4903
|
+ if(data.startDept){
|
|
4904
|
+ data.startDept.forEach(i=>{
|
|
4905
|
+ if(i.inputcode){
|
|
4906
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
4907
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
4908
|
+ }
|
|
4909
|
+ })
|
|
4910
|
+ }
|
4886
|
4911
|
let arr = data;
|
4887
|
4912
|
if(value!=''){
|
4888
|
4913
|
data = arr.startDept.filter(i=>i.dept.indexOf(value) !=-1)
|
|
@@ -4895,6 +4920,14 @@ export class FuwutaiComponent implements OnInit {
|
4895
|
4920
|
} else if (type === "end" && this.deptZyList["endStatus"] == 202) {
|
4896
|
4921
|
//固定科室范围,禁止搜索
|
4897
|
4922
|
this.mainService.getdeptList(this.radioValueZy).subscribe((data:any) => {
|
|
4923
|
+ if(data.endDept){
|
|
4924
|
+ data.endDept.forEach(i=>{
|
|
4925
|
+ if(i.inputcode){
|
|
4926
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
4927
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
4928
|
+ }
|
|
4929
|
+ })
|
|
4930
|
+ }
|
4898
|
4931
|
let arr = data;
|
4899
|
4932
|
if(value!=''){
|
4900
|
4933
|
data = arr.endDept.filter(i=>i.dept.indexOf(value) !=-1)
|
|
@@ -4905,12 +4938,19 @@ export class FuwutaiComponent implements OnInit {
|
4905
|
4938
|
})
|
4906
|
4939
|
return;
|
4907
|
4940
|
}
|
|
4941
|
+ let hsoId = null
|
|
4942
|
+ if(type === "start" && this.deptZyList.startMultipleHospital==1){
|
|
4943
|
+ hsoId = this.validateFormZy.controls.startHosId.value
|
|
4944
|
+ }
|
|
4945
|
+ if(type === "end" && this.deptZyList.endMultipleHospital==1){
|
|
4946
|
+ hsoId = this.validateFormZy.controls.endHosId.value
|
|
4947
|
+ }
|
4908
|
4948
|
let postData = {
|
4909
|
4949
|
idx: 0,
|
4910
|
4950
|
sum: 10,
|
4911
|
4951
|
department: {
|
4912
|
4952
|
dept: value,
|
4913
|
|
- cascadeHosId: id
|
|
4953
|
+ cascadeHosId: hsoId ? hsoId : id
|
4914
|
4954
|
},
|
4915
|
4955
|
};
|
4916
|
4956
|
if (type == "start" && this.deptZyList["startStatus"] == 205) {
|
|
@@ -4924,6 +4964,14 @@ export class FuwutaiComponent implements OnInit {
|
4924
|
4964
|
.subscribe((data) => {
|
4925
|
4965
|
this.isLoading = false;
|
4926
|
4966
|
if (data["status"] == 200) {
|
|
4967
|
+ if(data.list.length>0){
|
|
4968
|
+ data.list.forEach(i=>{
|
|
4969
|
+ if(i.inputcode){
|
|
4970
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
4971
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
4972
|
+ }
|
|
4973
|
+ })
|
|
4974
|
+ }
|
4927
|
4975
|
if (type === "start") {
|
4928
|
4976
|
this.deptZyList["startDept"] = data.list;
|
4929
|
4977
|
} else if (type === "end") {
|
|
@@ -4945,11 +4993,19 @@ export class FuwutaiComponent implements OnInit {
|
4945
|
4993
|
//id院区,type起点科室'start',终点科室'end'。科室名称dept。
|
4946
|
4994
|
let value = "";
|
4947
|
4995
|
if (dept) {
|
4948
|
|
- value = dept;
|
|
4996
|
+ value = dept.toUpperCase();
|
4949
|
4997
|
}
|
4950
|
4998
|
if (type === "start" && this.deptQtList["startStatus"] == 202) {
|
4951
|
4999
|
//固定科室范围,禁止搜索
|
4952
|
5000
|
this.mainService.getdeptList(this.psValue).subscribe((data:any) => {
|
|
5001
|
+ if(data.startDept){
|
|
5002
|
+ data.startDept.forEach(i=>{
|
|
5003
|
+ if(i.inputcode){
|
|
5004
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5005
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5006
|
+ }
|
|
5007
|
+ })
|
|
5008
|
+ }
|
4953
|
5009
|
let arr = data;
|
4954
|
5010
|
if(value!=''){
|
4955
|
5011
|
data = arr.startDept.filter(i=>i.dept.indexOf(value) !=-1)
|
|
@@ -4962,6 +5018,14 @@ export class FuwutaiComponent implements OnInit {
|
4962
|
5018
|
} else if (type === "end" && this.deptQtList["endStatus"] == 202) {
|
4963
|
5019
|
//固定科室范围,禁止搜索
|
4964
|
5020
|
this.mainService.getdeptList(this.psValue).subscribe((data:any) => {
|
|
5021
|
+ if(data.endDept){
|
|
5022
|
+ data.endDept.forEach(i=>{
|
|
5023
|
+ if(i.inputcode){
|
|
5024
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5025
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5026
|
+ }
|
|
5027
|
+ })
|
|
5028
|
+ }
|
4965
|
5029
|
let arr = data;
|
4966
|
5030
|
if(value!=''){
|
4967
|
5031
|
data = arr.endDept.filter(i=>i.dept.indexOf(value) !=-1)
|
|
@@ -4972,12 +5036,19 @@ export class FuwutaiComponent implements OnInit {
|
4972
|
5036
|
})
|
4973
|
5037
|
return;
|
4974
|
5038
|
}
|
|
5039
|
+ let hsoId = null
|
|
5040
|
+ if(type === "start" && this.deptQtList.startMultipleHospital==1){
|
|
5041
|
+ hsoId = this.validateFormQt.controls.startHosId.value
|
|
5042
|
+ }
|
|
5043
|
+ if(type === "end" && this.deptQtList.endMultipleHospital==1){
|
|
5044
|
+ hsoId = this.validateFormQt.controls.endHosId.value
|
|
5045
|
+ }
|
4975
|
5046
|
let postData = {
|
4976
|
5047
|
idx: 0,
|
4977
|
5048
|
sum: 10,
|
4978
|
5049
|
department: {
|
4979
|
5050
|
dept: value,
|
4980
|
|
- cascadeHosId: id
|
|
5051
|
+ cascadeHosId: hsoId ? hsoId : id
|
4981
|
5052
|
},
|
4982
|
5053
|
};
|
4983
|
5054
|
if (type == "start" && this.deptQtList["startStatus"] == 205) {
|
|
@@ -4991,6 +5062,14 @@ export class FuwutaiComponent implements OnInit {
|
4991
|
5062
|
.subscribe((data) => {
|
4992
|
5063
|
this.isLoading = false;
|
4993
|
5064
|
if (data["status"] == 200) {
|
|
5065
|
+ if(data.list.length>0){
|
|
5066
|
+ data.list.forEach(i=>{
|
|
5067
|
+ if(i.inputcode){
|
|
5068
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5069
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5070
|
+ }
|
|
5071
|
+ })
|
|
5072
|
+ }
|
4994
|
5073
|
if (type === "start") {
|
4995
|
5074
|
this.deptQtList["startDept"] = data.list;
|
4996
|
5075
|
} else if (type === "end") {
|
|
@@ -5284,7 +5363,29 @@ export class FuwutaiComponent implements OnInit {
|
5284
|
5363
|
// 返回值的status是205 则是固定科室类型,会返回科室列表
|
5285
|
5364
|
// 返回值的status是206 则是默认患者所在科室,把患者所在科室作为值
|
5286
|
5365
|
this.mainService.getdeptList(value, patientCode, (taskType.associationTypeValue === 'inspect' ? format(startOfDay(this.inspectToday), 'yyyy-MM-dd HH:mm:ss') : undefined), (taskType.associationTypeValue === 'inspect' ? format(endOfDay(this.inspectToday), 'yyyy-MM-dd HH:mm:ss') : undefined)).subscribe((data:any) => {
|
5287
|
|
- this.deptZyList = data;
|
|
5366
|
+ if(data.startDept){
|
|
5367
|
+ data.startDept.forEach(i=>{
|
|
5368
|
+ if(i.inputcode){
|
|
5369
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5370
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5371
|
+ }
|
|
5372
|
+ })
|
|
5373
|
+ }
|
|
5374
|
+ if(data.endDept){
|
|
5375
|
+ data.endDept.forEach(i=>{
|
|
5376
|
+ if(i.inputcode){
|
|
5377
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5378
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5379
|
+ }
|
|
5380
|
+ })
|
|
5381
|
+ }
|
|
5382
|
+ this.deptZyList = data;
|
|
5383
|
+ if(this.deptZyList.startMultipleHospital==1){
|
|
5384
|
+ this.deptZyList.startDept = []
|
|
5385
|
+ }
|
|
5386
|
+ if(this.deptZyList.endMultipleHospital==1){
|
|
5387
|
+ this.deptZyList.endDept = []
|
|
5388
|
+ }
|
5288
|
5389
|
if(data.startStatus==202 || data.startStatus==204 || data.startStatus==205){
|
5289
|
5390
|
this.isStartFixedType = true
|
5290
|
5391
|
}else{
|
|
@@ -5296,19 +5397,31 @@ export class FuwutaiComponent implements OnInit {
|
5296
|
5397
|
this.isEndFixedType = false
|
5297
|
5398
|
}
|
5298
|
5399
|
if((data.startStatus==204 || data.startStatus==205) && data.startMultipleHospital==1){
|
|
5400
|
+ if(this.validateFormZy.value.startHosId){
|
|
5401
|
+ this.validateFormZy.controls.startHosId.setValue(null)
|
|
5402
|
+ }
|
5299
|
5403
|
this.validateFormZy.addControl(
|
5300
|
5404
|
"startHosId",
|
5301
|
5405
|
new FormControl(null, Validators.required)
|
5302
|
5406
|
);
|
5303
|
5407
|
}else{
|
|
5408
|
+ if(this.validateFormZy.value.startHosId){
|
|
5409
|
+ this.validateFormZy.controls.startHosId.setValue(null)
|
|
5410
|
+ }
|
5304
|
5411
|
this.validateFormZy.removeControl("startHosId");
|
5305
|
5412
|
}
|
5306
|
5413
|
if((data.endStatus==204 || data.endStatus==205) && data.endMultipleHospital==1){
|
|
5414
|
+ if(this.validateFormZy.value.endHosId){
|
|
5415
|
+ this.validateFormZy.controls.endHosId.setValue(null)
|
|
5416
|
+ }
|
5307
|
5417
|
this.validateFormZy.addControl(
|
5308
|
5418
|
"endHosId",
|
5309
|
5419
|
new FormControl(null, Validators.required)
|
5310
|
5420
|
);
|
5311
|
5421
|
}else{
|
|
5422
|
+ if(this.validateFormZy.value.endHosId){
|
|
5423
|
+ this.validateFormZy.controls.endHosId.setValue(null)
|
|
5424
|
+ }
|
5312
|
5425
|
this.validateFormZy.removeControl("endHosId");
|
5313
|
5426
|
}
|
5314
|
5427
|
// 预约start
|
|
@@ -5340,7 +5453,7 @@ export class FuwutaiComponent implements OnInit {
|
5340
|
5453
|
}
|
5341
|
5454
|
// 起点科室
|
5342
|
5455
|
if (data["startStatus"] == 201 || data["startStatus"] == 206) {
|
5343
|
|
- if (this.applyDept) {
|
|
5456
|
+ if (this.applyDept && data.startMultipleHospital!=1) {
|
5344
|
5457
|
//选择了申请科室,则起点科室就是申请科室
|
5345
|
5458
|
this.deptZyList["startDept"] = this.applicationDepartmentList.filter(
|
5346
|
5459
|
(item) => item.id == this.applyDept
|
|
@@ -5349,12 +5462,12 @@ export class FuwutaiComponent implements OnInit {
|
5349
|
5462
|
}
|
5350
|
5463
|
} else if (data["startStatus"] == 203) {
|
5351
|
5464
|
this.startDeptZy = data["startDept"][0]["id"];
|
5352
|
|
- } else if (data["startStatus"] == 204 || data["startStatus"] == 205) {
|
|
5465
|
+ } else if ((data["startStatus"] == 204 || data["startStatus"] == 205) && data.startMultipleHospital!=1) {
|
5353
|
5466
|
this.getHosDepartment(this.checkedHos, "start", "");
|
5354
|
5467
|
}
|
5355
|
5468
|
// 终点科室
|
5356
|
5469
|
if (data["endStatus"] == 201 || data["endStatus"] == 206) {
|
5357
|
|
- if (this.applyDept) {
|
|
5470
|
+ if (this.applyDept && data.endMultipleHospital!=1) {
|
5358
|
5471
|
//选择了申请科室,则终点科室就是申请科室
|
5359
|
5472
|
this.deptZyList["endDept"] = this.applicationDepartmentList.filter(
|
5360
|
5473
|
(item) => item.id == this.applyDept
|
|
@@ -5363,7 +5476,7 @@ export class FuwutaiComponent implements OnInit {
|
5363
|
5476
|
}
|
5364
|
5477
|
} else if (data["endStatus"] == 203) {
|
5365
|
5478
|
this.endDeptZy = data["endDept"][0]["id"];
|
5366
|
|
- } else if (data["endStatus"] == 204 || data["endStatus"] == 205) {
|
|
5479
|
+ } else if ((data["endStatus"] == 204 || data["endStatus"] == 205) && data.endMultipleHospital!=1) {
|
5367
|
5480
|
this.getHosDepartment(this.checkedHos, "end", "");
|
5368
|
5481
|
}
|
5369
|
5482
|
if (this.currentTabIndex == "患者转运") {
|
|
@@ -5441,7 +5554,30 @@ export class FuwutaiComponent implements OnInit {
|
5441
|
5554
|
// 返回值的status是204 则让前端自己调用科室搜索接口
|
5442
|
5555
|
// 返回值的status是205 则是固定科室类型,会返回科室列表
|
5443
|
5556
|
this.mainService.getdeptList(value).subscribe((data:any) => {
|
|
5557
|
+ if(data.startDept){
|
|
5558
|
+ data.startDept.forEach(i=>{
|
|
5559
|
+ if(i.inputcode){
|
|
5560
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5561
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5562
|
+ }
|
|
5563
|
+ })
|
|
5564
|
+ }
|
|
5565
|
+ if(data.endDept){
|
|
5566
|
+ data.endDept.forEach(i=>{
|
|
5567
|
+ if(i.inputcode){
|
|
5568
|
+ i.inputcode = i.inputcode.toUpperCase()
|
|
5569
|
+ i.dept = i.dept + '('+i.inputcode+')'
|
|
5570
|
+ }
|
|
5571
|
+ })
|
|
5572
|
+ }
|
5444
|
5573
|
this.deptQtList = data;
|
|
5574
|
+ if(this.deptQtList.startMultipleHospital==1){
|
|
5575
|
+ this.deptQtList.startDept = []
|
|
5576
|
+ }
|
|
5577
|
+ if(this.deptQtList.endMultipleHospital==1){
|
|
5578
|
+ this.deptQtList.endDept = []
|
|
5579
|
+ }
|
|
5580
|
+
|
5445
|
5581
|
if(data.startStatus==202 || data.startStatus==204 || data.startStatus==205){
|
5446
|
5582
|
this.isStartFixedType = true
|
5447
|
5583
|
}else{
|
|
@@ -5453,19 +5589,31 @@ export class FuwutaiComponent implements OnInit {
|
5453
|
5589
|
this.isEndFixedType = false
|
5454
|
5590
|
}
|
5455
|
5591
|
if((data.startStatus==204 || data.startStatus==205) && data.startMultipleHospital==1){
|
|
5592
|
+ if(this.validateFormQt.value.startHosId){
|
|
5593
|
+ this.validateFormQt.controls.startHosId.setValue(null)
|
|
5594
|
+ }
|
5456
|
5595
|
this.validateFormQt.addControl(
|
5457
|
5596
|
"startHosId",
|
5458
|
5597
|
new FormControl(null, Validators.required)
|
5459
|
5598
|
);
|
5460
|
5599
|
}else{
|
|
5600
|
+ if(this.validateFormQt.value.startHosId){
|
|
5601
|
+ this.validateFormQt.controls.startHosId.setValue(null)
|
|
5602
|
+ }
|
5461
|
5603
|
this.validateFormQt.removeControl("startHosId");
|
5462
|
5604
|
}
|
5463
|
5605
|
if((data.endStatus==204 || data.endStatus==205) && data.endMultipleHospital==1){
|
|
5606
|
+ if(this.validateFormQt.value.endHosId){
|
|
5607
|
+ this.validateFormQt.controls.endHosId.setValue(null)
|
|
5608
|
+ }
|
5464
|
5609
|
this.validateFormQt.addControl(
|
5465
|
5610
|
"endHosId",
|
5466
|
5611
|
new FormControl(null, Validators.required)
|
5467
|
5612
|
);
|
5468
|
5613
|
}else{
|
|
5614
|
+ if(this.validateFormQt.value.endHosId){
|
|
5615
|
+ this.validateFormQt.controls.endHosId.setValue(null)
|
|
5616
|
+ }
|
5469
|
5617
|
this.validateFormQt.removeControl("endHosId");
|
5470
|
5618
|
}
|
5471
|
5619
|
// 预约start
|
|
@@ -5487,7 +5635,7 @@ export class FuwutaiComponent implements OnInit {
|
5487
|
5635
|
}
|
5488
|
5636
|
} else if (data["startStatus"] == 203) {
|
5489
|
5637
|
this.startDeptQt = data["startDept"][0]["id"];
|
5490
|
|
- } else if (data["startStatus"] == 204 || data["startStatus"] == 205) {
|
|
5638
|
+ } else if ((data["startStatus"] == 204 || data["startStatus"] == 205) && data.startMultipleHospital!=1) {
|
5491
|
5639
|
this.getHosDepartmentQt(this.checkedHos, "start", "");
|
5492
|
5640
|
}
|
5493
|
5641
|
// 终点科室
|
|
@@ -5501,7 +5649,7 @@ export class FuwutaiComponent implements OnInit {
|
5501
|
5649
|
}
|
5502
|
5650
|
} else if (data["endStatus"] == 203) {
|
5503
|
5651
|
this.endDeptQt = data["endDept"][0]["id"];
|
5504
|
|
- } else if (data["endStatus"] == 204 || data["endStatus"] == 205) {
|
|
5652
|
+ } else if ((data["endStatus"] == 204 || data["endStatus"] == 205) && data.endMultipleHospital!=1) {
|
5505
|
5653
|
this.getHosDepartmentQt(this.checkedHos, "end", "");
|
5506
|
5654
|
}
|
5507
|
5655
|
});
|
|
@@ -5541,6 +5689,14 @@ export class FuwutaiComponent implements OnInit {
|
5541
|
5689
|
if(this.currentTabIndex!='患者转运'){
|
5542
|
5690
|
this.patientCode = null;
|
5543
|
5691
|
}
|
|
5692
|
+ if(this.crossHospital==1){
|
|
5693
|
+ if(!this.inHosId){
|
|
5694
|
+ this.msg.error('院区不能为空'!)
|
|
5695
|
+ this.isOkLoading = false;
|
|
5696
|
+ this.isGoLoading = false;
|
|
5697
|
+ return
|
|
5698
|
+ }
|
|
5699
|
+ }
|
5544
|
5700
|
if (objZy && objZy.associationTypeValue === 'patientTransport') {
|
5545
|
5701
|
//患者转运
|
5546
|
5702
|
go === "&go&" ? this.submitFormZy(go) : this.submitFormZy();
|