From 00bfc8fdc830e3f6f78c0a54f548482ddffc42d8 Mon Sep 17 00:00:00 2001 From: sunwen Date: Mon, 13 Nov 2023 10:22:10 +0800 Subject: [PATCH] Fix patient has no AddDate --- src/forms/select/PatientInformation.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/forms/select/PatientInformation.h b/src/forms/select/PatientInformation.h index 75e7262..4449818 100644 --- a/src/forms/select/PatientInformation.h +++ b/src/forms/select/PatientInformation.h @@ -48,6 +48,7 @@ public: this->Sex = other.Sex; this->Comment = other.Comment; this->AccessionNumber = other.AccessionNumber; + this->AddDate = other.AddDate; } QString ScheduledStartDate; PatientInformation* Copy() @@ -60,6 +61,7 @@ public: n->Sex = this->Sex; n->Comment = this->Comment; n->AccessionNumber = this->AccessionNumber; + n->AddDate = this->AddDate; return n; } };