update: add qeue number in lab and radiology

This commit is contained in:
wayanrivan
2026-04-08 10:51:28 +07:00
parent 7804195e01
commit 24a197aff6
2 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,9 @@ export class EmrLaboratoryOrder {
@OneToMany(() => EmrLaboratoryOrderItem, (item) => item.laboratory_order, { cascade: true }) @OneToMany(() => EmrLaboratoryOrderItem, (item) => item.laboratory_order, { cascade: true })
order_items: EmrLaboratoryOrderItem[]; order_items: EmrLaboratoryOrderItem[];
@Column({ nullable: false, length: 128, unique: true })
qeue_number: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;

View File

@ -49,6 +49,9 @@ export class Radiology {
@Column({ nullable: true, type: "text" }) @Column({ nullable: true, type: "text" })
status: string; status: string;
@Column({ nullable: true, type: "text" })
qeue_number: string;
@Column({ nullable: true, type: "text" }) @Column({ nullable: true, type: "text" })
order_number: string; order_number: string;