Commit 6e675488 authored by Chanelle Lunod's avatar Chanelle Lunod

Initial commit

parent 1b0bc1c6
...@@ -4,3 +4,5 @@ ...@@ -4,3 +4,5 @@
*/ */
@import "bootstrap"; @import "bootstrap";
#container { padding-top: 5rem; } #container { padding-top: 5rem; }
body {background-color: #d9e6f2;}
class OrdersController < ApplicationController
def index
@products = Product.all
end
def new
@product = Product.find_by(id: params[:product_id])
@order = @order.transactions.new
end
def create
@product = Product.find_by(id: params[:product_id])
@order = @order.transactions.new(supply_params)
@order.mode = "Order"
@order.user_id = current_user.id
@order.quantity = @order.quantity * -1
if @product.save
redirect_to authenticated_user_root_path, notice: "You have successfully placed a new order"
else
render 'new'
end
end
private
def order_params
params.require(:transaction).permit!
end
end
...@@ -3,6 +3,7 @@ class ProductsController < ApplicationController ...@@ -3,6 +3,7 @@ class ProductsController < ApplicationController
def index def index
@products = Product.all @products = Product.all
@products = Product.where(["name LIKE ?","%#{params[:search]}%"])
end end
def show def show
...@@ -17,9 +18,9 @@ class ProductsController < ApplicationController ...@@ -17,9 +18,9 @@ class ProductsController < ApplicationController
@product = Product.new(product_params) @product = Product.new(product_params)
if @product.save if @product.save
redirect_to products_path, notice: "You have successfully created a new product!" redirect_to products_path, notice: "You have successfully created a new product!"
else else
render 'new' render 'new'
end end
end end
...@@ -37,13 +38,24 @@ class ProductsController < ApplicationController ...@@ -37,13 +38,24 @@ class ProductsController < ApplicationController
end end
end end
def destroy
@product = Product.find_by(id: params[:id])
if @product.status == "Inactive"
@product.status = "Active"
else
@product.status = "Inactive"
end
@product.save
redirect_to products_path, alert: alert
end
def count def count
@products.count @products.count
end end
private private
def product_params def product_params
params.require(:product).permit! params.require(:product).permit!
end end
end end
class SuppliesController < ApplicationController class SuppliesController < ApplicationController
def index def index
@products = Product.all @products = Product.all
end end
def new def new
@supplies = Supply.new @product = Product.find_by(id: params[:product_id])
@supply = @product.transactions.new
end end
def create def create
@supplies = Supply.new(product_params) @product = Product.find_by(id: params[:product_id])
@supply = @product.transactions.new(supply_params)
@supply.mode = "Supply"
@supply.user_id = current_user.id
@supply.quantity =@supply.quantity
if @supplies.save if @product.save
redirect_to products_path, notice: "You have successfully added a new supply." redirect_to authenticated_user_root_path, notice: "You have successfully added a new supply."
else else
render 'new' render 'new'
end end
end end
def show private
if params [:status] == 'Active' def supply_params
@products = Product.Active params.require(:transaction).permit!
else end
@products = Product.Inactive end
end
end
end
\ No newline at end of file
class Transaction < ApplicationRecord class Transaction < ApplicationRecord
has_many :supplies
has_many :orders
belongs_to :product belongs_to :product
belongs_to :user belongs_to :user
......
...@@ -14,5 +14,4 @@ class User < ApplicationRecord ...@@ -14,5 +14,4 @@ class User < ApplicationRecord
email email
end end
end end
end end
...@@ -16,27 +16,46 @@ ...@@ -16,27 +16,46 @@
background-color: #ccfff2 background-color: #ccfff2
font-family:'Calibri'; font-family:'Calibri';
</style> </style>
<nav class="navbar navbar-expand-lg navbar-light bg-light"> <nav class="navbar navbar-expand-xl navbar-dark bg-dark">
<%= link_to "Main", root_path, class: "navbar-brand" %> <%= link_to "HOME", root_path, class: "navbar-brand" %>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span>
</button> </button>
<div class="collapse navbar-collapse" id="navbarSupportedContent"> <div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto"> <ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#">Sign In</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Inventory</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Transactions</a>
</li>
</ul> </ul>
<span class="navbar-text"> <span class="navbar-text">
<% if user_signed_in? %> <% if user_signed_in? %>
Logged in as <strong><%= current_user.email %></strong>. Logged in as <strong><%= current_user.email %></strong>.
<br>
<%= link_to 'Edit Profile', edit_user_registration_path, :class => 'navbar-link' %> | <%= link_to 'Edit Profile', edit_user_registration_path, :class => 'navbar-link' %> |
<%= link_to "Logout", destroy_user_session_path, method: :delete, :class => 'navbar-link' %> <%= link_to "Logout", destroy_user_session_path, method: :delete, :class => 'navbar-link' %>
<% elsif admin_user_signed_in? %> <% elsif admin_user_signed_in? %>
<%= link_to "Logout", destroy_admin_user_session_path, method: :delete, :class => 'navbar-link' %> <%= link_to "Logout", destroy_admin_user_session_path, method: :delete, :class => 'navbar-link' %>
<% end %> <% end %>
</span> </span>
<%= form_tag products_path, :method => 'get' do %>
<%= text_field_tag :search, params[:search] %>
<%= submit_tag "Search" %>
<% end %>
</div> </div>
</nav> </nav>
<div id="google_translate_element"></div><script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'af,ar,da,de,en,es,fi,fr,hi,id,is,ja,ko,mi,ms,my,nl,no,pt,sw,tl,zh-CN', layout: google.translate.TranslateElement.InlineLayout.HORIZONTAL}, 'google_translate_element');
}
</script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>>
<div class="container" id="container"> <div class="container" id="container">
<% if notice %> <% if notice %>
......
<h1>Orders#create</h1>
<p>Find me in app/views/orders/create.html.erb</p>
<h1>New Order</h1>
<%= simple_form_for @post do |f| %>
<%= f.input :quantity, as: :integer %>
<%= f.button :submit, "Add Supply", class: "btn btn-info" %>
<%= link_to "Back", transaction_path, class: "btn btn-default" %>
<% end %>
\ No newline at end of file
<h1>Inventory System</h1> <% if admin_user_signed_in? %>
<h1>Products</h1>
<div> <div>
<%= link_to "Create new product", new_product_path, class: "btn btn-primary" %> <%= link_to "Add new Product", new_product_path, class: "btn btn-primary" %>
</div> </div>
<br> <br>
<% if @products.empty? %>
<small>
No products have been added.
</small>
<% else %>
<table class = "table", cellspacing="0", cellpadding="0">
<thead style="background-color: #333">
<th>Name</th>
<th>Description</th>
<th>Status</th>
<th>Supply</th>
<th>Order</th>
<th>Total</th>
<th>Created At</th>
<th colspan="6"></th>
</thead>
<tbody>
<% @products.each do |product| %>
<tr>
<td>
<%= product.name %>
</td>
<td>
<%= product.description %>
</td>
<td>
<%= product.status%>
</td>
<td>
<% @supplies = 0 %>
<% product.transactions.each do |transaction| %>
<% if trans.mode == "Supply" %>
<% if trans.quantity == nil %>
<% trans.quantity == 0 %>
<% end %>
<% @supplies += trans.quantity %>
<% end %>
<% end %>
<%= @supplies %>
</td>
<td>
<% @orders = 0 %>
<% product.transactions.each do |transaction| %>
<% if trans.mode == "ORDER" %>
<% if trans.quantity == nil %>
<% transaction.quantity == 0 %>
<% end %>
<% @orders += trans.quantity %>
<% end %>
<% end %>
<%= "(#{@orders.abs})" %>
</td>
<td>
<% @total = 0 %>
<% product.transactions.each do |transaction| %>
<% if trans.quantity == nil %>
<% trans.quantity == 0 %>
<% end %>
<% @total += trans.quantity %>
<% end %>
<%= @total %>
</td>
<td>
<%= time_ago_in_words(product.created_at) %> ago
</td>
<td>
<%= link_to "Edit", edit_product_path(product), class: "btn btn-primary" %>
</td>
<td>
<% if product.status == "Active" %>
<%= link_to "Deactivate", product_path(product), method: :delete, class: "btn btn-danger" %>
<% else %>
<%= link_to "Activate", product_path(product), method: :delete, class: "btn btn-success"%>
<% end %>
</td>
<!-- <td>
<%= link_to "Delete", product_path(product), class: "btn btn-danger", method: :post, data: { confirm: "Are you sure you want to delete?" } %>
</td> -->
<td>
<%= link_to "View", product_path(product), class: "btn btn-primary" %>
</td>
</tr>
<% end%>
</tbody>
</table>
<% end %>
<% if @products.empty? %>
<small>
No products have been created.
</small>
<% else %> <% else %>
<table class="table"> <h1>Transactions</h1>
<thead> <br>
<th>Name</th>
<th>Description</th> <% if @products.empty? %>
<th>Status</th> <small>
<th>Time Created</th> No products have been added.
<th colspan="4"></th> </small>
</thead> <% else %>
<tbody> <table class = "table", cellspacing="0", cellpadding="0">
<% @products.each do |product| %> <thead style="background-color: #333">
<tr> <th>Name</th>
<td> <th>Description</th>
<%= link_to product.name, product_path(product) %> <th>Status</th>
</td> <th>Supply</th>
<td> <th>Order</th>
<%= product.description %> <th>Total</th>
</td> <th>Created At</th>
<td> <th colspan="6"></th>
<%= product.status %> </thead>
</td> <tbody>
<td> <% @products.each do |product| %>
<%= time_ago_in_words(product.created_at) %> ago <tr>
</td> <td>
<td> <%= product.name %>
<%= link_to "Edit", edit_product_path(product), class: "btn btn-primary" %> </td>
</td> <td>
</tr> <%= product.description %>
<% end %> </td>
</tbody> <td>
<%= product.status%>
</td>
<td>
<% @supplies = 0 %>
<% product.transactions.each do |trans| %>
<% if trans.mode == "Supply" %>
<% if trans.quantity == nil %>
<% trans.quantity == 0 %>
<% end %>
<% @supplies += trans.quantity %>
<% end %>
<% end %>
<%= @supplies %>
</td>
<td>
<% @orders = 0 %>
<% product.transactions.each do |trans| %>
<% if trans.mode == "ORDER" %>
<% if trans.quantity == nil %>
<% transaction.quantity == 0 %>
<% end %>
<% @orders += trans.quantity %>
<% end %>
<% end %>
<%= "(#{@orders.abs})" %>
</td>
<td>
<% @total = 0 %>
<% product.transactions.each do |trans| %>
<% if trans.quantity == nil %>
<% trans.quantity == 0 %>
<% end %>
<% @total += trans.quantity %>
<% end %>
<%= @total %>
</td>
<td>
<%= link_to "Add Supply", new_product_supply_path(product), class: "btn btn-primary" %>
</td>
<td>
<%= link_to "Add Order", new_product_order_path(product), class: "btn btn-primary" %>
</td>
</tr>
<% end %>
</tbody>
</table> </table>
<% end %> <% end %>
<% end %>
\ No newline at end of file
<h1>Supplies#create</h1>
<p>Find me in app/views/supplies/create.html.erb</p>
<h1>Transactions</h1>
<br>
<% if @products.empty? %>
<small>
No products have been created.
</small>
<% else %>
<table class="table">
<thead>
<th>Name</th>
<th>Description</th>
<th>Status</th>
<th>Time Created</th>
<th colspan="4"></th>
</thead>
<tbody>
<% @products.each do |product| %>
<tr>
<td>
<%= link_to product.name, product_path(product) %>
</td>
<td>
<%= product.description %>
</td>
<td>
<%= product.status %>
</td>
<td>
<%= time_ago_in_words(product.created_at) %> ago
</td>
</tr>
<% end %>
</tbody>
</table>
<% end %>
\ No newline at end of file
<h1>New Supply</h1>
<%= simple_form_for @post do |f| %>
<%= f.input :quantity, as: :integer %>
<%= f.button :submit, "Add Supply", class: "btn btn-info" %>
<%= link_to "Back", transaction_path, class: "btn btn-default" %>
<% end %>
...@@ -4,21 +4,18 @@ Rails.application.routes.draw do ...@@ -4,21 +4,18 @@ Rails.application.routes.draw do
authenticated :admin_user do authenticated :admin_user do
resources :products resources :products
root to: 'products#index', as: :authenticated_admin_user_root root to: 'products#index', as: :authenticated_admin_user_root
end
end end
end
devise_for :users devise_for :users
devise_scope :user do devise_scope :user do
authenticated :user do authenticated :user do
resources :products, only: [] do resources :products, only: [:new, :show] do
resources :orders, only: [:new, :create] resources :orders, only: [:new, :create]
resources :supplies, only: [:new, :create] resources :supplies, only: [:new, :create]
resources :comments, only: [:new, :create]
end end
root to: 'supplies#index', as: :authenticated_user_root root to: 'products#index', as: :authenticated_user_root
end end
end end
root to: 'publics#index' root to: 'publics#index'
end end
\ No newline at end of file
if AdminUser.count == 0 if AdminUser.count == 0
AdminUser.create!( AdminUser.create!([
{ {
email: 'andrea.dolendo@obf.ateneo.edu', email: 'andrea.dolendo@obf.ateneo.edu',
password: 'Andrea25' password: 'Andrea25'
}, },
# { {
# email: 'chanelle.lunod@obf.ateneo.edu', email: 'chanelle.lunod@obf.ateneo.edu',
# password: 'December5' password: 'December5'
# } }
) ])
end end
\ No newline at end of file
...@@ -4,8 +4,12 @@ ...@@ -4,8 +4,12 @@
# model remove the '{}' from the fixture names and add the columns immediately # model remove the '{}' from the fixture names and add the columns immediately
# below each fixture, per the syntax in the comments below # below each fixture, per the syntax in the comments below
# #
one: {} admin_user:
# column: value name: Andrea Dolendo
# email: andrea.dolendo@obf.ateneo.edu
two: {} password: Andrea25
# column: value
user:
name: Chanelle Lunod
email: chanelle.lunod@obf.ateneo.edu
password: December5
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment