Commit cf17854ff9efddd1fec3045759b18c23f215522f
1 parent
1511b9d68f
Exists in
master
and in
6 other branches
产筛无创添加字段
Showing 2 changed files with 13 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
cf17854
... | ... | @@ -696,6 +696,12 @@ |
696 | 696 | } |
697 | 697 | request.setPregnancy(pregnancy); |
698 | 698 | |
699 | + //户籍地址 | |
700 | + String addressRegister = CommonsHelper.getResidence(patients.getProvinceRegisterId(), patients.getCityRegisterId(), | |
701 | + patients.getAreaRegisterId(), patients.getStreetRegisterId(), patients.getAddressRegister(), basicConfigService); | |
702 | + | |
703 | + request.setNativePlace(addressRegister); | |
704 | + | |
699 | 705 | |
700 | 706 | huadaSaveSampleInfo(request); |
701 | 707 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/HuadaSieveApplyOrderAddRequest.java
View file @
cf17854
... | ... | @@ -75,8 +75,15 @@ |
75 | 75 | private String bscanRemark; |
76 | 76 | private String intervenTional; |
77 | 77 | private String intervenTionalOtherDesc; |
78 | + private String nativePlace;// 户籍地址 | |
78 | 79 | |
80 | + public String getNativePlace() { | |
81 | + return nativePlace; | |
82 | + } | |
79 | 83 | |
84 | + public void setNativePlace(String nativePlace) { | |
85 | + this.nativePlace = nativePlace; | |
86 | + } | |
80 | 87 | |
81 | 88 | public String getProductCode() { |
82 | 89 | return productCode; |