Heya! This book is currently only available in German. If you'd like to be notified about the upcoming English version, please subscribe here!

Code: listing-03.02.2

function(doc) {
    if(doc && doc.betrag) {
      var date = doc.datum.split('-'); 
      emit([doc.typ, doc.mwst, date[0], date[1], date[2], \\
        "id:" + doc._id, doc.beschreibung], doc.betrag); 
    }
  }

Wieder alle anzeigen…