Advertisement
Guest User

airzone-pos

a guest
Jun 25th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. search-date
  2. all-bookings
  3. function (doc) {
  4. if(!doc.isDeleted && !doc.isOrder)
  5. emit([doc.branch._id,doc._id.slice(0, -3)], doc);
  6. }
  7.  
  8. getBranches
  9. new-view
  10. function (doc) {
  11. emit(doc._id, doc);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement