uncomment action controller

This commit is contained in:
Thein Lin Kyaw
2020-01-27 18:13:10 +06:30
parent bca6fabaaf
commit b585172ce3
2 changed files with 25 additions and 24 deletions

View File

@@ -8,7 +8,8 @@ class Api::ShopsController < Api::ApiController
def show
@shop = Shop.find_by_shop_code(params[:id])
end
def get_tax_profiles
@inclusive_tax,@exclusive_tax =TaxProfile.calculate_tax("online_order")
@inclusive_tax,@exclusive_tax = TaxProfile.calculate_tax("online_order")
end
end