|
|
|
@@ -1635,7 +1635,7 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public ResultData updateRentContractStatus(Long id) { |
|
|
|
public ResultData updateRentContractStatus(Long id,boolean buildProperyBill) { |
|
|
|
if (id == null) { |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_ERROR); |
|
|
|
} |
|
|
|
@@ -1678,7 +1678,10 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
|
//押金 |
|
|
|
buildDeposit( null, id); |
|
|
|
} |
|
|
|
updatePropertyPreviewBill(record); |
|
|
|
//一起建立物业账单 |
|
|
|
if (buildProperyBill) { |
|
|
|
updatePropertyPreviewBill(record); |
|
|
|
} |
|
|
|
//作废合同 |
|
|
|
//updateInvalidContract(id); |
|
|
|
} |
|
|
|
|