diff --git a/BMA.EHR.Command.Service/Controllers/OrderController.cs b/BMA.EHR.Command.Service/Controllers/OrderController.cs index 264926fa..1da064da 100644 --- a/BMA.EHR.Command.Service/Controllers/OrderController.cs +++ b/BMA.EHR.Command.Service/Controllers/OrderController.cs @@ -258,15 +258,14 @@ namespace BMA.EHR.Command.Service.Controllers FiscalYear = d.CommandYear, OrderDate = d.CommandAffectDate, OrderByOrganization = d.IssuerOrganizationName, - OrderBy = d.AuthorizedUserFullName, + OrderBy = d.IssuerOrganizationId, + signatoryBy = d.AuthorizedUserFullName, + signatoryPosition = d.AuthorizedPosition, OrderStatusValue = d.CommandStatusId, OrderStatusName = d.CommandStatus.Name, OrderTypeValue = d.CommandTypeId, OrderTypeName = d.CommandType.Name - }).ToList(); - - return Success(data); } catch