fix: don't add GL Entry for Acc. Depr. while scrapping non-depreciable assets (backport #35714) (#35715)

fix: don't add GL Entry for Acc. Depr. while scrapping non-depreciable assets (#35714)

fix: on asset scrap, don't add gl entry for acc. depr. if no acc. depr.
(cherry picked from commit bb39a2cac7)

Co-authored-by: Anand Baburajan <anandbaburajan@gmail.com>
This commit is contained in:
mergify[bot]
2023-06-15 17:37:12 +05:30
committed by GitHub
parent 9d1fac19e5
commit 77b0c5f722

View File

@@ -483,6 +483,10 @@ def get_gl_entries_on_asset_disposal(
}, },
item=asset, item=asset,
), ),
]
if accumulated_depr_amount:
gl_entries.append(
asset.get_gl_dict( asset.get_gl_dict(
{ {
"account": accumulated_depr_account, "account": accumulated_depr_account,
@@ -493,7 +497,7 @@ def get_gl_entries_on_asset_disposal(
}, },
item=asset, item=asset,
), ),
] )
profit_amount = flt(selling_amount) - flt(value_after_depreciation) profit_amount = flt(selling_amount) - flt(value_after_depreciation)
if profit_amount: if profit_amount: