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

@@ -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>