Commit 3b3110af1a9240699e1991547ed7ba7ae7c1a667
Exists in
master
and in
6 other branches
Merge remote-tracking branch 'origin/master'
Showing 2 changed files
platform-common/src/main/java/com/lyms/platform/common/utils/HttpClientUtil.java
View file @
3b3110a
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PregnantBuildController.java
View file @
3b3110a
... | ... | @@ -91,10 +91,10 @@ |
91 | 91 | |
92 | 92 | if (yunBookbuildingAddRequest != null && !StringUtils.isEmpty(yunBookbuildingAddRequest.getId()) ) |
93 | 93 | { |
94 | - return bookbuildingFacade.updatePregnantById(yunBookbuildingAddRequest.getId(), yunBookbuildingAddRequest,loginState.getId(), true); | |
94 | + return bookbuildingFacade.updatePregnantById(yunBookbuildingAddRequest.getId(), yunBookbuildingAddRequest,loginState.getId(), false); | |
95 | 95 | |
96 | 96 | } |
97 | - BaseObjectResponse p = bookbuildingFacade.addPregnantBookbuilding(yunBookbuildingAddRequest, loginState.getId(), true); | |
97 | + BaseObjectResponse p = bookbuildingFacade.addPregnantBookbuilding(yunBookbuildingAddRequest, loginState.getId(), false); | |
98 | 98 | return p; |
99 | 99 | } |
100 | 100 | |
101 | 101 | |
... | ... | @@ -110,10 +110,10 @@ |
110 | 110 | LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); |
111 | 111 | if (yunBookbuildingAddRequest != null && !StringUtils.isEmpty(yunBookbuildingAddRequest.getId()) ) |
112 | 112 | { |
113 | - return bookbuildingFacade.updatePregnantById(yunBookbuildingAddRequest.getId(), yunBookbuildingAddRequest,loginState.getId(), true); | |
113 | + return bookbuildingFacade.updatePregnantById(yunBookbuildingAddRequest.getId(), yunBookbuildingAddRequest,loginState.getId(), false); | |
114 | 114 | |
115 | 115 | } |
116 | - BaseObjectResponse p = bookbuildingFacade.createOrUpdateYunBuild(yunBookbuildingAddRequest,loginState.getId(), true); | |
116 | + BaseObjectResponse p = bookbuildingFacade.createOrUpdateYunBuild(yunBookbuildingAddRequest,loginState.getId(), false); | |
117 | 117 | return p; |
118 | 118 | } |
119 | 119 |