From b7dc6b67222fa94ff4af40bb29ed9798d2ef713d Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Thu, 6 Jan 2022 13:52:21 -0800 Subject: [PATCH] fixing issue where we're missing tax. --- src/clj/auto_ap/background/sysco.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/auto_ap/background/sysco.clj b/src/clj/auto_ap/background/sysco.clj index ed5c98f2..27664f03 100644 --- a/src/clj/auto_ap/background/sysco.clj +++ b/src/clj/auto_ap/background/sysco.clj @@ -82,7 +82,7 @@ [:propose-invoice (cond-> #:invoice {:invoice-number (header-row "InvoiceNumber") :total (+ total tax) - :outstanding-balance total + :outstanding-balance (+ total tax) :date (coerce/to-date date) :vendor (:db/id sysco-vendor ) :client (:db/id matching-client)