Skip to content

Commit

Permalink
Update src/Reports/TaxReport.php
Browse files Browse the repository at this point in the history
Co-authored-by: Arun Philip <[email protected]>
  • Loading branch information
respencer and DAcodedBEAT committed May 28, 2024
1 parent 23171b3 commit 3c3caf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Reports/TaxReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public function finishPage($curY, $fam_ID, $fam_Name, $fam_Address1, $fam_Addres
$this->writeAt(SystemConfig::getValue('leftX'), $curY, $fam_City . ', ' . $fam_State . ' ' . $fam_Zip);
$curY += SystemConfig::getValue('incrementY');
$sDefaultCountry = SystemConfig::getValue('sDefaultCountry');
if ($fam_Country != '' && $fam_Country != $sDefaultCountry) {
if ($fam_Country !== $sDefaultCountry) {
$this->writeAt(SystemConfig::getValue('leftX'), $curY, $fam_Country);
$curY += SystemConfig::getValue('incrementY');
}
Expand Down

0 comments on commit 3c3caf7

Please sign in to comment.