Skip to content

Commit

Permalink
Adding the billing and stock management modules
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbontyes committed Aug 6, 2024
1 parent a4fa29f commit 9664685
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
"@openmrs/esm-patient-medications-app": "latest",
"@openmrs/esm-fast-data-entry-app": "latest",
"@openmrs/esm-implementer-tools-app": "latest",
"@openmrs/esm-form-builder-app": "latest"
"@openmrs/esm-form-builder-app": "latest",
"@openmrs/esm-billing-app": "next",
"@openmrs/esm-stock-management-app": "next"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
}
},
"@openmrs/esm-styleguide": {
"Brand color #1": "#D7211E",
"Brand color #1": "#1c361c",
"Brand color #2": "#414141",
"Brand color #3": "#D7211E"
"Brand color #3": "#1c361c"
},
"@openmrs/esm-patient-registration-app": {
"defaultPatientIdentifierTypes": [
"05a29f94-c0ed-11e2-94be-8c13b969e334"
]
}
}
}
13 changes: 10 additions & 3 deletions distro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,21 @@
<maven.compiler.target>8</maven.compiler.target>
<PatientIdentifierGeneratorVersion>0.1.0</PatientIdentifierGeneratorVersion>
<UVLReferenceapplicationDockerVersion>qa</UVLReferenceapplicationDockerVersion>
<!-- Stock Management and Billing -->
<stockmanagement.version>2.0.2-SNAPSHOT</stockmanagement.version>
<billing.version>1.2.0-SNAPSHOT</billing.version>
</properties>

<dependencies>
<!-- TODO: Add any implementation-specific dependencies -->
<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>patientidentifiergenerator-omod</artifactId>
<version>${PatientIdentifierGeneratorVersion}</version>
<artifactId>stockmanagement-omod</artifactId>
<version>${stockmanagement.version}</version>
</dependency>
<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>billing-omod</artifactId>
<version>${billing.version}</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 9664685

Please sign in to comment.