13 lines
230 B
Ruby
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 |