เพิ่มเหตุผล posmaster

This commit is contained in:
Kittapath 2024-04-09 12:18:52 +07:00
parent 7a2ed91612
commit 013ccf60e6
7 changed files with 433 additions and 72 deletions

View file

@ -86,6 +86,14 @@ export class PosMaster extends EntityBase {
})
isSit: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ",
type: "text",
default: null,
})
reason: string;
@Column({
nullable: true,
length: 40,
@ -213,6 +221,9 @@ export class CreatePosMaster {
@Column("uuid")
orgChild4Id?: string | null;
@Column()
reason: string;
}
export type UpdatePosMaster = Partial<PosMaster>;