Files
sure/app/views/trades/_form.html.erb
Derek Brown 9a1cd1130a Update _form.html.erb (#1343)
@dosubots suggested fix

Signed-off-by: Derek Brown <browndw4@gmail.com>
2026-04-02 20:16:21 +02:00

71 lines
3.1 KiB
Plaintext

<%# locals: (model:, account:) %>
<% type = params[:type] || "buy" %>
<%= styled_form_with url: trades_path(account_id: account&.id), scope: :model, data: { controller: "trade-form" } do |form| %>
<div class="space-y-4">
<% if model.errors.any? %>
<%= render "shared/form_errors", model: model %>
<% end %>
<div class="space-y-2">
<%= form.select :type, [
[t(".type_buy"), "buy"],
[t(".type_sell"), "sell"],
[t(".type_deposit"), "deposit"],
[t(".type_withdrawal"), "withdrawal"],
[t(".type_dividend"), "dividend"],
[t(".type_interest"), "interest"]
],
{ label: t(".type"), selected: type },
{ data: {
action: "trade-form#changeType",
trade_form_url_param: new_trade_path(account_id: account&.id),
trade_form_key_param: "type",
}} %>
<% if %w[buy sell].include?(type) %>
<% if Security.provider.present? %>
<div class="form-field combobox">
<%= form.combobox :ticker,
securities_path(country_code: Current.family.country),
name_when_new: "model[manual_ticker]",
label: t(".holding"),
placeholder: t(".ticker_placeholder"),
required: true %>
</div>
<% else %>
<%= form.text_field :manual_ticker, label: t(".holding"), placeholder: t(".ticker_placeholder"), required: true %>
<% end %>
<% end %>
<% if %w[dividend interest].include?(type) %>
<% account_securities = account ? account.traded_standard_securities : [] %>
<% security_options = account_securities.map { |s| [ s.name.presence || s.ticker, s.exchange_operating_mic.present? ? "#{s.ticker}|#{s.exchange_operating_mic}" : s.ticker ] } %>
<% select_options = { label: type == "dividend" ? t(".holding") : t(".holding_optional") } %>
<% select_options[:include_blank] = true if type == "interest" %>
<% select_options[:required] = true if type == "dividend" %>
<%= form.select :ticker, security_options, select_options %>
<% end %>
<%= form.date_field :date, label: true, value: model.date || Date.current, required: true %>
<% unless %w[buy sell].include?(type) %>
<%= form.money_field :amount, label: t(".amount"), value: model.amount, required: true %>
<% end %>
<% if %w[deposit withdrawal].include?(type) %>
<%= form.collection_select :transfer_account_id, accessible_accounts.visible.alphabetically, :id, :name, { prompt: t(".account_prompt"), label: t(".account") } %>
<% end %>
<% if %w[buy sell].include?(type) %>
<%= form.number_field :qty, label: t(".qty"), placeholder: "10", min: 0.000000000000000001, step: "any", required: true %>
<%= form.money_field :price, label: t(".price"), step: "any", precision: 10, required: true %>
<%= form.money_field :fee, label: t(".fee"), step: "any", min: 0 %>
<% end %>
</div>
<%= form.submit t(".submit") %>
</div>
<% end %>