Files
sx-fc/app/controllers/inventory/inventory_controller.rb
2017-09-29 13:42:41 +06:30

7 lines
184 B
Ruby

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