mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 15:24:48 +00:00
* third party provider scoping * Simplify logic and allow only admins to mange providers * Broadcast fixes * FIX tests and build * Fixes * Reviews * Scope merchants * DRY fixes
65 lines
1.8 KiB
Ruby
65 lines
1.8 KiB
Ruby
class BudgetsController < ApplicationController
|
|
before_action :set_budget, only: %i[show edit update copy_previous]
|
|
|
|
def index
|
|
redirect_to_current_month_budget
|
|
end
|
|
|
|
def show
|
|
@source_budget = @budget.most_recent_initialized_budget unless @budget.initialized?
|
|
end
|
|
|
|
def edit
|
|
render layout: "wizard"
|
|
end
|
|
|
|
def update
|
|
@budget.update!(budget_params)
|
|
redirect_to budget_budget_categories_path(@budget)
|
|
end
|
|
|
|
def copy_previous
|
|
if @budget.initialized?
|
|
redirect_to budget_path(@budget), alert: t("budgets.copy_previous.already_initialized")
|
|
return
|
|
end
|
|
|
|
source_budget = @budget.most_recent_initialized_budget
|
|
|
|
if source_budget
|
|
@budget.copy_from!(source_budget)
|
|
redirect_to budget_budget_categories_path(@budget), notice: t("budgets.copy_previous.success", source_name: source_budget.name)
|
|
else
|
|
redirect_to budget_path(@budget), alert: t("budgets.copy_previous.no_source")
|
|
end
|
|
end
|
|
|
|
def picker
|
|
render partial: "budgets/picker", locals: {
|
|
family: Current.family,
|
|
year: params[:year].to_i || Date.current.year
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def budget_create_params
|
|
params.require(:budget).permit(:start_date)
|
|
end
|
|
|
|
def budget_params
|
|
params.require(:budget).permit(:budgeted_spending, :expected_income)
|
|
end
|
|
|
|
def set_budget
|
|
start_date = Budget.param_to_date(params[:month_year], family: Current.family)
|
|
@budget = Budget.find_or_bootstrap(Current.family, start_date: start_date, user: Current.user)
|
|
raise ActiveRecord::RecordNotFound unless @budget
|
|
end
|
|
|
|
def redirect_to_current_month_budget
|
|
current_budget = Budget.find_or_bootstrap(Current.family, start_date: Date.current, user: Current.user)
|
|
redirect_to budget_path(current_budget)
|
|
end
|
|
end
|