|
|
|
@ -61,7 +61,6 @@ namespace Shentun.Peis.CustomerOrgs |
|
|
|
var entityDto = await base.GetAsync(id); |
|
|
|
entityDto.CreatorName = await _cacheService.GetSurnameAsync(entityDto.CreatorId); |
|
|
|
entityDto.LastModifierName = await _cacheService.GetSurnameAsync(entityDto.LastModifierId); |
|
|
|
|
|
|
|
return entityDto; |
|
|
|
} |
|
|
|
/// <summary>
|
|
|
|
@ -115,6 +114,8 @@ namespace Shentun.Peis.CustomerOrgs |
|
|
|
Fax = s.Fax, |
|
|
|
InvoiceName = s.InvoiceName, |
|
|
|
IsLock = s.IsLock, |
|
|
|
SalesPerson = s.SalesPerson, |
|
|
|
SalesPersonPhone = s.SalesPersonPhone, |
|
|
|
MedicalCenterId = s.MedicalCenterId, |
|
|
|
CountryOrgCode = s.CountryOrgCode, |
|
|
|
CreatorName = _cacheService.GetSurnameAsync(s.CreatorId).Result, |
|
|
|
|