mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-18 19:07:55 +00:00
Demo data for fixed asset depreciation
This commit is contained in:
37
erpnext/demo/data/asset.json
Normal file
37
erpnext/demo/data/asset.json
Normal file
@@ -0,0 +1,37 @@
|
||||
[
|
||||
{
|
||||
"asset_name": "Macbook Pro - 1",
|
||||
"item_code": "Computer",
|
||||
"gross_purchase_amount": 100000
|
||||
},
|
||||
{
|
||||
"asset_name": "Macbook Air - 1",
|
||||
"item_code": "Computer",
|
||||
"gross_purchase_amount": 60000
|
||||
},
|
||||
{
|
||||
"asset_name": "Conferrence Table",
|
||||
"item_code": "Table",
|
||||
"gross_purchase_amount": 30000
|
||||
},
|
||||
{
|
||||
"asset_name": "Lunch Table",
|
||||
"item_code": "Table",
|
||||
"gross_purchase_amount": 20000
|
||||
},
|
||||
{
|
||||
"asset_name": "ERPNext",
|
||||
"item_code": "ERP",
|
||||
"gross_purchase_amount": 100000
|
||||
},
|
||||
{
|
||||
"asset_name": "Chair 1",
|
||||
"item_code": "Chair",
|
||||
"gross_purchase_amount": 10000
|
||||
},
|
||||
{
|
||||
"asset_name": "Chair 2",
|
||||
"item_code": "Chair",
|
||||
"gross_purchase_amount": 10000
|
||||
}
|
||||
]
|
||||
38
erpnext/demo/data/asset_category.json
Normal file
38
erpnext/demo/data/asset_category.json
Normal file
@@ -0,0 +1,38 @@
|
||||
[
|
||||
{
|
||||
"asset_category_name": "Furnitures",
|
||||
"depreciation_method": "Straight Line",
|
||||
"total_number_of_depreciations": 5,
|
||||
"frequency_of_depreciation": 12,
|
||||
"accounts": [{
|
||||
"company_name": "Wind Power LLC",
|
||||
"fixed_asset_account": "Furnitures and Fixtures - WPL",
|
||||
"accumulated_depreciation_account": "Accumulated Depreciation - WPL",
|
||||
"depreciation_expense_account": "Depreciation - WPL"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"asset_category_name": "Electronic Equipments",
|
||||
"depreciation_method": "Double Declining Balance",
|
||||
"total_number_of_depreciations": 10,
|
||||
"frequency_of_depreciation": 6,
|
||||
"accounts": [{
|
||||
"company_name": "Wind Power LLC",
|
||||
"fixed_asset_account": "Electronic Equipments - WPL",
|
||||
"accumulated_depreciation_account": "Accumulated Depreciation - WPL",
|
||||
"depreciation_expense_account": "Depreciation - WPL"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"asset_category_name": "Softwares",
|
||||
"depreciation_method": "Straight Line",
|
||||
"total_number_of_depreciations": 10,
|
||||
"frequency_of_depreciation": 12,
|
||||
"accounts": [{
|
||||
"company_name": "Wind Power LLC",
|
||||
"fixed_asset_account": "Softwares - WPL",
|
||||
"accumulated_depreciation_account": "Accumulated Depreciation - WPL",
|
||||
"depreciation_expense_account": "Depreciation - WPL"
|
||||
}]
|
||||
}
|
||||
]
|
||||
@@ -221,5 +221,59 @@
|
||||
"item_code": "Base Plate Un Painted",
|
||||
"item_group": "Raw Material",
|
||||
"item_name": "Base Plate Un Painted"
|
||||
},
|
||||
{
|
||||
"is_fixed_asset": 1,
|
||||
"asset_category": "Furnitures",
|
||||
"is_stock_item": 0,
|
||||
"description": "Table",
|
||||
"item_code": "Table",
|
||||
"item_name": "Table",
|
||||
"item_group": "Products"
|
||||
},
|
||||
{
|
||||
"is_fixed_asset": 1,
|
||||
"asset_category": "Furnitures",
|
||||
"is_stock_item": 0,
|
||||
"description": "Chair",
|
||||
"item_code": "Chair",
|
||||
"item_name": "Chair",
|
||||
"item_group": "Products"
|
||||
},
|
||||
{
|
||||
"is_fixed_asset": 1,
|
||||
"asset_category": "Electronic Equipments",
|
||||
"is_stock_item": 0,
|
||||
"description": "Computer",
|
||||
"item_code": "Computer",
|
||||
"item_name": "Computer",
|
||||
"item_group": "Products"
|
||||
},
|
||||
{
|
||||
"is_fixed_asset": 1,
|
||||
"asset_category": "Electronic Equipments",
|
||||
"is_stock_item": 0,
|
||||
"description": "Mobile",
|
||||
"item_code": "Mobile",
|
||||
"item_name": "Mobile",
|
||||
"item_group": "Products"
|
||||
},
|
||||
{
|
||||
"is_fixed_asset": 1,
|
||||
"asset_category": "Softwares",
|
||||
"is_stock_item": 0,
|
||||
"description": "ERP",
|
||||
"item_code": "ERP",
|
||||
"item_name": "ERP",
|
||||
"item_group": "All Item Groups"
|
||||
},
|
||||
{
|
||||
"is_fixed_asset": 1,
|
||||
"asset_category": "Softwares",
|
||||
"is_stock_item": 0,
|
||||
"description": "Autocad",
|
||||
"item_code": "Autocad",
|
||||
"item_name": "Autocad",
|
||||
"item_group": "All Item Groups"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user