From 66748959fad41cc41b1947f93f52e32d230dc6fd Mon Sep 17 00:00:00 2001 From: sausin Date: Wed, 5 Dec 2018 20:49:44 +0530 Subject: [PATCH] Fix typo for inclusive tax type --- app/Jobs/Expense/CreateBillItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Expense/CreateBillItem.php b/app/Jobs/Expense/CreateBillItem.php index cc83823b3..9df227f78 100644 --- a/app/Jobs/Expense/CreateBillItem.php +++ b/app/Jobs/Expense/CreateBillItem.php @@ -77,7 +77,7 @@ class CreateBillItem $tax = Tax::find($tax_id); switch ($tax->type) { - case 'included': + case 'inclusive': $inclusives[] = $tax; break; case 'compound':