sort desc
This commit is contained in:
parent
48737c094e
commit
274cdc27d7
1 changed files with 2 additions and 2 deletions
|
|
@ -7568,11 +7568,11 @@ export class OrganizationController extends Controller {
|
||||||
select: ["orgRootName"],
|
select: ["orgRootName"],
|
||||||
});
|
});
|
||||||
const posType = await this.posTypeRepository.find({
|
const posType = await this.posTypeRepository.find({
|
||||||
order: { posTypeRank: "ASC" },
|
order: { posTypeRank: "DESC" },
|
||||||
select: ["posTypeName"],
|
select: ["posTypeName"],
|
||||||
});
|
});
|
||||||
const posLevel = await this.posLevelRepository.find({
|
const posLevel = await this.posLevelRepository.find({
|
||||||
order: { posLevelRank: "ASC" },
|
order: { posLevelRank: "DESC" },
|
||||||
select: ["posLevelName"],
|
select: ["posLevelName"],
|
||||||
});
|
});
|
||||||
return new HttpSuccess({
|
return new HttpSuccess({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue