git checkout -b ZOD-204-view-spending-from-child-login

This commit is contained in:
Abdalhamid Alhamad
2025-10-19 15:26:47 +03:00
parent fdd2e23669
commit d2e084d3e4
11 changed files with 285 additions and 0 deletions

View File

@ -59,6 +59,15 @@ export class Transaction {
@Column({ type: 'decimal', name: 'vat_on_fees', precision: 12, scale: 2, default: 0.0 })
vatOnFees!: number;
@Column({ name: 'merchant_name', type: 'varchar', nullable: true })
merchantName!: string | null;
@Column({ name: 'merchant_category_code', type: 'varchar', nullable: true })
merchantCategoryCode!: string | null;
@Column({ name: 'merchant_city', type: 'varchar', nullable: true })
merchantCity!: string | null;
@Column({ name: 'card_id', type: 'uuid', nullable: true })
cardId!: string;