fix foodcourt api for tax_profile

This commit is contained in:
Thein Lin Kyaw
2022-07-08 17:19:44 +06:30
parent 063345eae3
commit e55162b262
3 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ class SaleTax < ApplicationRecord
end
def display_name
"#{self.tax_name} (#{'Incl.' if self.inclusive} #{self.tax_rate}%"
"#{self.tax_name} (#{'Incl. ' if self.inclusive}#{self.tax_rate}%)"
end
private