|
|
|
@@ -198,8 +198,8 @@ public class WxFlowServiceImpl implements WxFlowService { |
|
|
|
if(EnumRentContractAppStatus.FINISH.getCode().intValue() == applyStatus.intValue()) { |
|
|
|
//账单审批 |
|
|
|
Integer billType = (Integer) getVariableByKey(variables, "billType"); |
|
|
|
Long oldPrice = Long.parseLong((String) getVariableByKey(variables, "oldPrice")); |
|
|
|
Long newPrice =Long.parseLong((String) getVariableByKey(variables, "newPrice")); |
|
|
|
Long oldPrice = Long.parseLong(getVariableByKey(variables, "oldPrice").toString()); |
|
|
|
Long newPrice = Long.parseLong(getVariableByKey(variables, "newPrice").toString()); |
|
|
|
Date updateDate = new Date(); |
|
|
|
MallUserInfo mallUserInfo = (MallUserInfo) SecurityUtils.getSubject().getSession().getAttribute("userSession"); |
|
|
|
if (billType.equals(EnumBillTypeParam.RENT.getCode())) { |
|
|
|
|