Procházet zdrojové kódy

fix

release_toaliyun_real
winter před 1 rokem
rodič
revize
ca13e357ee
1 změnil soubory, kde provedl 10 přidání a 1 odebrání
  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 Zobrazit soubor

@@ -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


Načítá se…
Zrušit
Uložit