docparse-get-distinct-bill-field
v1.1.0
Published
Find all the distinct values for a given field from all docparse bill in the database
Downloads
6
Readme
Docparse Get Distinct Bill Field
Find all the distinct values for a given field from all docparse bill in the database.
Dependency tracking by David
Usage
var getValues = require('docparse-get-distinct-bill-field')
var queryParams = {
supplierCode: 'FGS',
billNumber: 'foo bill number'
};
var data = {
queryParams: queryParams,
field: 'bill_number'
}
getValues(data, function(err, values) {
if (err) {
inspect(err, 'error finding getting distinct values')
return;
}
if (!bill) {
inspect('no bill found');
return cb();
}
inspect(values, 'found distinct values');
});
Installation
npm install docparse-get-distinct-bill-field
Example Installation
npm install docparse-get-distinct-bill-field eyespect