|
@@ -465,7 +465,11 @@
|
465
|
465
|
that.result = response.data.data.result
|
466
|
466
|
|
467
|
467
|
that.org_code = response.data.data.org_code
|
468
|
|
- that.patient_name = response.data.data.patient_name
|
|
468
|
+ if(response.data.data.patient_name.indexOf("(") > -1){
|
|
469
|
+ that.patient_name = response.data.data.patient_name.substring(0,response.data.data.patient_name.indexOf("("))
|
|
470
|
+ }else{
|
|
471
|
+ that.patient_name = response.data.data.patient_name
|
|
472
|
+ }
|
469
|
473
|
that.doctor_code = response.data.data.doctor_code
|
470
|
474
|
that.doctor_name = response.data.data.doctor_name
|
471
|
475
|
that.name_arr = []
|