From 4a6f4e1f743195cc1ae8a594c15f28cdcfea1858 Mon Sep 17 00:00:00 2001 From: SteveIreland Date: Thu, 3 Oct 2019 22:28:30 -0400 Subject: [PATCH] Clear initial default for Cascade and Seq for Tax Jurisdiction and Tax Category. --- application/models/Tax_category.php | 4 ++-- application/models/Tax_jurisdiction.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/application/models/Tax_category.php b/application/models/Tax_category.php index 76939609b..f2ad826ed 100644 --- a/application/models/Tax_category.php +++ b/application/models/Tax_category.php @@ -235,8 +235,8 @@ class Tax_category extends CI_Model return array('0' => array( 'tax_category_id' => -1, 'tax_category' => '', - 'tax_group_sequence' => 0, - 'deleted' => 0)); + 'tax_group_sequence' => '', + 'deleted' => '')); } } diff --git a/application/models/Tax_jurisdiction.php b/application/models/Tax_jurisdiction.php index e27ba46b4..af5bde8a2 100644 --- a/application/models/Tax_jurisdiction.php +++ b/application/models/Tax_jurisdiction.php @@ -219,9 +219,9 @@ class Tax_jurisdiction extends CI_Model 'tax_group' => '', 'tax_type' => '1', 'reporting_authority' => '', - 'tax_group_sequence' => 0, - 'cascade_sequence' => 0, - 'deleted' => 0)); + 'tax_group_sequence' => '', + 'cascade_sequence' => '', + 'deleted' => '')); } }