Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
ca13e357ee
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java

+ 10
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java View File

@@ -141,7 +141,16 @@ public class WxAgileContractServiceImpl implements WxAgileContractService {
@Override
public WxRentContract selectById(Long id) {
return wxRentContractMapper.selectById(id);
WxRentContract rentContract = wxRentContractMapper.selectById(id);
WxContractCustomers customers = wxContractCustomersMapper.selectById(rentContract.getCustomersId(),rentContract.getTenantId());
rentContract.setCustomerType(customers.getPrincipalType());
rentContract.setCustomerLinkPerson(customers.getLinkPerson());
rentContract.setCustomerName(customers.getName());
rentContract.setCustomerPhone(customers.getPhone());
rentContract.setCustomerLegalPerson(customers.getLegalPerson());
return rentContract;
}

@Override


Loading…
Cancel
Save