update report

This commit is contained in:
Aung Myo
2017-07-10 14:32:57 +06:30
parent 292c8ff563
commit b1b9b5a93f
10 changed files with 1097 additions and 154 deletions

View File

@@ -0,0 +1,19 @@
class Reports::SaleitemController < BaseReportController
authorize_resource :class => false
def index
from, to, report_type = get_date_range_from_params
@sale_data = Sale.get_by_range_by_saleitems(from,to,Sale::SALE_STATUS_COMPLETED,report_type)
respond_to do |format|
format.html
format.xls
end
end
def show
end
end