Skip to content

Commit

Permalink
Merge pull request #242 from palladiumkenya/3.xchanges
Browse files Browse the repository at this point in the history
production 3.x version
  • Loading branch information
MaryKilewe authored Nov 14, 2024
2 parents 27d200f + d20de02 commit 24f4cb6
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,9 @@ public CtExtractProfile()
.ForMember(x => x.Date_Last_Modified, o => o.MapFrom(s => s.GetOptionalNullDateOrDefault(nameof(TempAllergiesChronicIllnessExtract.Date_Last_Modified))))
.ForMember(x => x.Voided, o => o.MapFrom(s => s.GetNullIntOrDefault(nameof(TempAllergiesChronicIllnessExtract.Voided))))
.ForMember(x => x.RecordUUID, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.RecordUUID))))
.ForMember(x => x.Controlled, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.Controlled))));
.ForMember(x => x.Controlled, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.Controlled))))
.ForMember(x => x.PatientHasChronicIllness, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.PatientHasChronicIllness))));



CreateMap<TempAllergiesChronicIllnessExtract,AllergiesChronicIllnessExtract>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,8 @@ public DiffCtExtractProfile()
.ForMember(x => x.Date_Last_Modified, o => o.MapFrom(s => s.GetOptionalNullDateOrDefault(nameof(TempAllergiesChronicIllnessExtract.Date_Last_Modified))))
.ForMember(x => x.Voided, o => o.MapFrom(s => s.GetNullIntOrDefault(nameof(TempAllergiesChronicIllnessExtract.Voided))))
.ForMember(x => x.RecordUUID, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.RecordUUID))))
.ForMember(x => x.Controlled, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.Controlled))));
.ForMember(x => x.Controlled, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.Controlled))))
.ForMember(x => x.PatientHasChronicIllness, o => o.MapFrom(s => s.GetStringOrDefault(nameof(TempAllergiesChronicIllnessExtract.PatientHasChronicIllness))));

CreateMap<TempAllergiesChronicIllnessExtract,AllergiesChronicIllnessExtract>();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Id|Name|Version|IsMiddleware|IsDefault|EmrSetup
a62216ee-0e85-11e8-ba89-0ed5f89f718b|IQCare|2.2.1|0|0|0
a6221856-0e85-11e8-ba89-0ed5f89f718b|KenyaEMR|19.1.1|0|1|0
a6221856-0e85-11e8-ba89-0ed5f89f718b|KenyaEMR|19.1.3|0|1|0
a6221857-0e85-11e8-ba89-0ed5f89f718b|AMRS|1|0|0|0
a6221858-0e85-11e8-ba89-0ed5f89f718b|ECare|1|0|0|0
a6221859-0e85-11e8-ba89-0ed5f89f718b|FACES|1|0|0|1
Expand Down
2 changes: 1 addition & 1 deletion src/Dwapi/client-src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const environment = {
production: true,
port: '5753',
emrs: [
{name: 'KenyaEMR', version: '19.1.1'},
{name: 'KenyaEMR', version: '19.1.3'},
{name: 'IQCare', version: '2.2.1'}
]
};
2 changes: 1 addition & 1 deletion src/Dwapi/client-src/environments/environment.qa.docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const environment = {
production: false,
port: '5959',
emrs: [
{name: 'KenyaEMR', version: '19.1.1'},
{name: 'KenyaEMR', version: '19.1.3'},
{name: 'IQCare', version: '2.2.1'}
]
};
2 changes: 1 addition & 1 deletion src/Dwapi/client-src/environments/environment.qa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const environment = {
production: false,
port: '5753',
emrs: [
{name: 'KenyaEMR', version: '19.1.1'},
{name: 'KenyaEMR', version: '19.1.3'},
{name: 'IQCare', version: '2.2.1'}
]
};
2 changes: 1 addition & 1 deletion src/Dwapi/client-src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const environment = {
production: false,
port: '5757',
emrs: [
{name: 'KenyaEMR', version: '19.1.1'},
{name: 'KenyaEMR', version: '19.1.3'},
{name: 'IQCare', version: '2.2.1'}
]
};

0 comments on commit 24f4cb6

Please sign in to comment.