feat: cashbox batch table and update bills

This commit is contained in:
José Oliveira 2021-03-25 15:09:36 +00:00 committed by Josh Harvey
parent 4f12bcf4cf
commit 20703d0271
2 changed files with 45 additions and 0 deletions

19
lib/cashbox-batches.js Normal file
View file

@ -0,0 +1,19 @@
const db = require('./db')
function createCashBoxBatch (rec) {
const sql = 'INSERT INTO cashbox_batches (device_id, created) VALUES ($1, now()) RETURNING *'
const sql2 = `
UPDATE bills SET cashbox_batch_id=$1
FROM cash_in_txs
WHERE bills.cash_in_txs_id = cash_in_txs.id AND
cash_in_txs.device_id = $2 AND
bills.cashbox_batch_id IS NULL
`
return db.oneOrNone(sql, [rec.deviceId])
.then(res => {
console.log(res)
return db.oneOrNone(sql2, [res.id, res.device_id])
})
}
module.exports = { createCashBoxBatch }