Преглед изворни кода

rent depositInfo

release_toaliyun_real
xhxu пре 5 година
родитељ
комит
8c404eb015
1 измењених фајлова са 3 додато и 0 уклоњено
  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 Прегледај датотеку

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


//解单金额 //解单金额


Loading…
Откажи
Сачувај