Commit 05a37d24 by liyanlin

fix

parent 13fd12da
...@@ -150,6 +150,10 @@ public class GeneralManagerCheckState extends CostState{ ...@@ -150,6 +150,10 @@ public class GeneralManagerCheckState extends CostState{
if(costDomain.getAmountRmb().compareTo(new BigDecimal("10000")) < 0){ if(costDomain.getAmountRmb().compareTo(new BigDecimal("10000")) < 0){
return true; return true;
} }
if(costDomain.getCostForm().equals(2)){
//收款不需要审核
return true;
}
CostTypeDomain costTypeDomain = costTypeDao.selectByNo(costDomain.getTypeNo()); CostTypeDomain costTypeDomain = costTypeDao.selectByNo(costDomain.getTypeNo());
if(costTypeDomain.getTypeName().contains("工资") || costTypeDomain.getTypeName().contains("物流")){ if(costTypeDomain.getTypeName().contains("工资") || costTypeDomain.getTypeName().contains("物流")){
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment