eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/location/views/by-packing-store-and-state/map.js

Summary

Maintainability
A
0 mins
Test Coverage
function(doc) {
  var facilityLevel = "6";
  var stateLevel = "2"
  if(doc.doc_type === "location" && doc.level ===  facilityLevel && doc.isPackingStore === true) {
    emit(doc.ancestors[stateLevel]);
  }
}