Showing
2 changed files
with
5 additions
and
3 deletions
| ... | ... | @@ -496,7 +496,9 @@ public class ContractDistributorStandardServiceImpl extends |
| 496 | 496 | .set(ContractDistributorStandard::getStandardStandardized, vo.getStandardStandardized()) |
| 497 | 497 | .set(ContractDistributorStandard::getStandardApproved, CustomerDevelopStatus.AUDIT.name()); |
| 498 | 498 | if (!data.getStatus().equals("STANDARD") |
| 499 | - && ("DISTRIB_STD".equals(data.getType()) || "INTL_STD_CONTRACT".equals(data.getType()))) { // 只有经销(外贸)标准合同才修改状态 | |
| 499 | + && ("DISTRIB_STD".equals(data.getType()) | |
| 500 | + || "INTL_STD_CONTRACT".equals(data.getType()) | |
| 501 | + || "PROCESS_STD_AGMT".equals(data.getType()))) { // 只有经销(外贸、加工)标准合同才修改状态 | |
| 500 | 502 | updateWrapper.set(ContractDistributorStandard::getStatus, "STANDARD") |
| 501 | 503 | .set(ContractDistributorStandard::getStandardizedAt, LocalDateTime.now()); |
| 502 | 504 | } | ... | ... |