feat: cashbox history tab

feat: add information fields to cashbox_batches table
This commit is contained in:
Sérgio Salgado 2021-04-12 01:53:11 +01:00 committed by Josh Harvey
parent 642016efeb
commit 21708aa75c
8 changed files with 267 additions and 13 deletions

View file

@ -0,0 +1,9 @@
const cashbox = require('../../../cashbox-batches')
const resolvers = {
Query: {
cashboxBatches: () => cashbox.getBatches()
}
}
module.exports = resolvers