Clear initial default for Cascade and Seq for Tax Jurisdiction and Tax Category.

This commit is contained in:
SteveIreland
2019-10-03 22:28:30 -04:00
parent 216396c94c
commit 4a6f4e1f74
2 changed files with 5 additions and 5 deletions

View File

@@ -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' => ''));
}
}

View File

@@ -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' => ''));
}
}