{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, what) }} {% endblock %} {% block content %}

{{ 'mandatoryFields'|_ }}

{# DESCRIPTION IS ALWAYS AVAILABLE #} {{ ExpandedForm.text('description') }} {# SELECTABLE SOURCE ACCOUNT ONLY FOR WITHDRAWALS AND TRANSFERS #} {{ ExpandedForm.select('source_account_id', assetAccounts, null, {label: trans('form.asset_source_account')}) }} {# FREE FORMAT SOURCE ACCOUNT ONLY FOR DEPOSITS #} {{ ExpandedForm.text('source_account_name', null, {label: trans('form.revenue_account')}) }} {# FREE FORMAT DESTINATION ACCOUNT ONLY FOR EXPENSES #} {{ ExpandedForm.text('destination_account_name', null, {label: trans('form.expense_account')}) }} {# SELECTABLE DESTINATION ACCOUNT ONLY FOR TRANSFERS AND DEPOSITS #} {{ ExpandedForm.select('destination_account_id', assetAccounts, null, {label: trans('form.asset_destination_account')} ) }} {# ALWAYS SHOW AMOUNT #} {{ ExpandedForm.amount('amount') }} {{ ExpandedForm.date('date', phpdate('Y-m-d')) }}

{{ 'optional_field_meta_data'|_ }}

{% if budgets|length > 1 %} {{ ExpandedForm.select('budget_id', budgets, 0) }} {% else %} {{ ExpandedForm.select('budget_id', budgets, 0, {helpText: trans('firefly.no_budget_pointer')}) }} {% endif %} {{ ExpandedForm.text('category') }} {{ ExpandedForm.text('tags') }} {{ ExpandedForm.select('piggy_bank_id', piggies) }}
{% if not optionalFields.interest_date or not optionalFields.book_date or not optionalFields.process_date or not optionalFields.due_date or not optionalFields.payment_date or not optionalFields.invoice_date or not optionalFields.internal_reference or not optionalFields.notes or not optionalFields.attachments %}

{{ trans('firefly.hidden_fields_preferences', {link: route('preferences.index')})|raw }}

{% endif %} {% if optionalFields.interest_date or optionalFields.book_date or optionalFields.process_date or optionalFields.due_date or optionalFields.payment_date or optionalFields.invoice_date %}

{{ 'optional_field_meta_dates'|_ }}

{# INTEREST DATE #} {% if optionalFields.interest_date %} {{ ExpandedForm.date('interest_date') }} {% endif %} {# BOOK DATE #} {% if optionalFields.book_date %} {{ ExpandedForm.date('book_date') }} {% endif %} {# PROCESSING DATE #} {% if optionalFields.process_date %} {{ ExpandedForm.date('process_date') }} {% endif %} {# DUE DATE #} {% if optionalFields.due_date %} {{ ExpandedForm.date('due_date') }} {% endif %} {# PAYMENT DATE #} {% if optionalFields.payment_date %} {{ ExpandedForm.date('payment_date') }} {% endif %} {# INVOICE DATE #} {% if optionalFields.invoice_date %} {{ ExpandedForm.date('invoice_date') }} {% endif %}
{% endif %} {% if optionalFields.internal_reference or optionalFields.notes %}

{{ 'optional_field_meta_business'|_ }}

{# REFERENCE #} {% if optionalFields.internal_reference %} {{ ExpandedForm.text('internal_reference') }} {% endif %} {# NOTES #} {% if optionalFields.notes %} {{ ExpandedForm.textarea('notes') }} {% endif %}
{% endif %} {% if optionalFields.attachments %}

{{ 'optional_field_attachments'|_ }}

{# ATTACHMENTS #} {% if optionalFields.attachments %} {{ ExpandedForm.file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }} {% endif %}
{% endif %}

{{ 'options'|_ }}

{{ ExpandedForm.optionsList('create','transaction') }}
#}
{% endblock %} {% block scripts %} {% endblock %} {% block styles %} {% endblock %}