mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
* Flatten Holding model * Flatten balance model * Entries domain renames * Fix valuations reference * Fix trades stream * Fix brakeman warnings * Fix tests * Replace existing entryable type references in DB
44 lines
1.5 KiB
Text
44 lines
1.5 KiB
Text
<%# locals: (form:, entry:, candidates:, accounts:) %>
|
|
|
|
<% if candidates.any? %>
|
|
<div data-controller="transfer-match" class="space-y-2">
|
|
<p class="text-sm text-secondary">
|
|
Select a method for matching your transactions.
|
|
</p>
|
|
|
|
<%= form.select :method,
|
|
[
|
|
["Match existing transaction (recommended)", "existing"],
|
|
["Create new transaction", "new"]
|
|
],
|
|
{ selected: "existing", label: "Matching method" },
|
|
data: { action: "change->transfer-match#update" } %>
|
|
|
|
<div data-transfer-match-target="existingSelect">
|
|
<%= form.select :matched_entry_id,
|
|
candidates.map { |entry|
|
|
[entry_name_detailed(entry), entry.id]
|
|
},
|
|
{ label: "Matching transaction" } %>
|
|
</div>
|
|
|
|
<div data-transfer-match-target="newSelect" class="hidden">
|
|
<%= form.select :target_account_id,
|
|
accounts.map { |account| [account.name, account.id] },
|
|
{ label: "Target account" } %>
|
|
</div>
|
|
</div>
|
|
<% else %>
|
|
<p class="text-sm text-secondary">
|
|
We couldn't find any transactions to match from your other accounts.
|
|
Please select an account and we will create a new inflow transaction for you.
|
|
</p>
|
|
|
|
<%= form.hidden_field :method, value: "new" %>
|
|
|
|
<div>
|
|
<%= form.select :target_account_id,
|
|
accounts.map { |account| [account.name, account.id] },
|
|
{ label: "Target account" } %>
|
|
</div>
|
|
<% end %>
|