Merge branch 'r-1902001-01' into foodcourt

This commit is contained in:
Thein Lin Kyaw
2020-07-21 12:04:17 +06:30
6 changed files with 25 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
class Api::TaxProfilesController < Api::ApiController
def index
@tax_profiles = TaxProfile.where(nil)
@tax_profiles = @tax_profiles.filter_by_group_type(params[:group_type]) if params[:group_type].present?
end
end