Browse Source

rent depositInfo

release_toaliyun_real
xhxu 5 years ago
parent
commit
8c404eb015
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxBillRentServiceImpl.java

+ 3
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxBillRentServiceImpl.java View File

@@ -286,6 +286,8 @@ public class WxBillRentServiceImpl implements WxBillRentService {
public Object detail(Long id) {
//租赁
WxBillRent rent = getById(id);
//合同
WxRentContract wxRentContract = wxRentContractMapper.selectById(rent.getRentContractId());
//押金
WxBillDeposit depositParam = new WxBillDeposit();
depositParam.setRentContractId(rent.getRentContractId());
@@ -300,6 +302,7 @@ public class WxBillRentServiceImpl implements WxBillRentService {
//周期
Map<String, Object> result = new HashMap<>(3);
result.put("rent", rent);
result.put("wxRentContract", wxRentContract);
result.put("deposit", deposit);

//解单金额


Loading…
Cancel
Save