This commit is contained in:
fro1991
2025-11-03 21:59:37 +07:00
parent b0543f2cd2
commit 8b01c7a752

View File

@ -70,6 +70,11 @@ export class TrxTransaction {
})
target_amount: number;
@Column({
default: false,
})
is_deal_request: boolean;
@ManyToOne(() => TrxCustomerCost, { onDelete: "NO ACTION" })
@JoinColumn()
customer_cost: TrxCustomerCost;