Commit 6681aa1524424ed0f7f56eb7c3489369c7c5d274

Authored by 房远帅
1 parent 721694c1

库存合同:判断是否可锁价

... ... @@ -386,9 +386,10 @@ public class ContractDistributorStandardServiceImpl extends
386 386 if (Boolean.TRUE.equals(data.getPriceSpecLocked())) {
387 387 return false;
388 388 }
389   - if (!CustomerDevelopStatus.PASS.name().equals(data.getFormalApproved())) {
390   - return false;
391   - }
  389 + //锁价的时候不需要审核通过
  390 +// if (!CustomerDevelopStatus.PASS.name().equals(data.getFormalApproved())) {
  391 +// return false;
  392 +// }
392 393 return hasApprovedProductionOrder;
393 394 }
394 395
... ...