add new file
This commit is contained in:
7
app/views/api/clients/index.json.jbuilder
Normal file
7
app/views/api/clients/index.json.jbuilder
Normal file
@@ -0,0 +1,7 @@
|
||||
if @out[0] == true
|
||||
json.set! :status, @out[0]
|
||||
json.set! :data, @out[1]
|
||||
else
|
||||
json.set! :status, @out[0]
|
||||
json.set! :message,@out[1]
|
||||
end
|
||||
2
app/views/clients/_client.json.jbuilder
Normal file
2
app/views/clients/_client.json.jbuilder
Normal file
@@ -0,0 +1,2 @@
|
||||
json.extract! client, :id, :created_at, :updated_at
|
||||
json.url client_url(client, format: :json)
|
||||
54
app/views/clients/_form.html.erb
Normal file
54
app/views/clients/_form.html.erb
Normal file
@@ -0,0 +1,54 @@
|
||||
<%= simple_form_for(@client) do |f| %>
|
||||
<nav class="breadcrumb">
|
||||
<a class="breadcrumb-item" href="<%= dashboard_path %>">Home</a>
|
||||
<a class="breadcrumb-item active" href="<%= clients_path %>">Client</a>
|
||||
<a class="breadcrumb-item active" href="#">
|
||||
<% if !@client.id.nil? %>
|
||||
Edit
|
||||
<% else %>
|
||||
New
|
||||
<% end %>
|
||||
</a>
|
||||
</nav>
|
||||
<div class="row">
|
||||
<div class="col-md-6" id="textbox_group">
|
||||
<div class ="form-group" >
|
||||
<label for="name" class="string optional control-label">Name:</label>
|
||||
<%= f.input :name ,:label =>false,:error => false,:placeholder =>'Please enter client name',input_html: { class: "form-control" } %>
|
||||
<%= f.error :name ,style: 'color: red' %>
|
||||
</div>
|
||||
<div class ="form-group" >
|
||||
<label for="nrc" class="string optional control-label">NRC:</label>
|
||||
<%= f.input :nrc ,:error=>false,:label =>false,:placeholder =>'Please enter client NRC',input_html: { class: "form-control" } %>
|
||||
</div>
|
||||
<div class ="form-group" >
|
||||
<label for="email" class="string optional control-label">Email:</label>
|
||||
<%= f.input :email ,:error=>false,:label =>false ,:placeholder =>'Please enter client email',input_html: { class: "form-control" } %>
|
||||
<%= f.error :email ,style: 'color: red' %>
|
||||
</div>
|
||||
<div class ="form-group" >
|
||||
<label for="phone" class="string optional control-label">Phone:</label>
|
||||
<%= f.input :phone,:error=>false,:label =>false,:placeholder =>'Please enter client phone',input_html: { class: "form-control" } %>
|
||||
<%= f.error :phone ,style: 'color: red' %>
|
||||
</div>
|
||||
<div class ="form-group" >
|
||||
<label for="address" class="string optional control-label">Address:</label>
|
||||
<%= f.input :address,:error=>false,:label =>false,:placeholder =>'Please enter client address',input_html: { class: "form-control" } %>
|
||||
<%= f.error :address ,style: 'color: red' %>
|
||||
</div>
|
||||
<div class ="form-group" >
|
||||
<label for="product_type" class="string optional control-label">Product Type:</label>
|
||||
<%= f.select :product_type,options_for_select([['CARD','card'],['TICKET','ticket']], params[:product_type]),
|
||||
{}, { :class => 'form-control' } %>
|
||||
<%= f.error :product_type ,style: 'color: red' %>
|
||||
</div>
|
||||
<div class ="form-group" >
|
||||
<label></label>
|
||||
<div class="actions">
|
||||
<%= f.button :submit, :class => 'btn btn-primary',:id =>'btn_submit' %>
|
||||
<%= link_to 'Cancel', users_path ,:class => 'btn btn-primary',:id => 'btnback' %>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
1
app/views/clients/edit.html.erb
Normal file
1
app/views/clients/edit.html.erb
Normal file
@@ -0,0 +1 @@
|
||||
<%= render 'form', client: @client %>
|
||||
55
app/views/clients/index.html.erb
Normal file
55
app/views/clients/index.html.erb
Normal file
@@ -0,0 +1,55 @@
|
||||
<div class="row ">
|
||||
<nav class="breadcrumb">
|
||||
<a class="breadcrumb-item active" href="<%= dashboard_path %>">Home</a>
|
||||
<a class="breadcrumb-item active" href="#">Client</a>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="row top-content">
|
||||
<span style="float: right">
|
||||
<%= link_to t('.new', :default => t("helpers.links.new")),new_client_path,:class => 'btn btn-primary' %>
|
||||
</span>
|
||||
</div>
|
||||
<div class="row content">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<strong>Client List</strong>
|
||||
</div>
|
||||
<div class="card-block">
|
||||
<table class="table" style="border-top:none">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Nrc</th>
|
||||
<th>Email</th>
|
||||
<th>Phone</th>
|
||||
<th>Address</th>
|
||||
<th>Product Type</th>
|
||||
<th>Created At </th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @clients.each do |client| %>
|
||||
<tr>
|
||||
<td><%= client.name rescue '' %></td>
|
||||
<td><%= client.nrc rescue '' %></td>
|
||||
<td><%= client.email rescue '' %></td>
|
||||
<td><%= client.phone rescue '' %></td>
|
||||
<td><%= client.address rescue '' %></td>
|
||||
<td><%= client.product_type rescue '' %></td>
|
||||
<td><%= client.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
|
||||
<td>
|
||||
<%= link_to 'Detail',
|
||||
client_path(client), :class => 'btn btn-primary btn-sm' %>
|
||||
<%= link_to 'Edit',
|
||||
edit_client_path(client), :class => 'btn btn-primary btn-sm' %>
|
||||
<%= link_to 'Delete', clients_path(client), method: :delete, data: { confirm: 'Are you sure?' },:class => 'btn btn-primary btn-sm' %>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<%=paginate @clients %>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
app/views/clients/index.json.jbuilder
Normal file
1
app/views/clients/index.json.jbuilder
Normal file
@@ -0,0 +1 @@
|
||||
json.array! @clients, partial: 'clients/client', as: :client
|
||||
1
app/views/clients/new.html.erb
Normal file
1
app/views/clients/new.html.erb
Normal file
@@ -0,0 +1 @@
|
||||
<%= render 'form', client: @client %>
|
||||
40
app/views/clients/show.html.erb
Normal file
40
app/views/clients/show.html.erb
Normal file
@@ -0,0 +1,40 @@
|
||||
<div class="row">
|
||||
<nav class="breadcrumb">
|
||||
<a class="breadcrumb-item" href="<%= dashboard_path %>">Home</a>
|
||||
<a class="breadcrumb-item active" href="<%= users_path %>">Clients</a>
|
||||
<a class="breadcrumb-item active" href="#">Show</a>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="row content">
|
||||
<div class="col-lg-6 show">
|
||||
<div class="row">
|
||||
<div class="col-lg-4"><strong>Name:</strong></div>
|
||||
<div class="col-lg-8 uppercase"><%= @client.name %></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4"><strong>NRC:</strong></div>
|
||||
<div class="col-lg-8"><%= @client.nrc %></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4"><strong>Email:</strong></div>
|
||||
<div class="col-lg-8"><%= @client.email %></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4"><strong>Phone:</strong></div>
|
||||
<div class="col-lg-8"><%= @client.phone %></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4"><strong>Address:</strong></div>
|
||||
<div class="col-lg-8"><%= @client.address %></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-8">
|
||||
<div class="col-lg-3"></div>
|
||||
<div class="col-lg-4 btn-show-action">
|
||||
<%= link_to 'Edit', edit_client_path(@client),:class => 'btn btn-primary' %>
|
||||
<%= link_to 'Back', clients_path ,:class => 'btn btn-primary'%>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
1
app/views/clients/show.json.jbuilder
Normal file
1
app/views/clients/show.json.jbuilder
Normal file
@@ -0,0 +1 @@
|
||||
json.partial! "clients/client", client: @client
|
||||
Reference in New Issue
Block a user