Browse Source

单位排序

master
wxd 1 year ago
parent
commit
552aa638ae
  1. 4
      src/Shentun.Peis.Application/CustomerOrgs/CustomerOrgAppService.cs

4
src/Shentun.Peis.Application/CustomerOrgs/CustomerOrgAppService.cs

@ -293,7 +293,7 @@ namespace Shentun.Peis.CustomerOrgs
CustomerOrgCode = s.CustomerOrgCode, CustomerOrgCode = s.CustomerOrgCode,
ParentId = s.ParentId, ParentId = s.ParentId,
DisplayName = s.DisplayName, DisplayName = s.DisplayName,
DisplayOrder = s.DisplayOrder,
DisplayOrder = s.Id == GuidFlag.PersonCustomerOrgId ? 99999 : s.DisplayOrder,
Id = s.Id, Id = s.Id,
ShortName = s.ShortName, ShortName = s.ShortName,
SimpleCode = s.SimpleCode, SimpleCode = s.SimpleCode,
@ -357,7 +357,7 @@ namespace Shentun.Peis.CustomerOrgs
CustomerOrgCode = p.CustomerOrgCode, CustomerOrgCode = p.CustomerOrgCode,
TreeChildren = new List<CustomerOrgTreeChildDto>() TreeChildren = new List<CustomerOrgTreeChildDto>()
}; };
var customerOrgTreeChildList = GetTree(items.ToList(), null); var customerOrgTreeChildList = GetTree(items.ToList(), null);

Loading…
Cancel
Save