The Payment Modes subfolder contains CSV import files for saving Payment Modes which are the modes of payment tied to a single billable service, that is, the form of payment e.g. Cash, Insurance, PayPal, Mobile Money etc. Below is a possible example of its content:
paymentmodes/
├──paymentModes.csv
└── ...
Here are the possible headers with a sample data set:
Uuid | name | attributes |
---|---|---|
526bf278-ba81-4436-b867-c2f6641d060a | Paypal | Maximum :: Numeric :: example-regex :: True;Minimum |
Let's review the headers as below
This unique identifier represents the different payment modes.
This is the descriptive name of the service price item.
A semi-colon separated list of attributes, further divided by the ::
delimiter into name
, format
, regex
, and required
properties (in that order) of a payment mode's attribute type. For example, in the dataset provided:
First attribute type
name
: Maximumformat
: Numericregex
: example-regexrequired
: True
Second attribute type
- name: Minimum
- The billing module version 1.1.0 or higher must be installed
- The OpenMRS version must be 2.4 or higher
Please look at the test configuration folder for sample import files for all domains, see here.