|
|
|
@ -2458,8 +2458,6 @@ namespace Shentun.Peis.PatientRegisters |
|
|
|
var entdto = new PatientRegisterOrNoDto(); |
|
|
|
if (ent != null) |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
entdto = new PatientRegisterOrNoDto |
|
|
|
{ |
|
|
|
Age = ent.Age, |
|
|
|
@ -2522,11 +2520,10 @@ namespace Shentun.Peis.PatientRegisters |
|
|
|
PatientPassword = ent.Patient.PatientPassword, |
|
|
|
PostalCode = ent.Patient.PostalCode, |
|
|
|
Telephone = ent.Patient.Telephone, |
|
|
|
CustomerOrgName = "", |
|
|
|
CustomerOrgParentName = "" |
|
|
|
|
|
|
|
CustomerOrgName = _cacheService.GetCustomerOrgNameAsync(ent.CustomerOrgId).Result, |
|
|
|
CustomerOrgParentName = _cacheService.GetTopCustomerOrgNameAsync(ent.CustomerOrgId).Result, |
|
|
|
CustomerOrgParentId = _cacheService.GetTopCustomerOrgAsync(ent.CustomerOrgId).Result.Id, |
|
|
|
}; |
|
|
|
|
|
|
|
var registerCheckAsbitems = (await _registerCheckAsbitemRepository.GetQueryableAsync()) |
|
|
|
.Include(x => x.Asbitem) |
|
|
|
.Include(x => x.Asbitem.ItemType) |
|
|
|
|