Merge branch 'develop' into adiDev

This commit is contained in:
AdisakKanthawilang 2024-01-31 17:23:24 +07:00
commit 923d75ebe3
4 changed files with 191 additions and 23 deletions

View file

@ -79,37 +79,37 @@ export class PosMaster extends EntityBase {
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgRootId: string;
orgRootId?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild1Id: string;
orgChild1Id?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild2Id: string;
orgChild2Id?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild3Id: string;
orgChild3Id?: string;
@Column({
nullable: true,
length: 40,
default: "00000000-0000-0000-0000-000000000000",
default: null,
})
orgChild4Id: string;
orgChild4Id?: string;
@Column({
nullable: true,