Files
sx-fc/app/controllers/reports/daily_sale_controller.rb
2017-06-21 17:37:16 +06:30

13 lines
242 B
Ruby

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