Commit 9e6b95bc117d1fc75845a4781af2f16a72003928
1 parent
96fd2df076
Exists in
master
and in
6 other branches
高危转诊bugUpdate1
Showing 2 changed files with 18 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
9e6b95b
| ... | ... | @@ -843,6 +843,9 @@ |
| 843 | 843 | } |
| 844 | 844 | } |
| 845 | 845 | |
| 846 | + if (StringUtils.isNotEmpty(applyOrderQueryRequest.getHandleType())) { | |
| 847 | + referralApplyOrderQuery.setStatus(Integer.valueOf(applyOrderQueryRequest.getHandleType())); | |
| 848 | + } | |
| 846 | 849 | //1 转入 0转出 |
| 847 | 850 | if ("1".equals(applyOrderQueryRequest.getAction())) { |
| 848 | 851 | if (StringUtils.isNotEmpty(applyOrderQueryRequest.getTransferredHospital())) { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ApplyOrderQueryRequest.java
View file @
9e6b95b
| ... | ... | @@ -2,16 +2,16 @@ |
| 2 | 2 | |
| 3 | 3 | import com.lyms.platform.common.core.annotation.form.FormParam; |
| 4 | 4 | import com.lyms.platform.common.core.annotation.form.Form; |
| 5 | + | |
| 5 | 6 | /** |
| 6 | - * | |
| 7 | 7 | * 高危转诊管理查询请求 |
| 8 | - * | |
| 8 | + * <p> | |
| 9 | 9 | * Created by Administrator on 2016/6/27 0027. |
| 10 | 10 | */ |
| 11 | 11 | @Form |
| 12 | 12 | public class ApplyOrderQueryRequest extends BasePageQueryRequest { |
| 13 | 13 | /** |
| 14 | - *孕妇名字 | |
| 14 | + * 孕妇名字 | |
| 15 | 15 | */ |
| 16 | 16 | @FormParam |
| 17 | 17 | private String name; |
| 18 | 18 | |
| ... | ... | @@ -47,12 +47,23 @@ |
| 47 | 47 | */ |
| 48 | 48 | private String action; |
| 49 | 49 | /** |
| 50 | - * 1 儿童 2 孕妇 | |
| 50 | + * 1 儿童 2 孕妇 | |
| 51 | 51 | */ |
| 52 | 52 | private Integer type; |
| 53 | 53 | |
| 54 | 54 | //查询号 |
| 55 | 55 | private String queryNo; |
| 56 | + | |
| 57 | + //状态 | |
| 58 | + private String handleType; | |
| 59 | + | |
| 60 | + public String getHandleType() { | |
| 61 | + return handleType; | |
| 62 | + } | |
| 63 | + | |
| 64 | + public void setHandleType(String handleType) { | |
| 65 | + this.handleType = handleType; | |
| 66 | + } | |
| 56 | 67 | |
| 57 | 68 | public String getQueryNo() { |
| 58 | 69 | return queryNo; |