Files
old-ribica/back-office/app/controllers/reports_controller.rb

15 lines
253 B
Ruby
Raw Permalink Normal View History

class ReportsController < ApplicationController
2015-03-18 06:25:40 +01:00
def items_to_order
2015-04-08 07:35:00 +02:00
@report = Item.items_to_order
2015-03-18 06:25:40 +01:00
end
def orders_to_confirm
@report = Item.orders_to_confirm
end
2015-06-06 08:41:54 +02:00
def orders_to_pack
@report = Item.orders_to_pack
end
2015-03-18 06:25:40 +01:00
end
2015-04-08 07:35:00 +02:00