2025-04-14 11:40:34 -04:00
|
|
|
class TradesController < ApplicationController
|
|
|
|
include EntryableResource
|
|
|
|
|
|
|
|
def create
|
|
|
|
@entry = build_entry
|
|
|
|
|
|
|
|
if @entry.save
|
|
|
|
@entry.sync_account_later
|
|
|
|
|
|
|
|
flash[:notice] = t("entries.create.success")
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_back_or_to account_path(@entry.account) }
|
|
|
|
format.turbo_stream { stream_redirect_back_or_to account_path(@entry.account) }
|
|
|
|
end
|
|
|
|
else
|
|
|
|
render :new, status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @entry.update(update_entry_params)
|
|
|
|
@entry.sync_account_later
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_back_or_to account_path(@entry.account), notice: t("entries.update.success") }
|
|
|
|
format.turbo_stream do
|
|
|
|
render turbo_stream: [
|
|
|
|
turbo_stream.replace(
|
|
|
|
"header_entry_#{@entry.id}",
|
|
|
|
partial: "trades/header",
|
|
|
|
locals: { entry: @entry }
|
|
|
|
),
|
|
|
|
turbo_stream.replace("entry_#{@entry.id}", partial: "entries/entry", locals: { entry: @entry })
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
render :show, status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def build_entry
|
|
|
|
account = Current.family.accounts.find(params.dig(:entry, :account_id))
|
|
|
|
TradeBuilder.new(create_entry_params.merge(account: account))
|
|
|
|
end
|
|
|
|
|
|
|
|
def entry_params
|
|
|
|
params.require(:entry).permit(
|
2025-04-18 11:39:58 -04:00
|
|
|
:name, :date, :amount, :currency, :excluded, :notes, :nature,
|
2025-04-14 11:40:34 -04:00
|
|
|
entryable_attributes: [ :id, :qty, :price ]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_entry_params
|
|
|
|
params.require(:entry).permit(
|
|
|
|
:date, :amount, :currency, :qty, :price, :ticker, :manual_ticker, :type, :transfer_account_id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_entry_params
|
|
|
|
return entry_params unless entry_params[:entryable_attributes].present?
|
|
|
|
|
|
|
|
update_params = entry_params
|
|
|
|
update_params = update_params.merge(entryable_type: "Trade")
|
|
|
|
|
|
|
|
qty = update_params[:entryable_attributes][:qty]
|
|
|
|
price = update_params[:entryable_attributes][:price]
|
|
|
|
|
|
|
|
if qty.present? && price.present?
|
|
|
|
qty = update_params[:nature] == "inflow" ? -qty.to_d : qty.to_d
|
|
|
|
update_params[:entryable_attributes][:qty] = qty
|
|
|
|
update_params[:amount] = qty * price.to_d
|
|
|
|
end
|
|
|
|
|
|
|
|
update_params.except(:nature)
|
|
|
|
end
|
|
|
|
end
|