Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
dac29f456d
2 changed files with 10 additions and 0 deletions
  1. +6
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxPropertyContractServiceImpl.java
  2. +4
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java

+ 6
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxPropertyContractServiceImpl.java View File

@@ -804,6 +804,12 @@ public class WxPropertyContractServiceImpl implements WxPropertyContractService
wxBillDeposit.setShopInfo(getShopInfoStr(wxPropertyContract));
wxBillDeposit.setRentArea(shoprentArea.toPlainString());
wxBillDeposit.setEnergyFeesId(EnumBillAllType.PROPERTY_DEPOSIT.getEnergyFeesId());
wxBillDeposit.setCreateBy(wxPropertyContract.getCreateBy());
wxBillDeposit.setUpdateBy(wxPropertyContract.getCreateBy());
wxBillDeposit.setCreateByName(wxPropertyContract.getCreateByName());
wxBillDeposit.setUpdateByName(wxPropertyContract.getCreateByName());
try {
wxAllBillMapper.insert(wxBillDeposit);
} catch (Exception e) {


+ 4
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java View File

@@ -1003,6 +1003,10 @@ public class WxRentContractServiceImpl implements WxRentContractService {
wxBillDeposit.setShopInfo(JSONObject.toJSONString(shopInfo));
}
wxBillDeposit.setEnergyFeesId(energyFeesId);
wxBillDeposit.setCreateBy(wxRentContract.getCreateBy());
wxBillDeposit.setUpdateBy(wxRentContract.getCreateBy());
wxBillDeposit.setCreateByName(wxRentContract.getCreateByName());
wxBillDeposit.setUpdateByName(wxRentContract.getCreateByName());
insertList.add(wxBillDeposit);
}


Loading…
Cancel
Save