Renamed table
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Joan Sanchez 2022-09-29 14:49:08 +02:00
parent 3601881026
commit ccec38ef97
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ module.exports = Self => {
// Update queue status
const date = new Date();
await Self.rawSql(`
UPDATE invoiceOut_queue
UPDATE invoiceOutQueue
SET status = "printed",
printed = ?
WHERE invoiceFk = ?`,
@ -117,7 +117,7 @@ module.exports = Self => {
await tx.rollback();
await Self.rawSql(`
UPDATE invoiceOut_queue
UPDATE invoiceOutQueue
SET status = ?
WHERE invoiceFk = ?`,
[error.message, invoiceId]);