fixing approval
This commit is contained in:
@ -32,6 +32,9 @@ export class EarchiveApproval {
|
|||||||
@Column({ type: 'int', nullable: true , default : 0})
|
@Column({ type: 'int', nullable: true , default : 0})
|
||||||
isapproved: Number;
|
isapproved: Number;
|
||||||
|
|
||||||
|
@Column({ name: 'remarks', nullable: true })
|
||||||
|
remarks: string;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
export enum StatusDocument {
|
export enum StatusDocument {
|
||||||
"rejected" = -3,
|
"rejected" = -3,
|
||||||
|
"returned" = -2,
|
||||||
"draft" = -1,
|
"draft" = -1,
|
||||||
"submitted" = 0,
|
"submitted" = 0,
|
||||||
"approval" = 1,
|
"checker" = 1,
|
||||||
"disposition" = 2,
|
"approval" = 2,
|
||||||
|
"disposition" = 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
export enum TypeDocument {
|
export enum TypeDocument {
|
||||||
|
|||||||
Reference in New Issue
Block a user