From 17c217ac4b92414586326e852bdc840a7d976ecb Mon Sep 17 00:00:00 2001 From: Goffin Simon <sig@odoo.com> Date: Mon, 9 May 2016 13:36:48 +0200 Subject: [PATCH] [FIX] account_asset: Depreciation Expense Account and Depreciation Asset Account "Depreciation Account" must be renamed in "Depreciation Expense Account" Reason: This is the account that will be shown in the Profit and Loss, the original label "Depreciation Account" is confusing because it could mean a depreciation asset account. "Asset Account" must be renamed in "Depreciation Asset Account" Reason: This makes it clear that this is an asset account that will receive depreciation entries, without this wording it could mean that we are simply informing the Asset module which account is the asset account, but that depreciation entries go elsewhere. opw:672852 --- addons/account_asset/i18n/account_asset.pot | 10 ++++++++++ addons/account_asset/views/account_asset_view.xml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/addons/account_asset/i18n/account_asset.pot b/addons/account_asset/i18n/account_asset.pot index 84520d28c65d..91291ac5aa79 100644 --- a/addons/account_asset/i18n/account_asset.pot +++ b/addons/account_asset/i18n/account_asset.pot @@ -435,6 +435,16 @@ msgstr "" msgid "Depreciation Entry" msgstr "" +#. module: account_asset +#: model:ir.ui.view,arch_db:account_asset.view_account_asset_category_form +msgid "Depreciation Asset Account" +msgstr "" + +#. module: account_asset +#: model:ir.ui.view,arch_db:account_asset.view_account_asset_category_form +msgid "Depreciation Expense Account" +msgstr "" + #. module: account_asset #: model:ir.ui.view,arch_db:account_asset.view_account_asset_asset_form msgid "Depreciation Information" diff --git a/addons/account_asset/views/account_asset_view.xml b/addons/account_asset/views/account_asset_view.xml index 8a63fd15ea60..8bb86b867327 100644 --- a/addons/account_asset/views/account_asset_view.xml +++ b/addons/account_asset/views/account_asset_view.xml @@ -24,12 +24,12 @@ <group string="Journal Entries"> <field name="journal_id"/> <div> - <label for="account_asset_id" string="Asset Account" attrs="{'invisible': [('type','!=','purchase')]}"/> + <label for="account_asset_id" string="Depreciation Asset Account" attrs="{'invisible': [('type','!=','purchase')]}"/> <label for="account_asset_id" string="Deferred Revenue Account" attrs="{'invisible': [('type','!=','sale')]}"/> </div> <field name="account_asset_id" nolabel="1" attrs="{'invisible': [('type','=', False)]}"/> <div> - <label for="account_depreciation_id" string="Depreciation Account" attrs="{'invisible': [('type','!=','purchase')]}"/> + <label for="account_depreciation_id" string="Depreciation Expense Account" attrs="{'invisible': [('type','!=','purchase')]}"/> <label for="account_depreciation_id" string="Income Account" attrs="{'invisible': [('type','!=','sale')]}"/> </div> <field name="account_depreciation_id" nolabel="1"/> -- GitLab