From b9e56a271dff737cf78b5d0e16845fab2e781a83 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 31 Mar 2021 21:41:17 +1100 Subject: [PATCH] Add expense type id for invoice items --- app/DataMapper/InvoiceItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/DataMapper/InvoiceItem.php b/app/DataMapper/InvoiceItem.php index 35328227bdb3..acf261094522 100644 --- a/app/DataMapper/InvoiceItem.php +++ b/app/DataMapper/InvoiceItem.php @@ -51,7 +51,7 @@ class InvoiceItem public $custom_value4 = ''; - public $type_id = '1'; //1 = product, 2 = service, 3 unpaid gateway fee, 4 paid gateway fee, 5 late fee, 6 promo code + public $type_id = '1'; //1 = product, 2 = service, 3 unpaid gateway fee, 4 paid gateway fee, 5 late fee, 6 expense public static $casts = [ 'type_id' => 'string',