168 lines
6.3 KiB
Plaintext
168 lines
6.3 KiB
Plaintext
<div class="row">
|
|
<div class="col-lg-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="<%= crm_root_path %>">Home</a></li>
|
|
<li class="active">
|
|
<a href="<%= crm_customers_path %>">Customer</a>
|
|
</li>
|
|
<li><%= @customer.customer_id%></li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-11 col-md-11 col-sm-11">
|
|
<!-- Column One -->
|
|
<div class="tab-pane active" id="queue" role="tabpanel"">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Card No</th>
|
|
<th>Name</th>
|
|
<th>Company</th>
|
|
<th>Contact no</th>
|
|
<th>Email</th>
|
|
<th>NRC/Passport No</th>
|
|
<th>Address</th>
|
|
<th>DOB</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td><%= @customer.card_no rescue '-'%></td>
|
|
<td><%= @customer.name %></td>
|
|
<td><%= @customer.company rescue '-' %></td>
|
|
<td><%= @customer.contact_no %></td>
|
|
<td><%= @customer.email %></td>
|
|
<td><%= @customer.nrc_no %></td>
|
|
<td><%= @customer.address%></td>
|
|
<td><%= @customer.date_of_birth %></td>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="8">Membership Transactions</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Redeem</th>
|
|
<th>Rebate</th>
|
|
<th>Balance</th>
|
|
<th>Account No</th>
|
|
<th>Status</th>
|
|
<th>Receipt No</th>
|
|
</tr>
|
|
|
|
<%
|
|
if @response["status"] == true %>
|
|
<% @response["data"].each do |transaction| %>
|
|
<tr>
|
|
<td><%= transaction["date"]%></td>
|
|
<td><%= transaction["redeem"]%></td>
|
|
<td><%= transaction["rebate"] %></td>
|
|
<td><%= transaction["balance"] %></td>
|
|
<td><%= transaction["account_no"] %></td>
|
|
<td><%= transaction["status"] %></td>
|
|
<td><%= transaction["receipt_no"] %></td>
|
|
|
|
</tr>
|
|
<% end %>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- Nav tabs -->
|
|
<ul class="nav nav-tabs" role="tablist">
|
|
<!-- <li class="nav-item">
|
|
<a class="nav-link active" data-toggle="tab" href="#queue" role="tab">Customer Details </a>
|
|
</li> -->
|
|
<li class="nav-item">
|
|
<a class="nav-link " data-toggle="tab" href="#booking" role="tab">Orders </a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" data-toggle="tab" href="#customer" role="tab">Sales</a>
|
|
</li>
|
|
</ul>
|
|
<!-- Nav tabs - End -->
|
|
<div class="tab-content">
|
|
<div class="tab-pane" id="booking" role="tabpanel">
|
|
<h3>Order Details</h3>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Order ID</th>
|
|
<th>Menu Item</th>
|
|
<th>QTY</th>
|
|
<th>Unit Price </th>
|
|
<th>Option</th>
|
|
<th>Status</th>
|
|
<th>Waiter</th>
|
|
<th>Created at </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @order_items.each do |order_item| %>
|
|
<tr>
|
|
<td><%= order_item.order_id %></td>
|
|
<td><%= order_item.item_name %></td>
|
|
<td><%= order_item.qty %></td>
|
|
<td><%= order_item.price %></td>
|
|
<td><%= order_item.options %></td>
|
|
<td><%= order_item.order_item_status %></td>
|
|
<td><%= order_item.item_order_by %> </td>
|
|
<td><%= order_item.created_at.strftime("%d-%m-%y") %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="tab-pane" id="customer" role="tabpanel">
|
|
<h3>Sale Details</h3>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Sale ID </th>
|
|
<th>Menu Item</th>
|
|
<th>QTY</th>
|
|
<th>Unit Price </th>
|
|
<th>Tax Price</th>
|
|
<th>Created At</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @sale_items.each do |sale_item| %>
|
|
<tr>
|
|
<td><%= sale_item.sale_id %></td>
|
|
<td><%= sale_item.product_name %></td>
|
|
<td><%= sale_item.qty %></td>
|
|
<td><%= sale_item.unit_price %></td>
|
|
|
|
<td><%= sale_item.taxable_price %></td>
|
|
<td><%= sale_item.created_at %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-1 col-md-1 col-sm-1">
|
|
<br><br>
|
|
<a href="<%= crm_customers_path%>" class="btn btn-primary pull">
|
|
<i class="fa fa-arrow-left fa-xs"></i> Back
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|