Przeglądaj źródła

fix

release_toaliyun_real
winter 1 rok temu
rodzic
commit
ca13e357ee
1 zmienionych plików z 10 dodań i 1 usunięć
  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 Wyświetl plik

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


Ładowanie…
Anuluj
Zapisz