up
This commit is contained in:
@ -45,6 +45,42 @@ export class TrxTransaction {
|
|||||||
})
|
})
|
||||||
signatures: String;
|
signatures: String;
|
||||||
|
|
||||||
|
@Column({ type: "boolean", nullable: true })
|
||||||
|
is_maker_approved: boolean;
|
||||||
|
|
||||||
|
@Column({ type: "varchar", length: 100, nullable: true })
|
||||||
|
maker_approved_by: string;
|
||||||
|
|
||||||
|
@Column({ type: "varchar", length: 4096, nullable: true })
|
||||||
|
maker_note: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
maker_approved_at: Date;
|
||||||
|
|
||||||
|
@Column({ type: "boolean", nullable: true })
|
||||||
|
is_checker_approved: boolean;
|
||||||
|
|
||||||
|
@Column({ type: "varchar", length: 100, nullable: true })
|
||||||
|
checker_approved_by: string;
|
||||||
|
|
||||||
|
@Column({ type: "varchar", length: 4096, nullable: true })
|
||||||
|
checker_note: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
checker_approved_at: Date;
|
||||||
|
|
||||||
|
@Column({ type: "boolean", nullable: true })
|
||||||
|
is_signer_approved: boolean;
|
||||||
|
|
||||||
|
@Column({ type: "varchar", length: 100, nullable: true })
|
||||||
|
signer_approved_by: string;
|
||||||
|
|
||||||
|
@Column({ type: "varchar", length: 4096, nullable: true })
|
||||||
|
signer_note: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
signer_approved_at: Date;
|
||||||
|
|
||||||
@Column({ type: "boolean", nullable: true })
|
@Column({ type: "boolean", nullable: true })
|
||||||
is_tl_approved: boolean;
|
is_tl_approved: boolean;
|
||||||
|
|
||||||
|
|||||||
@ -5,6 +5,7 @@ export enum TrxTransactionStatus {
|
|||||||
"close" = "close",
|
"close" = "close",
|
||||||
"reject" = "reject",
|
"reject" = "reject",
|
||||||
"approved" = "approved",
|
"approved" = "approved",
|
||||||
|
"draft" = "draft",
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum TrxTransactionTypeStatus {
|
export enum TrxTransactionTypeStatus {
|
||||||
|
|||||||
Reference in New Issue
Block a user