15 lines
253 B
Ruby
15 lines
253 B
Ruby
class ReportsController < ApplicationController
|
|
def items_to_order
|
|
@report = Item.items_to_order
|
|
end
|
|
|
|
|
|
def orders_to_confirm
|
|
@report = Item.orders_to_confirm
|
|
end
|
|
|
|
def orders_to_pack
|
|
@report = Item.orders_to_pack
|
|
end
|
|
end
|
|
|