diff --git a/resources/views/v1/transactions/convert.twig b/resources/views/v1/transactions/convert.twig
index 70adec3194..c5e691a581 100644
--- a/resources/views/v1/transactions/convert.twig
+++ b/resources/views/v1/transactions/convert.twig
@@ -64,10 +64,10 @@
{# ONE: WITHDRAWAL TO DEPOSIT #}
{% if sourceType.type == 'Withdrawal' and destinationType.type == 'Deposit' %}
{# NEW DESTINATION = Asset, SOURCE MUST BE [Revenue, Cash, Loan, Debt, Mortgage] #}
- {% if
- transaction.source_type == 'Asset account' %}
+ {% if transaction.source_type == 'Asset account' %}
{{ Form.select('source_id['~transaction.transaction_journal_id~']', validDepositSources, null, {class: 'form-control'}) }}
{% endif %}
+
{# NEW DESTINATION = [Loan, Debt, Mortgage], SOURCE MUST BE [Revenue] #}
{% if
transaction.source_type == 'Loan' or
@@ -260,25 +260,6 @@
{% endfor %}
-
-
- {# in case of withdrawal #}
- {% if sourceType.type == "Withdrawal" %}
- {{ ExpandedForm.staticText('source_account_asset', ''~sourceAccount.name|escape~'') }}
- {# if destination is cash, show (cash) #}
- {% if destinationAccount.accountType.type == "Cash account" %}
- {{ ExpandedForm.staticText('destination_account_expense', '(cash)') }}
- {% else %}
- {{ ExpandedForm.staticText('destination_account_expense', ''~destinationAccount.name|escape~'') }}
- {% endif %}
-
- {% endif %}
-
- {# in case of transfer #}
- {% if sourceType.type == "Transfer" %}
- {{ ExpandedForm.staticText('source_account_asset', ''~sourceAccount.name|escape~'') }}
- {{ ExpandedForm.staticText('destination_account_asset', ''~destinationAccount.name|escape~'') }}
- {% endif %}