update adminbsb theme all theme setting

This commit is contained in:
Aung Myo
2017-10-10 14:11:38 +06:30
parent 79c7b46ab7
commit 33f03b2e05
49 changed files with 1443 additions and 1387 deletions

View File

@@ -1,4 +1,4 @@
class Inventory::InventoryController < BaseInventoryController
class Inventory::InventoryController < ApplicationController#BaseInventoryController
def index
@products = InventoryDefinition.all.active.order('created_at desc')

View File

@@ -1,4 +1,4 @@
class Inventory::InventoryDefinitionsController < BaseInventoryController
class Inventory::InventoryDefinitionsController < ApplicationController#BaseInventoryController
before_action :set_inventory_definition, only: [:show, :edit, :update, :destroy]
# GET /inventory_definitions

View File

@@ -1,4 +1,4 @@
class Inventory::StockCheckItemsController < BaseInventoryController
class Inventory::StockCheckItemsController < ApplicationController#BaseInventoryController
before_action :set_stock_check_item, only: [:show, :edit, :update, :destroy]
# GET /stock_check_items

View File

@@ -1,4 +1,4 @@
class Inventory::StockChecksController < BaseInventoryController
class Inventory::StockChecksController < ApplicationController#BaseInventoryController
def index
@check = StockCheck.new
@inventory_definitions = InventoryDefinition.active.all