merged for payment

This commit is contained in:
Yan
2017-06-06 17:03:47 +06:30
10 changed files with 140 additions and 42 deletions

View File

@@ -0,0 +1,10 @@
class Origami::CardPaymentsController < BaseOrigamiController
def index
end
def create
end
end

View File

@@ -0,0 +1,10 @@
class Origami::CreditPaymentsController < BaseOrigamiController
def index
end
def create
end
end

View File

@@ -2,13 +2,16 @@ class Origami::PaymentsController < BaseOrigamiController
def index
end
def create
#payment type
#sale status
#point - get [ food amount ]
end
def show
end
end