|
|
@ -290,6 +290,14 @@ public class FinancialReceivablesServiceImpl implements IFinancialReceivablesSer |
|
|
|
if (updateSysSalesOrderResult <= 0){ |
|
|
|
throw new BusinessException("销售订单结案失败"); |
|
|
|
} |
|
|
|
//更改客户资料客户标识 为下过单
|
|
|
|
SysCustomerVo sysCustomerVo = sysCustomerMapper.selectSysCustomerByEnterpriseCode(sysSalesOrderVo.getEnterpriseCode()); |
|
|
|
sysCustomerVo.setCustomerSign("2"); |
|
|
|
int updateSysCustomer = sysCustomerMapper.updateSysCustomer(sysCustomerVo); |
|
|
|
if (updateSysCustomer <= 0){ |
|
|
|
throw new BusinessException("客户资料更改客户标识失败"); |
|
|
|
} |
|
|
|
|
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|