mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 22:45:20 +02:00
* Allow transfers to match when inflow is after outflow * Simplify transfer auto matching with RejectedTransfer model * Validations * Reset migrations
19 lines
938 B
Text
19 lines
938 B
Text
<% unless @transfer.destroyed? %>
|
|
<%= turbo_stream.replace @transfer %>
|
|
|
|
<%= turbo_stream.replace "category_menu_account_entry_#{@transfer.inflow_transaction.entry.id}",
|
|
partial: "account/transactions/transaction_category",
|
|
locals: { entry: @transfer.inflow_transaction.entry } %>
|
|
|
|
<%= turbo_stream.replace "category_menu_account_entry_#{@transfer.outflow_transaction.entry.id}",
|
|
partial: "account/transactions/transaction_category",
|
|
locals: { entry: @transfer.outflow_transaction.entry } %>
|
|
|
|
<%= turbo_stream.replace "transfer_match_account_entry_#{@transfer.inflow_transaction.entry.id}",
|
|
partial: "account/transactions/transfer_match",
|
|
locals: { entry: @transfer.inflow_transaction.entry } %>
|
|
|
|
<%= turbo_stream.replace "transfer_match_account_entry_#{@transfer.outflow_transaction.entry.id}",
|
|
partial: "account/transactions/transfer_match",
|
|
locals: { entry: @transfer.outflow_transaction.entry } %>
|
|
<% end %>
|