Fix patient has no AddDate
This commit is contained in:
@@ -48,6 +48,7 @@ public:
|
|||||||
this->Sex = other.Sex;
|
this->Sex = other.Sex;
|
||||||
this->Comment = other.Comment;
|
this->Comment = other.Comment;
|
||||||
this->AccessionNumber = other.AccessionNumber;
|
this->AccessionNumber = other.AccessionNumber;
|
||||||
|
this->AddDate = other.AddDate;
|
||||||
}
|
}
|
||||||
QString ScheduledStartDate;
|
QString ScheduledStartDate;
|
||||||
PatientInformation* Copy()
|
PatientInformation* Copy()
|
||||||
@@ -60,6 +61,7 @@ public:
|
|||||||
n->Sex = this->Sex;
|
n->Sex = this->Sex;
|
||||||
n->Comment = this->Comment;
|
n->Comment = this->Comment;
|
||||||
n->AccessionNumber = this->AccessionNumber;
|
n->AccessionNumber = this->AccessionNumber;
|
||||||
|
n->AddDate = this->AddDate;
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user