diff --git a/app/DataMapper/Tax/US/Rule.php b/app/DataMapper/Tax/US/Rule.php index 85b779020e93..68cc9bd2c05a 100644 --- a/app/DataMapper/Tax/US/Rule.php +++ b/app/DataMapper/Tax/US/Rule.php @@ -153,6 +153,10 @@ class Rule extends BaseRule implements RuleInterface } else { $this->tax_rate1 = $this->invoice->client->company->tax_data->regions->{$this->client_region}->subregions->{$this->client_subregion}->tax_rate; $this->tax_name1 = $this->invoice->client->company->tax_data->regions->{$this->client_region}->subregions->{$this->client_subregion}->tax_name; + + if($this->client_region == 'US') + $this->tax_name1 = "{$this->tax_data->geoState} ".$this->tax_name1; + } return $this;