40 lines
1.5 KiB
Plaintext
Executable File
40 lines
1.5 KiB
Plaintext
Executable File
<div class="container-fluid">
|
|
<!-- <div class="page-header">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="<%=origami_root_path %>"><%= t :home %></a></li>
|
|
<li class="breadcrumb-item active"><%= t("views.btn.other_payment") %></li>
|
|
|
|
<span class="float-right">
|
|
<%= link_to t('.back',:default => t("views.btn.back")),'/origami/sale/'+@sale_id+'/payment'%>
|
|
</span>
|
|
</ol>
|
|
</div> -->
|
|
|
|
<div class="row">
|
|
<div class="col-lg-11col-md-11 col-sm-11">
|
|
<div >
|
|
<div >
|
|
<% @payment_method_setting.where("is_active = true").each do |payment_method|%>
|
|
<div class="purple others-payment bottom left m-l-30" 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="col-lg-1 col-md-1 col-sm-1 m-t-10">
|
|
<button type="button" class="btn bg-default m- btn-block" onclick="window.location.href = '/origami/sale/<%= @sale_id %>/payment';"> Back </button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
|
|
$('.others-payment').on('click',function(){
|
|
var input_type = $(this).attr("data-type");
|
|
var sale_id = $(this).attr("data-sale-id");
|
|
window.location.href = '/origami/sale/'+ sale_id + "/payment/others_payment/" + input_type;
|
|
})
|
|
|
|
$('#back').on('click',function(){
|
|
window.location.href = '/origami/sale/<%= @sale_id %>/payment/';
|
|
})
|
|
</script>
|