Skip to content

Commit

Permalink
Pass patient number to XML
Browse files Browse the repository at this point in the history
  • Loading branch information
b123400 committed Dec 28, 2024
1 parent 0717b98 commit fffe679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AmiKoDesitin/Prescription.m
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ - (ZurRosePrescription *)toZurRosePrescription {
patient.email = self.patient.emailAddress;
patient.langCode = [[MLConstants databaseLanguage] isEqual:@"de"] ? 1 : 2;
patient.coverCardId = self.patient.healthCardNumber ?: @"";
patient.patientNr = self.patient.insuranceGLN;
patient.patientNr = self.patient.ahvNumber;

NSMutableArray<ZurRoseProduct*> *products = [NSMutableArray array];
for (Product *m in self.medications) {
Expand Down

0 comments on commit fffe679

Please sign in to comment.