other payment

This commit is contained in:
Nweni
2017-06-11 16:10:50 +06:30
parent 31cc75462b
commit a809818324
4 changed files with 21 additions and 16 deletions

View File

@@ -0,0 +1,8 @@
class Origami::MpuController < BaseOrigamiController
def index
end
def create
end
end

View File

@@ -0,0 +1 @@
Hello MPU

View File

@@ -1,25 +1,20 @@
<div class="row">
<div class="col-lg-5 col-md-5 col-sm-3">
<div >
<div >
<% @payment_method_setting.each do |payment_method|%>
<div class="col-md-5">
<div class="purple others-payment" id="<%= payment_method.payment_method%>" data-url="<%=payment_method.gateway_url%>" data-sale-id="<%= @sale_id%>"><%= payment_method.payment_method %></div>
</div>
<div class="purple others-payment bottom left" data-type="<%= payment_method.payment_method %>" id="<%= payment_method.payment_method %>" data-url="<%=payment_method.gateway_url%>" data-sale-id="<%= @sale_id%>"><%= payment_method.payment_method %></div>
<% end %>
</div>
</div>
</div>
<div class="row">
</div>
<script type="text/javascript">
$('#redeem_payment').click(function() {
sale_id = $(this).attr("data-sale-id");
window.location.href = '/origami/sale/'+ sale_id + "/payment/others_payment/redeem"
return false;
});
$('.others-payment').on('click',function(){
var input_type = $(this).attr("data-type");
var sale_id = $(this).attr("data-sale-id");
alert(input_type)
window.location.href = '/origami/sale/'+ sale_id + "/payment/others_payment/" + input_type;
})
</script>

View File

@@ -1,7 +1,7 @@
require 'sidekiq/web'
Rails.application.routes.draw do
namespace :settings do
resources :membership_actions
end
@@ -85,8 +85,9 @@ Rails.application.routes.draw do
post 'paypar_payment_process' => 'paypar_payments#create'
get 'sale/:sale_id/payment/credit_payment' => "credit_payments#index"
get 'sale/:sale_id/payment/others_payment' => "others_payments#index"
get 'sale/:sale_id/payment/others_payment/:payment_method' => "redeem_payments#index"
# get 'sale/:sale_id/payment/others_payment/:payment_method' => "redeem_payments#index"
get 'sale/:sale_id/payment/others_payment/MPU' => "mpu#index"
get 'sale/:sale_id/payment/others_payment/REDIMREBATE' => "redeem_payments#index"
end
#--------- Waiter/Ordering Station ------------#