mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-13 10:11:20 +00:00
Merge pull request #43015 from khushi8112/test-case-fix-in-asset-capitalization
chore: test case failing issue
This commit is contained in:
@@ -31,6 +31,12 @@ class TestAssetCapitalization(unittest.TestCase):
|
|||||||
def test_capitalization_with_perpetual_inventory(self):
|
def test_capitalization_with_perpetual_inventory(self):
|
||||||
company = "_Test Company with perpetual inventory"
|
company = "_Test Company with perpetual inventory"
|
||||||
set_depreciation_settings_in_company(company=company)
|
set_depreciation_settings_in_company(company=company)
|
||||||
|
name = frappe.db.get_value(
|
||||||
|
"Asset Category Account",
|
||||||
|
filters={"parent": "Computers", "company_name": company},
|
||||||
|
fieldname=["name"],
|
||||||
|
)
|
||||||
|
frappe.db.set_value("Asset Category Account", name, "capital_work_in_progress_account", "")
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
consumed_asset_value = 100000
|
consumed_asset_value = 100000
|
||||||
@@ -215,6 +221,12 @@ class TestAssetCapitalization(unittest.TestCase):
|
|||||||
def test_capitalization_with_wip_composite_asset(self):
|
def test_capitalization_with_wip_composite_asset(self):
|
||||||
company = "_Test Company with perpetual inventory"
|
company = "_Test Company with perpetual inventory"
|
||||||
set_depreciation_settings_in_company(company=company)
|
set_depreciation_settings_in_company(company=company)
|
||||||
|
name = frappe.db.get_value(
|
||||||
|
"Asset Category Account",
|
||||||
|
filters={"parent": "Computers", "company_name": company},
|
||||||
|
fieldname=["name"],
|
||||||
|
)
|
||||||
|
frappe.db.set_value("Asset Category Account", name, "capital_work_in_progress_account", "")
|
||||||
|
|
||||||
stock_rate = 1000
|
stock_rate = 1000
|
||||||
stock_qty = 2
|
stock_qty = 2
|
||||||
|
|||||||
Reference in New Issue
Block a user