Updated Tax Rate to be a floatval instead of a intval

This commit is contained in:
johnnyq 2023-11-21 16:51:05 -05:00
parent c1d6220e6a
commit a01269ccea
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
} else {
$tax_name_display = $tax_name;
}
$tax_percent = intval($row['tax_percent']);
$tax_percent = floatval($row['tax_percent']);
?>