Files
sx-fc/app/controllers/inventory/inventory_controller.rb
2017-10-10 14:11:38 +06:30

7 lines
184 B
Ruby

class Inventory::InventoryController < ApplicationController#BaseInventoryController
def index
@products = InventoryDefinition.all.active.order('created_at desc')
end
end