2024-08-09 11:22:57 -04:00
|
|
|
<% entry, transaction, account = @entry, @entry.account_transaction, @entry.account %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
|
|
|
<%= drawer do %>
|
2024-09-20 08:38:19 -04:00
|
|
|
<header class="mb-4 space-y-1">
|
|
|
|
<div class="flex items-center gap-4">
|
|
|
|
<h3 class="font-medium">
|
|
|
|
<span class="text-2xl">
|
|
|
|
<%= format_money -entry.amount_money %>
|
|
|
|
</span>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<span class="text-lg text-gray-500">
|
|
|
|
<%= entry.currency %>
|
|
|
|
</span>
|
|
|
|
</h3>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<% if entry.marked_as_transfer? %>
|
|
|
|
<%= lucide_icon "arrow-left-right", class: "text-gray-500 mt-1 w-5 h-5" %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<span class="text-sm text-gray-500">
|
2024-10-02 14:02:17 -04:00
|
|
|
<%= I18n.l(entry.date, format: :long) %>
|
2024-09-20 08:38:19 -04:00
|
|
|
</span>
|
|
|
|
</header>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<div class="space-y-2">
|
|
|
|
<!-- Overview Section -->
|
|
|
|
<%= disclosure t(".overview") do %>
|
|
|
|
<div class="pb-4">
|
|
|
|
<%= styled_form_with model: [account, entry],
|
|
|
|
url: account_transaction_path(account, entry),
|
|
|
|
class: "space-y-2",
|
|
|
|
data: { controller: "auto-submit-form" } do |f| %>
|
|
|
|
<%= f.text_field :name,
|
|
|
|
label: t(".name_label"),
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<%= f.date_field :date,
|
|
|
|
label: t(".date_label"),
|
|
|
|
max: Date.current,
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
|
|
|
|
<% unless entry.marked_as_transfer? %>
|
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<%= f.select :nature,
|
|
|
|
[["Expense", "expense"], ["Income", "income"]],
|
|
|
|
{ container_class: "w-1/3", label: t(".nature"), selected: entry.amount.negative? ? "income" : "expense" },
|
|
|
|
{ data: { "auto-submit-form-target": "auto" } } %>
|
|
|
|
|
|
|
|
<%= f.money_field :amount, :currency, label: t(".amount"),
|
|
|
|
container_class: "w-2/3",
|
|
|
|
auto_submit: true,
|
|
|
|
min: 0,
|
|
|
|
value: entry.amount.abs %>
|
|
|
|
</div>
|
2024-07-01 10:49:43 -04:00
|
|
|
<% end %>
|
2024-09-20 08:38:19 -04:00
|
|
|
|
|
|
|
<%= f.select :account,
|
|
|
|
options_for_select(
|
|
|
|
Current.family.accounts.alphabetically.pluck(:name, :id),
|
|
|
|
entry.account_id
|
|
|
|
),
|
|
|
|
{ label: t(".account_label") },
|
|
|
|
{ disabled: true } %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<!-- Details Section -->
|
|
|
|
<%= disclosure t(".details") do %>
|
|
|
|
<div class="pb-4">
|
|
|
|
<%= styled_form_with model: [account, entry],
|
|
|
|
url: account_transaction_path(account, entry),
|
|
|
|
class: "space-y-2",
|
|
|
|
data: { controller: "auto-submit-form" } do |f| %>
|
|
|
|
<%= f.fields_for :entryable do |ef| %>
|
|
|
|
<% unless entry.marked_as_transfer? %>
|
|
|
|
<%= ef.collection_select :category_id,
|
|
|
|
Current.family.categories.alphabetically,
|
|
|
|
:id, :name,
|
|
|
|
{ prompt: t(".category_placeholder"),
|
|
|
|
label: t(".category_label"),
|
|
|
|
class: "text-gray-400" },
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
|
|
|
|
<%= ef.collection_select :merchant_id,
|
|
|
|
Current.family.merchants.alphabetically,
|
|
|
|
:id, :name,
|
|
|
|
{ prompt: t(".merchant_placeholder"),
|
|
|
|
label: t(".merchant_label"),
|
|
|
|
class: "text-gray-400" },
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
2024-07-01 10:49:43 -04:00
|
|
|
<% end %>
|
2024-09-20 08:38:19 -04:00
|
|
|
|
|
|
|
<%= ef.select :tag_ids,
|
|
|
|
options_for_select(
|
|
|
|
Current.family.tags.alphabetically.pluck(:name, :id),
|
|
|
|
transaction.tag_ids
|
|
|
|
),
|
|
|
|
{
|
|
|
|
multiple: true,
|
|
|
|
label: t(".tags_label"),
|
|
|
|
container_class: "h-40"
|
|
|
|
},
|
|
|
|
{ "data-auto-submit-form-target": "auto" } %>
|
|
|
|
|
|
|
|
<%= ef.text_area :notes,
|
|
|
|
label: t(".note_label"),
|
|
|
|
placeholder: t(".note_placeholder"),
|
|
|
|
rows: 5,
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
2024-07-01 10:49:43 -04:00
|
|
|
<% end %>
|
2024-09-20 08:38:19 -04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<!-- Settings Section -->
|
|
|
|
<%= disclosure t(".settings") do %>
|
|
|
|
<div class="pb-4">
|
|
|
|
<!-- Exclude Transaction Form -->
|
|
|
|
<%= styled_form_with model: [account, entry],
|
|
|
|
url: account_transaction_path(account, entry),
|
|
|
|
class: "p-3",
|
|
|
|
data: { controller: "auto-submit-form" } do |f| %>
|
|
|
|
<%= f.fields_for :entryable do |ef| %>
|
|
|
|
<div class="flex cursor-pointer items-center gap-2 justify-between">
|
2024-07-01 10:49:43 -04:00
|
|
|
<div class="text-sm space-y-1">
|
2024-09-20 08:38:19 -04:00
|
|
|
<h4 class="text-gray-900"><%= t(".exclude_title") %></h4>
|
|
|
|
<p class="text-gray-500"><%= t(".exclude_subtitle") %></p>
|
2024-07-01 10:49:43 -04:00
|
|
|
</div>
|
|
|
|
|
2024-09-20 08:38:19 -04:00
|
|
|
<div class="relative inline-block select-none">
|
|
|
|
<%= ef.check_box :excluded,
|
|
|
|
class: "sr-only peer",
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<label for="account_entry_entryable_attributes_excluded"
|
|
|
|
class="maybe-switch"></label>
|
|
|
|
</div>
|
2024-07-01 10:49:43 -04:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2024-09-20 08:38:19 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<!-- Delete Transaction Form -->
|
|
|
|
<% unless entry.marked_as_transfer? %>
|
|
|
|
<div class="flex items-center justify-between gap-2 p-3">
|
|
|
|
<div class="text-sm space-y-1">
|
|
|
|
<h4 class="text-gray-900"><%= t(".delete_title") %></h4>
|
|
|
|
<p class="text-gray-500"><%= t(".delete_subtitle") %></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= button_to t(".delete"),
|
|
|
|
account_entry_path(account, entry),
|
|
|
|
method: :delete,
|
|
|
|
class: "rounded-lg px-3 py-2 text-red-500 text-sm
|
|
|
|
font-medium border border-alpha-black-200",
|
|
|
|
data: { turbo_confirm: true, turbo_frame: "_top" } %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2024-07-01 10:49:43 -04:00
|
|
|
</div>
|
|
|
|
<% end %>
|