From 6c7012b15aeaf5ff58e721fb283bed75b8fffdca Mon Sep 17 00:00:00 2001 From: avicenan Date: Thu, 25 Jun 2026 09:12:27 +0900 Subject: [PATCH] feat(reg-opd): nw column to indicate the mrn label printing status --- src/entity/emr/emr_registration_outpatient.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/emr/emr_registration_outpatient.ts b/src/entity/emr/emr_registration_outpatient.ts index ea35f6d..b955f78 100644 --- a/src/entity/emr/emr_registration_outpatient.ts +++ b/src/entity/emr/emr_registration_outpatient.ts @@ -86,6 +86,9 @@ export class EmrRegistrationOutpatient { @Column({ nullable: true }) queued_at?: Date; + @Column({ nullable: false, type: 'boolean', default: false }) + is_mrn_label_printed?: boolean; + @Column() @CreateDateColumn() created_at: Date;