Accessing Locations from within a CommCare Supply form
For users already familiar with CommCare's conditional select functionality, referencing locations within a form is very similar. To access the list of locations from within a CommCare Supply form, you can use the syntax described HERE.
Much like lookup tables in order to reference location data in a form, you must first include a reference to this instance in the forms xml. To access this xml, enter your form, and in the top righthand corner, under "Tools", select "Edit Source XML"
You'll need to add the following line to the instances in order to reference location data:
<instance id="locations" src="jr://fixture/commtrack:locations"></instance>
Place this just above the first "<instance>" here:
Next you'll need to add a select question to the XML.
It should look something like:
<select1 ref="/data/state"> <itemset nodeset="instance('locations')/states/state"> <label ref="name"/> <value ref="@id" /> </itemset> </select1> |
You can drill down to any level of location within this hierarchy by following this model. For example, if your hierarchy starts at the regional level, then proceeds to state, then district, then outlet. You can reference facilities like this:
<select1 ref="/data/outlet"> <itemset nodeset="instance('locations')/states/state/districts/district/outlets/outlet"> <label ref="name"/> <value ref= "@id" /> </itemset> </select1> |
---|
If you'd like to select a location based on a previously selected location higher up in the location hierarchy, in this example select a facility only from a list of facilities that are in a district that you've already chosen, you can filter use the following XML:
<select1 ref="/data/district"> <itemset nodeset="instance('locations')/states/state/districts/district"> <label ref="name"/> <value ref= "@id" /> </itemset> </select1> <select1 ref="/data/outlet"> <itemset nodeset="instance('locations')/states/state/districts/district[@id = /data/district]/outlets/outlet"> <label ref="name"/> <value ref= "@id" /> </itemset> </select1> |
---|
Note that whenever referencing the location hierarchy, only locations with which a mobile user is associated will sync to that users phone. So, if the mobile user account is linked to outlet 'a', then the only district that will appear on that users phone is the district to which outlet 'a' belongs, and the only state will be the state to which that district belongs.
UPDATE !
In order to set up a single of multiple answer questions on locations, follow these steps:
Add a Single/Multiple Answer Lookup Table:
Click on the "Lookup Table Data" question
Edit the following fields:
Lookup Table: click on the 3 dots next to the field
and complete the following fields.
Query expression: put here your location instance. For example:
if you want to display the list of states: instance('locations')/states/state
if you want to display the list of districts of a previously selected state: instance('locations')/states/state[site_code=/data/state_selected]/districts/district
where /data/state_selected is the state previously selected.
Instance ID: locations
Instance URI: jr://fixture/commtrack:locations
Value Field: what you want to save as an answer (usually an id or a code). For locations you can use site_code or @id.
Label Field: what you want to display to the user. For locations you can use name
(Optional) Filter: can be used to filter the locations displayed.
If you don't see the 3 dots (), you need to activate a feature flag in your project settings.
Add the feature preview "Custom Single and Multiple Answer Questions" to your project