eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/reports/views/delivery-rounds/map.js

Summary

Maintainability
A
0 mins
Test Coverage
function(doc) {
  if (doc.doc_type === 'deliveryRound') {
    emit([doc.state, doc.startDate], {
      id: doc._id,
      state: doc.state,
      roundCode: doc.roundCode,
      startDate: doc.startDate,
      endDate: doc.endDate
    });
  }
}