feat(lab-order-item): add service name column for easy access to service name

This commit is contained in:
avicenan
2026-05-04 00:07:25 +07:00
parent 15d623ea5a
commit d0ec57fdcb

View File

@ -32,6 +32,9 @@ export class EmrLaboratoryOrderItem {
@JoinColumn()
service: Service;
@Column({ type: "text", nullable: true })
service_name: string;
@Column({ type: "text", nullable: true })
examination_type_name: string;