Files
sx-fc/app/controllers/api/shops_controller.rb
Myat Zin Wai Maw 676251a12c tax profiles
2020-01-16 10:05:45 +06:30

14 lines
302 B
Ruby

class Api::ShopsController < Api::ApiController
def index
@shops = Shop.select('id,logo,name,shop_code,address,phone_no').all
end
def show
@shop = Shop.find_by_shop_code(params[:id])
end
def get_tax_profiles
@inclusive_tax,@exclusive_tax =TaxProfile.calculate_tax("online_order")
end
end