diff --git a/server/accounting/qb-receivables-lines.js b/server/accounting/qb-receivables-lines.js index 80294dfcc..221db1250 100644 --- a/server/accounting/qb-receivables-lines.js +++ b/server/accounting/qb-receivables-lines.js @@ -637,6 +637,13 @@ exports.default = function ({ }); } + if (!qbo && InvoiceLineAdd.length === 0) { + //Handle the scenario where there is a $0 sale invoice. + InvoiceLineAdd.push({ + Desc: "No estimate lines.", + }); + } + return InvoiceLineAdd; };