mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
Fix transfers#update to save notes (#2053)
This commit is contained in:
parent
4c72231312
commit
7096eefa2b
2 changed files with 27 additions and 6 deletions
|
@ -36,14 +36,11 @@ class TransfersController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
if transfer_update_params[:status] == "rejected"
|
Transfer.transaction do
|
||||||
@transfer.reject!
|
update_transfer_status
|
||||||
elsif transfer_update_params[:status] == "confirmed"
|
update_transfer_details
|
||||||
@transfer.confirm!
|
|
||||||
end
|
end
|
||||||
|
|
||||||
@transfer.outflow_transaction.update!(category_id: transfer_update_params[:category_id])
|
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html { redirect_back_or_to transactions_url, notice: t(".success") }
|
format.html { redirect_back_or_to transactions_url, notice: t(".success") }
|
||||||
format.turbo_stream
|
format.turbo_stream
|
||||||
|
@ -69,4 +66,17 @@ class TransfersController < ApplicationController
|
||||||
def transfer_update_params
|
def transfer_update_params
|
||||||
params.require(:transfer).permit(:notes, :status, :category_id)
|
params.require(:transfer).permit(:notes, :status, :category_id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def update_transfer_status
|
||||||
|
if transfer_update_params[:status] == "rejected"
|
||||||
|
@transfer.reject!
|
||||||
|
elsif transfer_update_params[:status] == "confirmed"
|
||||||
|
@transfer.confirm!
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_transfer_details
|
||||||
|
@transfer.outflow_transaction.update!(category_id: transfer_update_params[:category_id])
|
||||||
|
@transfer.update!(notes: transfer_update_params[:notes])
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -30,4 +30,15 @@ class TransfersControllerTest < ActionDispatch::IntegrationTest
|
||||||
delete transfer_url(transfers(:one))
|
delete transfer_url(transfers(:one))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "can add notes to transfer" do
|
||||||
|
transfer = transfers(:one)
|
||||||
|
assert_nil transfer.notes
|
||||||
|
|
||||||
|
patch transfer_url(transfer), params: { transfer: { notes: "Test notes" } }
|
||||||
|
|
||||||
|
assert_redirected_to transactions_url
|
||||||
|
assert_equal "Transfer updated", flash[:notice]
|
||||||
|
assert_equal "Test notes", transfer.reload.notes
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue