Move extra bills to credit cards
This commit is contained in:
parent
c14a408f9a
commit
0887a5f6b9
38 changed files with 242 additions and 251 deletions
70
app/controllers/credit_card_bills_controller.rb
Normal file
70
app/controllers/credit_card_bills_controller.rb
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
class CreditCardBillsController < ApplicationController
|
||||||
|
before_action :set_credit_card_bill, only: %i[ show edit update destroy ]
|
||||||
|
|
||||||
|
# GET /credit_card_bills or /credit_card_bills.json
|
||||||
|
def index
|
||||||
|
@credit_card_bills = CreditCardBill.all
|
||||||
|
end
|
||||||
|
|
||||||
|
# GET /credit_card_bills/1 or /credit_card_bills/1.json
|
||||||
|
def show
|
||||||
|
end
|
||||||
|
|
||||||
|
# GET /credit_card_bills/new
|
||||||
|
def new
|
||||||
|
@credit_card_bill = CreditCardBill.new
|
||||||
|
end
|
||||||
|
|
||||||
|
# GET /credit_card_bills/1/edit
|
||||||
|
def edit
|
||||||
|
end
|
||||||
|
|
||||||
|
# POST /credit_card_bills or /credit_card_bills.json
|
||||||
|
def create
|
||||||
|
@credit_card_bill = CreditCardBill.new(credit_card_bill_params)
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
if @credit_card_bill.save
|
||||||
|
format.html { redirect_to credit_card_bill_url(@credit_card_bill), notice: "Credit card bill was successfully created." }
|
||||||
|
format.json { render :show, status: :created, location: @credit_card_bill }
|
||||||
|
else
|
||||||
|
format.html { render :new, status: :unprocessable_entity }
|
||||||
|
format.json { render json: @credit_card_bill.errors, status: :unprocessable_entity }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# PATCH/PUT /credit_card_bills/1 or /credit_card_bills/1.json
|
||||||
|
def update
|
||||||
|
respond_to do |format|
|
||||||
|
if @credit_card_bill.update(credit_card_bill_params)
|
||||||
|
format.html { redirect_to credit_card_bill_url(@credit_card_bill), notice: "Credit card bill was successfully updated." }
|
||||||
|
format.json { render :show, status: :ok, location: @credit_card_bill }
|
||||||
|
else
|
||||||
|
format.html { render :edit, status: :unprocessable_entity }
|
||||||
|
format.json { render json: @credit_card_bill.errors, status: :unprocessable_entity }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# DELETE /credit_card_bills/1 or /credit_card_bills/1.json
|
||||||
|
def destroy
|
||||||
|
@credit_card_bill.destroy
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
format.html { redirect_to credit_card_bills_url, notice: "Credit card bill was successfully destroyed." }
|
||||||
|
format.json { head :no_content }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
# Use callbacks to share common setup or constraints between actions.
|
||||||
|
def set_credit_card_bill
|
||||||
|
@credit_card_bill = CreditCardBill.find(params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
# Only allow a list of trusted parameters through.
|
||||||
|
def credit_card_bill_params
|
||||||
|
params.require(:credit_card_bill).permit(:description, :amount)
|
||||||
|
end
|
||||||
|
end
|
|
@ -65,6 +65,6 @@ class ExpensesController < ApplicationController
|
||||||
|
|
||||||
# Only allow a list of trusted parameters through.
|
# Only allow a list of trusted parameters through.
|
||||||
def expense_params
|
def expense_params
|
||||||
params.require(:expense).permit(:description, :payment, :period, :autopaid, :estimated)
|
params.require(:expense).permit(:description, :payment, :period, :credit_card, :estimated)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,70 +0,0 @@
|
||||||
class ExtraBillsController < ApplicationController
|
|
||||||
before_action :set_extra_bill, only: %i[ show edit update destroy ]
|
|
||||||
|
|
||||||
# GET /extra_bills or /extra_bills.json
|
|
||||||
def index
|
|
||||||
@extra_bills = ExtraBill.all
|
|
||||||
end
|
|
||||||
|
|
||||||
# GET /extra_bills/1 or /extra_bills/1.json
|
|
||||||
def show
|
|
||||||
end
|
|
||||||
|
|
||||||
# GET /extra_bills/new
|
|
||||||
def new
|
|
||||||
@extra_bill = ExtraBill.new
|
|
||||||
end
|
|
||||||
|
|
||||||
# GET /extra_bills/1/edit
|
|
||||||
def edit
|
|
||||||
end
|
|
||||||
|
|
||||||
# POST /extra_bills or /extra_bills.json
|
|
||||||
def create
|
|
||||||
@extra_bill = ExtraBill.new(extra_bill_params)
|
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
if @extra_bill.save
|
|
||||||
format.html { redirect_to extra_bill_url(@extra_bill), notice: "Extra bill was successfully created." }
|
|
||||||
format.json { render :show, status: :created, location: @extra_bill }
|
|
||||||
else
|
|
||||||
format.html { render :new, status: :unprocessable_entity }
|
|
||||||
format.json { render json: @extra_bill.errors, status: :unprocessable_entity }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# PATCH/PUT /extra_bills/1 or /extra_bills/1.json
|
|
||||||
def update
|
|
||||||
respond_to do |format|
|
|
||||||
if @extra_bill.update(extra_bill_params)
|
|
||||||
format.html { redirect_to extra_bill_url(@extra_bill), notice: "Extra bill was successfully updated." }
|
|
||||||
format.json { render :show, status: :ok, location: @extra_bill }
|
|
||||||
else
|
|
||||||
format.html { render :edit, status: :unprocessable_entity }
|
|
||||||
format.json { render json: @extra_bill.errors, status: :unprocessable_entity }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# DELETE /extra_bills/1 or /extra_bills/1.json
|
|
||||||
def destroy
|
|
||||||
@extra_bill.destroy
|
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
format.html { redirect_to extra_bills_url, notice: "Extra bill was successfully destroyed." }
|
|
||||||
format.json { head :no_content }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
# Use callbacks to share common setup or constraints between actions.
|
|
||||||
def set_extra_bill
|
|
||||||
@extra_bill = ExtraBill.find(params[:id])
|
|
||||||
end
|
|
||||||
|
|
||||||
# Only allow a list of trusted parameters through.
|
|
||||||
def extra_bill_params
|
|
||||||
params.require(:extra_bill).permit(:description, :amount, :deduct_autopaid)
|
|
||||||
end
|
|
||||||
end
|
|
5
app/models/credit_card_bill.rb
Normal file
5
app/models/credit_card_bill.rb
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
class CreditCardBill < ApplicationRecord
|
||||||
|
def unpaid
|
||||||
|
amount - Expense.credit_card_monthly_total
|
||||||
|
end
|
||||||
|
end
|
|
@ -19,7 +19,7 @@ class Expense < ApplicationRecord
|
||||||
Expense.all.map(&:monthly).sum.round(2)
|
Expense.all.map(&:monthly).sum.round(2)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.autopaid_total
|
def self.credit_card_monthly_total
|
||||||
Expense.where(autopaid: true).map(&:monthly).sum.round(2)
|
Expense.where(credit_card: true).map(&:monthly).sum.round(2)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
class ExtraBill < ApplicationRecord
|
|
||||||
def adjusted_amount
|
|
||||||
deduct_autopaid? ? amount - Expense.autopaid_total : amount
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,27 +1,22 @@
|
||||||
<div id="<%= dom_id extra_bill %>">
|
<div id="<%= dom_id credit_card_bill %>">
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
<strong class="block font-medium mb-1">Description:</strong>
|
<strong class="block font-medium mb-1">Description:</strong>
|
||||||
<%= extra_bill.description %>
|
<%= credit_card_bill.description %>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
<strong class="block font-medium mb-1">Amount:</strong>
|
<strong class="block font-medium mb-1">Amount:</strong>
|
||||||
<%= extra_bill.amount %>
|
<%= credit_card_bill.amount %>
|
||||||
</p>
|
|
||||||
|
|
||||||
<p class="my-5">
|
|
||||||
<strong class="block font-medium mb-1">Adjusted Amount:</strong>
|
|
||||||
<%= extra_bill.adjusted_amount %>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
<strong class="block font-medium mb-1">Accounted For:</strong>
|
<strong class="block font-medium mb-1">Accounted For:</strong>
|
||||||
<%= Expense.autopaid_total %>
|
<%= Expense.credit_card_monthly_total %>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
<strong class="block font-medium mb-1">Deduct autopaid:</strong>
|
<strong class="block font-medium mb-1">Unpaid:</strong>
|
||||||
<%= extra_bill.deduct_autopaid %>
|
<%= credit_card_bill.unpaid %>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
|
@ -38,7 +33,7 @@
|
||||||
<tr class="even:bg-gray-50 border-b">
|
<tr class="even:bg-gray-50 border-b">
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= member.name %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= member.name %></td>
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= member.burden_percent * 100 %>%</td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= member.burden_percent * 100 %>%</td>
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= number_to_currency(member.burden_amount(total_amount: extra_bill.adjusted_amount)) %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= number_to_currency(member.burden_amount(total_amount: credit_card_bill.unpaid)) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -46,8 +41,8 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<% if action_name != "show" %>
|
<% if action_name != "show" %>
|
||||||
<%= link_to "Show this extra bill", extra_bill, class: "rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
<%= link_to "Show this credit card bill", credit_card_bill, class: "rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
<%= link_to 'Edit this extra bill', edit_extra_bill_path(extra_bill), class: "rounded-lg py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %>
|
<%= link_to 'Edit this credit card bill', edit_credit_card_bill_path(credit_card_bill), class: "rounded-lg py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
<hr class="mt-6">
|
<hr class="mt-6">
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
|
@ -0,0 +1,2 @@
|
||||||
|
json.extract! credit_card_bill, :id, :description, :amount, :created_at, :updated_at
|
||||||
|
json.url credit_card_bill_url(credit_card_bill, format: :json)
|
|
@ -1,10 +1,9 @@
|
||||||
<%= form_with(model: extra_bill, class: "contents") do |form| %>
|
<%= form_with(model: credit_card_bill, class: "contents") do |form| %>
|
||||||
<% if extra_bill.errors.any? %>
|
<% if credit_card_bill.errors.any? %> <div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
|
||||||
<div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
|
<h2><%= pluralize(credit_card_bill.errors.count, "error") %> prohibited this credit_card_bill from being saved:</h2>
|
||||||
<h2><%= pluralize(extra_bill.errors.count, "error") %> prohibited this extra_bill from being saved:</h2>
|
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<% extra_bill.errors.each do |error| %>
|
<% credit_card_bill.errors.each do |error| %>
|
||||||
<li><%= error.full_message %></li>
|
<li><%= error.full_message %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -21,11 +20,6 @@
|
||||||
<%= form.text_field :amount, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
|
<%= form.text_field :amount, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
<%= form.label :deduct_autopaid %>
|
|
||||||
<%= form.check_box :deduct_autopaid, class: "block mt-2 h-5 w-5" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="inline">
|
<div class="inline">
|
||||||
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
|
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
|
||||||
</div>
|
</div>
|
8
app/views/credit_card_bills/edit.html.erb
Normal file
8
app/views/credit_card_bills/edit.html.erb
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<div class="mx-auto md:w-2/3 w-full">
|
||||||
|
<h1 class="font-bold text-4xl">Editing credit card bill</h1>
|
||||||
|
|
||||||
|
<%= render "form", credit_card_bill: @credit_card_bill %>
|
||||||
|
|
||||||
|
<%= link_to "Show this credit card bill", @credit_card_bill, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
|
<%= link_to "Back to credit card bills", credit_card_bills_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
|
</div>
|
14
app/views/credit_card_bills/index.html.erb
Normal file
14
app/views/credit_card_bills/index.html.erb
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<div class="w-full">
|
||||||
|
<% if notice.present? %>
|
||||||
|
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="flex justify-between items-center">
|
||||||
|
<h1 class="font-bold text-4xl">Credit card bills</h1>
|
||||||
|
<%= link_to 'New credit card bill', new_credit_card_bill_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="credit_card_bills" class="min-w-full">
|
||||||
|
<%= render @credit_card_bills %>
|
||||||
|
</div>
|
||||||
|
</div>
|
1
app/views/credit_card_bills/index.json.jbuilder
Normal file
1
app/views/credit_card_bills/index.json.jbuilder
Normal file
|
@ -0,0 +1 @@
|
||||||
|
json.array! @credit_card_bills, partial: "credit_card_bills/credit_card_bill", as: :credit_card_bill
|
7
app/views/credit_card_bills/new.html.erb
Normal file
7
app/views/credit_card_bills/new.html.erb
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<div class="mx-auto md:w-2/3 w-full">
|
||||||
|
<h1 class="font-bold text-4xl">New credit card bill</h1>
|
||||||
|
|
||||||
|
<%= render "form", credit_card_bill: @credit_card_bill %>
|
||||||
|
|
||||||
|
<%= link_to 'Back to credit card bills', credit_card_bills_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
|
</div>
|
15
app/views/credit_card_bills/show.html.erb
Normal file
15
app/views/credit_card_bills/show.html.erb
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<div class="mx-auto md:w-2/3 w-full flex">
|
||||||
|
<div class="mx-auto">
|
||||||
|
<% if notice.present? %>
|
||||||
|
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%= render @credit_card_bill %>
|
||||||
|
|
||||||
|
<%= link_to 'Edit this credit_card_bill', edit_credit_card_bill_path(@credit_card_bill), class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
|
<div class="inline-block ml-2">
|
||||||
|
<%= button_to 'Destroy this credit_card_bill', credit_card_bill_path(@credit_card_bill), method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
|
||||||
|
</div>
|
||||||
|
<%= link_to 'Back to credit_card_bills', credit_card_bills_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
|
</div>
|
||||||
|
</div>
|
1
app/views/credit_card_bills/show.json.jbuilder
Normal file
1
app/views/credit_card_bills/show.json.jbuilder
Normal file
|
@ -0,0 +1 @@
|
||||||
|
json.partial! "credit_card_bills/credit_card_bill", credit_card_bill: @credit_card_bill
|
|
@ -49,7 +49,7 @@
|
||||||
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Payment</th>
|
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Payment</th>
|
||||||
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Period</th>
|
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Period</th>
|
||||||
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Montly</th>
|
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Montly</th>
|
||||||
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Autopaid</th>
|
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">credit_card</th>
|
||||||
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Estimated</th>
|
<th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left">Estimated</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= number_to_currency(expense.payment) %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= number_to_currency(expense.payment) %></td>
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= expense.period %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= expense.period %></td>
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= number_to_currency(expense.monthly) %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= number_to_currency(expense.monthly) %></td>
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= expense.autopaid %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= expense.credit_card %></td>
|
||||||
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= expense.estimated %></td>
|
<td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"><%= expense.estimated %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
<strong class="block font-medium mb-1">Autopaid:</strong>
|
<strong class="block font-medium mb-1">Credit card:</strong>
|
||||||
<%= expense.autopaid %>
|
<%= expense.credit_card %>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="my-5">
|
<p class="my-5">
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
json.extract! expense, :id, :description, :payment, :period, :autopaid, :estimated, :created_at, :updated_at
|
json.extract! expense, :id, :description, :payment, :period, :credit_card, :estimated, :created_at, :updated_at
|
||||||
json.url expense_url(expense, format: :json)
|
json.url expense_url(expense, format: :json)
|
||||||
|
|
|
@ -32,8 +32,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-5">
|
<div class="my-5">
|
||||||
<%= form.label :autopaid %>
|
<%= form.label :credit_card %>
|
||||||
<%= form.check_box :autopaid, class: "block mt-2 h-5 w-5" %>
|
<%= form.check_box :credit_card, class: "block mt-2 h-5 w-5" %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-5">
|
<div class="my-5">
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
json.extract! extra_bill, :id, :description, :amount, :deduct_autopaid, :created_at, :updated_at
|
|
||||||
json.url extra_bill_url(extra_bill, format: :json)
|
|
|
@ -1,8 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full">
|
|
||||||
<h1 class="font-bold text-4xl">Editing extra bill</h1>
|
|
||||||
|
|
||||||
<%= render "form", extra_bill: @extra_bill %>
|
|
||||||
|
|
||||||
<%= link_to "Show this extra bill", @extra_bill, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
<%= link_to "Back to extra bills", extra_bills_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</div>
|
|
|
@ -1,14 +0,0 @@
|
||||||
<div class="w-full">
|
|
||||||
<% if notice.present? %>
|
|
||||||
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<div class="flex justify-between items-center">
|
|
||||||
<h1 class="font-bold text-4xl">Extra bills</h1>
|
|
||||||
<%= link_to 'New extra bill', new_extra_bill_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="extra_bills" class="min-w-full">
|
|
||||||
<%= render @extra_bills %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -1 +0,0 @@
|
||||||
json.array! @extra_bills, partial: "extra_bills/extra_bill", as: :extra_bill
|
|
|
@ -1,7 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full">
|
|
||||||
<h1 class="font-bold text-4xl">New extra bill</h1>
|
|
||||||
|
|
||||||
<%= render "form", extra_bill: @extra_bill %>
|
|
||||||
|
|
||||||
<%= link_to 'Back to extra bills', extra_bills_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</div>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full flex">
|
|
||||||
<div class="mx-auto">
|
|
||||||
<% if notice.present? %>
|
|
||||||
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<%= render @extra_bill %>
|
|
||||||
|
|
||||||
<%= link_to 'Edit this extra_bill', edit_extra_bill_path(@extra_bill), class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
<div class="inline-block ml-2">
|
|
||||||
<%= button_to 'Destroy this extra_bill', extra_bill_path(@extra_bill), method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
|
|
||||||
</div>
|
|
||||||
<%= link_to 'Back to extra_bills', extra_bills_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -1 +0,0 @@
|
||||||
json.partial! "extra_bills/extra_bill", extra_bill: @extra_bill
|
|
|
@ -16,7 +16,7 @@
|
||||||
<ul class="flex">
|
<ul class="flex">
|
||||||
<li class="mr-6"><%= link_to "Dashboard", root_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Dashboard", root_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Expenses", expenses_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Expenses", expenses_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Extra Bills", extra_bills_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Credit Card Bills", credit_card_bills_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Incomes", incomes_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Incomes", incomes_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Members", members_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Members", members_path, class: "text-white" %></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Rails.application.routes.draw do
|
Rails.application.routes.draw do
|
||||||
resources :extra_bills
|
resources :credit_card_bills
|
||||||
resource :dashboard, only: :show
|
resource :dashboard, only: :show
|
||||||
resources :incomes
|
resources :incomes
|
||||||
resources :members
|
resources :members
|
||||||
|
|
7
db/migrate/20230225002002_explicit_credit_card.rb
Normal file
7
db/migrate/20230225002002_explicit_credit_card.rb
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
class ExplicitCreditCard < ActiveRecord::Migration[7.0]
|
||||||
|
def change
|
||||||
|
rename_column :expenses, :autopaid, :credit_card
|
||||||
|
rename_table :extra_bills, :credit_card_bills
|
||||||
|
remove_column :credit_card_bills, :deduct_autopaid
|
||||||
|
end
|
||||||
|
end
|
21
db/schema.rb
generated
21
db/schema.rb
generated
|
@ -10,21 +10,20 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema[7.0].define(version: 2023_02_24_232804) do
|
ActiveRecord::Schema[7.0].define(version: 2023_02_25_002002) do
|
||||||
create_table "expenses", force: :cascade do |t|
|
create_table "credit_card_bills", force: :cascade do |t|
|
||||||
t.string "description", default: "", null: false
|
t.string "description"
|
||||||
t.decimal "payment", precision: 8, scale: 2, default: "0.0", null: false
|
t.decimal "amount"
|
||||||
t.integer "period", default: 0, null: false
|
|
||||||
t.boolean "autopaid", default: false, null: false
|
|
||||||
t.boolean "estimated", default: false, null: false
|
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "extra_bills", force: :cascade do |t|
|
create_table "expenses", force: :cascade do |t|
|
||||||
t.string "description"
|
t.string "description", default: "", null: false
|
||||||
t.decimal "amount"
|
t.decimal "payment", precision: 8, scale: 2, default: "0.0", null: false
|
||||||
t.boolean "deduct_autopaid"
|
t.integer "period", default: 0, null: false
|
||||||
|
t.boolean "credit_card", default: false, null: false
|
||||||
|
t.boolean "estimated", default: false, null: false
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
end
|
end
|
||||||
|
|
48
test/controllers/credit_card_bills_controller_test.rb
Normal file
48
test/controllers/credit_card_bills_controller_test.rb
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
require "test_helper"
|
||||||
|
|
||||||
|
class CreditCardBillsControllerTest < ActionDispatch::IntegrationTest
|
||||||
|
setup do
|
||||||
|
@credit_card_bill = credit_card_bills(:one)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should get index" do
|
||||||
|
get credit_card_bills_url
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should get new" do
|
||||||
|
get new_credit_card_bill_url
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should create credit_card_bill" do
|
||||||
|
assert_difference("CreditCardBill.count") do
|
||||||
|
post credit_card_bills_url, params: { credit_card_bill: { amount: @credit_card_bill.amount, description: @credit_card_bill.description } }
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_redirected_to credit_card_bill_url(CreditCardBill.last)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should show credit_card_bill" do
|
||||||
|
get credit_card_bill_url(@credit_card_bill)
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should get edit" do
|
||||||
|
get edit_credit_card_bill_url(@credit_card_bill)
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should update credit_card_bill" do
|
||||||
|
patch credit_card_bill_url(@credit_card_bill), params: { credit_card_bill: { amount: @credit_card_bill.amount, description: @credit_card_bill.description } }
|
||||||
|
assert_redirected_to credit_card_bill_url(@credit_card_bill)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should destroy credit_card_bill" do
|
||||||
|
assert_difference("CreditCardBill.count", -1) do
|
||||||
|
delete credit_card_bill_url(@credit_card_bill)
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_redirected_to credit_card_bills_url
|
||||||
|
end
|
||||||
|
end
|
|
@ -17,7 +17,7 @@ class ExpensesControllerTest < ActionDispatch::IntegrationTest
|
||||||
|
|
||||||
test "should create expense" do
|
test "should create expense" do
|
||||||
assert_difference("Expense.count") do
|
assert_difference("Expense.count") do
|
||||||
post expenses_url, params: { expense: { autopaid: @expense.autopaid, description: @expense.description, estimated: @expense.estimated, payment: @expense.payment, period: @expense.period } }
|
post expenses_url, params: { expense: { credit_card: @expense.credit_card, description: @expense.description, estimated: @expense.estimated, payment: @expense.payment, period: @expense.period } }
|
||||||
end
|
end
|
||||||
|
|
||||||
assert_redirected_to expense_url(Expense.last)
|
assert_redirected_to expense_url(Expense.last)
|
||||||
|
@ -34,7 +34,7 @@ class ExpensesControllerTest < ActionDispatch::IntegrationTest
|
||||||
end
|
end
|
||||||
|
|
||||||
test "should update expense" do
|
test "should update expense" do
|
||||||
patch expense_url(@expense), params: { expense: { autopaid: @expense.autopaid, description: @expense.description, estimated: @expense.estimated, payment: @expense.payment, period: @expense.period } }
|
patch expense_url(@expense), params: { expense: { credit_card: @expense.credit_card, description: @expense.description, estimated: @expense.estimated, payment: @expense.payment, period: @expense.period } }
|
||||||
assert_redirected_to expense_url(@expense)
|
assert_redirected_to expense_url(@expense)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,48 +0,0 @@
|
||||||
require "test_helper"
|
|
||||||
|
|
||||||
class ExtraBillsControllerTest < ActionDispatch::IntegrationTest
|
|
||||||
setup do
|
|
||||||
@extra_bill = extra_bills(:one)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should get index" do
|
|
||||||
get extra_bills_url
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should get new" do
|
|
||||||
get new_extra_bill_url
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should create extra_bill" do
|
|
||||||
assert_difference("ExtraBill.count") do
|
|
||||||
post extra_bills_url, params: { extra_bill: { amount: @extra_bill.amount, deduct_autopaid: @extra_bill.deduct_autopaid, description: @extra_bill.description } }
|
|
||||||
end
|
|
||||||
|
|
||||||
assert_redirected_to extra_bill_url(ExtraBill.last)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should show extra_bill" do
|
|
||||||
get extra_bill_url(@extra_bill)
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should get edit" do
|
|
||||||
get edit_extra_bill_url(@extra_bill)
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should update extra_bill" do
|
|
||||||
patch extra_bill_url(@extra_bill), params: { extra_bill: { amount: @extra_bill.amount, deduct_autopaid: @extra_bill.deduct_autopaid, description: @extra_bill.description } }
|
|
||||||
assert_redirected_to extra_bill_url(@extra_bill)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should destroy extra_bill" do
|
|
||||||
assert_difference("ExtraBill.count", -1) do
|
|
||||||
delete extra_bill_url(@extra_bill)
|
|
||||||
end
|
|
||||||
|
|
||||||
assert_redirected_to extra_bills_url
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -3,9 +3,7 @@
|
||||||
one:
|
one:
|
||||||
description: MyString
|
description: MyString
|
||||||
amount: 9.99
|
amount: 9.99
|
||||||
deduct_autopaid: false
|
|
||||||
|
|
||||||
two:
|
two:
|
||||||
description: MyString
|
description: MyString
|
||||||
amount: 9.99
|
amount: 9.99
|
||||||
deduct_autopaid: false
|
|
4
test/fixtures/expenses.yml
vendored
4
test/fixtures/expenses.yml
vendored
|
@ -4,12 +4,12 @@ one:
|
||||||
description: MyString
|
description: MyString
|
||||||
payment: 9.99
|
payment: 9.99
|
||||||
period: 1
|
period: 1
|
||||||
autopaid: false
|
credit_card: false
|
||||||
estimated: false
|
estimated: false
|
||||||
|
|
||||||
two:
|
two:
|
||||||
description: MyString
|
description: MyString
|
||||||
payment: 9.99
|
payment: 9.99
|
||||||
period: 1
|
period: 1
|
||||||
autopaid: false
|
credit_card: false
|
||||||
estimated: false
|
estimated: false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require "test_helper"
|
require "test_helper"
|
||||||
|
|
||||||
class ExtraBillTest < ActiveSupport::TestCase
|
class CreditCardBillTest < ActiveSupport::TestCase
|
||||||
# test "the truth" do
|
# test "the truth" do
|
||||||
# assert true
|
# assert true
|
||||||
# end
|
# end
|
|
@ -14,7 +14,7 @@ class ExpensesTest < ApplicationSystemTestCase
|
||||||
visit expenses_url
|
visit expenses_url
|
||||||
click_on "New expense"
|
click_on "New expense"
|
||||||
|
|
||||||
check "Autopaid" if @expense.autopaid
|
check "Credit card" if @expense.credit_card
|
||||||
fill_in "Description", with: @expense.description
|
fill_in "Description", with: @expense.description
|
||||||
check "Estimated" if @expense.estimated
|
check "Estimated" if @expense.estimated
|
||||||
fill_in "Payment", with: @expense.payment
|
fill_in "Payment", with: @expense.payment
|
||||||
|
@ -29,7 +29,7 @@ class ExpensesTest < ApplicationSystemTestCase
|
||||||
visit expense_url(@expense)
|
visit expense_url(@expense)
|
||||||
click_on "Edit this expense", match: :first
|
click_on "Edit this expense", match: :first
|
||||||
|
|
||||||
check "Autopaid" if @expense.autopaid
|
check "Credit card" if @expense.credit_card
|
||||||
fill_in "Description", with: @expense.description
|
fill_in "Description", with: @expense.description
|
||||||
check "Estimated" if @expense.estimated
|
check "Estimated" if @expense.estimated
|
||||||
fill_in "Payment", with: @expense.payment
|
fill_in "Payment", with: @expense.payment
|
||||||
|
|
|
@ -1,45 +1,43 @@
|
||||||
require "application_system_test_case"
|
require "application_system_test_case"
|
||||||
|
|
||||||
class ExtraBillsTest < ApplicationSystemTestCase
|
class CreditCardBillsTest < ApplicationSystemTestCase
|
||||||
setup do
|
setup do
|
||||||
@extra_bill = extra_bills(:one)
|
@credit_card_bill = credit_card_bills(:one)
|
||||||
end
|
end
|
||||||
|
|
||||||
test "visiting the index" do
|
test "visiting the index" do
|
||||||
visit extra_bills_url
|
visit credit_card_bills_url
|
||||||
assert_selector "h1", text: "Extra bills"
|
assert_selector "h1", text: "Credit card bills"
|
||||||
end
|
end
|
||||||
|
|
||||||
test "should create extra bill" do
|
test "should create credit card bill" do
|
||||||
visit extra_bills_url
|
visit credit_card_bills_url
|
||||||
click_on "New extra bill"
|
click_on "New credit card bill"
|
||||||
|
|
||||||
fill_in "Amount", with: @extra_bill.amount
|
fill_in "Amount", with: @credit_card_bill.amount
|
||||||
check "Deduct autopaid" if @extra_bill.deduct_autopaid
|
fill_in "Description", with: @credit_card_bill.description
|
||||||
fill_in "Description", with: @extra_bill.description
|
click_on "Create Credit card bill"
|
||||||
click_on "Create Extra bill"
|
|
||||||
|
|
||||||
assert_text "Extra bill was successfully created"
|
assert_text "Credit card bill was successfully created"
|
||||||
click_on "Back"
|
click_on "Back"
|
||||||
end
|
end
|
||||||
|
|
||||||
test "should update Extra bill" do
|
test "should update Credit card bill" do
|
||||||
visit extra_bill_url(@extra_bill)
|
visit credit_card_bill_url(@credit_card_bill)
|
||||||
click_on "Edit this extra bill", match: :first
|
click_on "Edit this credit card bill", match: :first
|
||||||
|
|
||||||
fill_in "Amount", with: @extra_bill.amount
|
fill_in "Amount", with: @credit_card_bill.amount
|
||||||
check "Deduct autopaid" if @extra_bill.deduct_autopaid
|
fill_in "Description", with: @credit_card_bill.description
|
||||||
fill_in "Description", with: @extra_bill.description
|
click_on "Update Credit card bill"
|
||||||
click_on "Update Extra bill"
|
|
||||||
|
|
||||||
assert_text "Extra bill was successfully updated"
|
assert_text "Credit card bill was successfully updated"
|
||||||
click_on "Back"
|
click_on "Back"
|
||||||
end
|
end
|
||||||
|
|
||||||
test "should destroy Extra bill" do
|
test "should destroy Credit card bill" do
|
||||||
visit extra_bill_url(@extra_bill)
|
visit credit_card_bill_url(@credit_card_bill)
|
||||||
click_on "Destroy this extra bill", match: :first
|
click_on "Destroy this credit card bill", match: :first
|
||||||
|
|
||||||
assert_text "Extra bill was successfully destroyed"
|
assert_text "Credit card bill was successfully destroyed"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue