Commit b362ff7b58bce7c5580c52f47b976ddf3b11b407
1 parent
e5e4f3138e
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 5 additions and 5 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/HttpClientUtil.java
View file @
b362ff7
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PregnantBuildController.java
View file @
b362ff7
| ... | ... | @@ -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 |