more controller for cashier/waiter view

This commit is contained in:
Min Zeya Phyo
2017-05-10 01:10:21 +06:30
parent 62e8615f12
commit c1c72eca30
25 changed files with 634 additions and 44 deletions

View File

@@ -0,0 +1,7 @@
class Origami::CustomersController < BaseOrigamiController
#Form to add customer -
def index
end
def create
end
end

View File

@@ -0,0 +1,6 @@
class Origami::DiscountsController < BaseOrigamiController
def index
end
def create
end
end

View File

@@ -0,0 +1,6 @@
class Origami::PaymentsController < BaseOrigamiController
def index
end
def create
end
end