Skip to content

Commit

Permalink
South Carolina Use Tax
Browse files Browse the repository at this point in the history
  • Loading branch information
keepjojoyoung committed Aug 6, 2024
1 parent 186839f commit ed47b56
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
premium_tax_credit: 0 # not in TAXSIM35
local_income_tax: 0 # not in TAXSIM35
state_sales_tax: 0 # not in TAXSIM35
out_of_state_purchase: 10_000
out_of_state_purchase_value: 10_000
spm_units:
spm_unit:
members: [person1, person2, person3]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
input:
county_str: ABBEVILLE_COUNTY_SC
state_code: SC
out_of_state_purchase: 10_000
out_of_state_purchase_value: 10_000
output:
sc_use_tax: 700

Expand All @@ -12,7 +12,7 @@
input:
county_str: AIKEN_COUNTY_SC
state_code: SC
out_of_state_purchase: 10_000
out_of_state_purchase_value: 10_000
output:
sc_use_tax: 800

Expand All @@ -22,7 +22,7 @@
input:
county_str: CHARLESTON_COUNTY_SC
state_code: SC
out_of_state_purchase: 10_000
out_of_state_purchase_value: 10_000
output:
sc_use_tax: 900

Expand All @@ -31,7 +31,7 @@
input:
county_str: GEORGETOWN_COUNTY_SC
state_code: SC
out_of_state_purchase: 10_000
out_of_state_purchase_value: 10_000
output:
sc_use_tax: 600

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class sc_use_tax(Variable):
defined_for = StateCode.SC

def formula(tax_unit, period, parameters):
income = tax_unit("out_of_state_purchase", period)
income = tax_unit("out_of_state_purchase_value", period)
county = tax_unit.household("county_str", period)
sc_use_tax_in_group_one_county = tax_unit.household(
"sc_use_tax_in_group_one_county", period
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from policyengine_us.model_api import *


class out_of_state_purchase(Variable):
class out_of_state_purchase_value(Variable):
value_type = float
entity = TaxUnit
label = "Out of state purchase"
Expand Down

0 comments on commit ed47b56

Please sign in to comment.