IO-256 QBO Payables

This commit is contained in:
Patrick Fic
2021-09-29 08:43:15 -07:00
parent eb58274f90
commit 2637538d9a
8 changed files with 266 additions and 461 deletions

View File

@@ -3,7 +3,7 @@ const DineroQbFormat = require("./accounting-constants").DineroQbFormat;
const Dinero = require("dinero.js");
const logger = require("../utils/logger");
module.exports = function ({
exports.default = function ({
bodyshop,
jobs_by_pk,
qbo = false,
@@ -591,3 +591,4 @@ const findTaxCode = ({ local, state, federal }, taxcode) => {
return "No Tax Code Matches";
}
};
exports.findTaxCode = findTaxCode;