Files
sx-fc/app/controllers/reports/daily_sale_controller.rb
2017-06-19 11:54:34 +06:30

13 lines
230 B
Ruby

class Reports::DailySaleController < BaseReportController
def index
from, to = get_date_range_from_params
@sale_data = Sale.daily_sales_list(from,to)
@tax = SaleTax.get_tax(from,to)
end
def show
end
end