show location code in client list

This commit is contained in:
nandar
2017-08-04 17:19:50 +06:30
parent 425a690397
commit 8deb8ea401
3 changed files with 6 additions and 4 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -10,7 +10,7 @@ class BatchLineItemsController < ApplicationController
@clients=Client.all.order('id desc') @clients=Client.all.order('id desc')
@product_categories=ProductCategory.all.order('id desc') @product_categories=ProductCategory.all.order('id desc')
find_client=Client.select(:id).order('id desc').first find_client=Client.select(:id).order('id desc').last
if !find_client.nil? if !find_client.nil?
client_id=find_client.id client_id=find_client.id

View File

@@ -22,6 +22,7 @@
<th>Email</th> <th>Email</th>
<th>Phone</th> <th>Phone</th>
<th>Address</th> <th>Address</th>
<th>Location Code</th>
<th>Created At </th> <th>Created At </th>
<th>Action</th> <th>Action</th>
</tr> </tr>
@@ -33,6 +34,7 @@
<td><%= client.email rescue '' %></td> <td><%= client.email rescue '' %></td>
<td><%= client.phone rescue '' %></td> <td><%= client.phone rescue '' %></td>
<td><%= client.address rescue '' %></td> <td><%= client.address rescue '' %></td>
<td><%= client.location_code rescue '' %></td>
<td><%= client.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td> <td><%= client.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
<td> <td>
<%= link_to 'Detail', <%= link_to 'Detail',