mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-13 10:11:20 +00:00
Merge branch 'version-14-hotfix' into mergify/bp/version-14-hotfix/pr-32225
This commit is contained in:
@@ -22,8 +22,7 @@ def get_columns():
|
|||||||
{
|
{
|
||||||
"label": _("Payment Document Type"),
|
"label": _("Payment Document Type"),
|
||||||
"fieldname": "payment_document_type",
|
"fieldname": "payment_document_type",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Data",
|
||||||
"options": "Doctype",
|
|
||||||
"width": 130,
|
"width": 130,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -33,15 +32,15 @@ def get_columns():
|
|||||||
"options": "payment_document_type",
|
"options": "payment_document_type",
|
||||||
"width": 140,
|
"width": 140,
|
||||||
},
|
},
|
||||||
{"label": _("Posting Date"), "fieldname": "posting_date", "fieldtype": "Date", "width": 100},
|
{"label": _("Posting Date"), "fieldname": "posting_date", "fieldtype": "Date", "width": 120},
|
||||||
{"label": _("Cheque/Reference No"), "fieldname": "cheque_no", "width": 120},
|
{"label": _("Cheque/Reference No"), "fieldname": "cheque_no", "width": 120},
|
||||||
{"label": _("Clearance Date"), "fieldname": "clearance_date", "fieldtype": "Date", "width": 100},
|
{"label": _("Clearance Date"), "fieldname": "clearance_date", "fieldtype": "Date", "width": 120},
|
||||||
{
|
{
|
||||||
"label": _("Against Account"),
|
"label": _("Against Account"),
|
||||||
"fieldname": "against",
|
"fieldname": "against",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"options": "Account",
|
"options": "Account",
|
||||||
"width": 170,
|
"width": 200,
|
||||||
},
|
},
|
||||||
{"label": _("Amount"), "fieldname": "amount", "fieldtype": "Currency", "width": 120},
|
{"label": _("Amount"), "fieldname": "amount", "fieldtype": "Currency", "width": 120},
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -130,6 +130,7 @@ class TestAssetRepair(unittest.TestCase):
|
|||||||
set_depreciation_settings_in_company(company="_Test Company with perpetual inventory")
|
set_depreciation_settings_in_company(company="_Test Company with perpetual inventory")
|
||||||
|
|
||||||
asset_category = frappe.get_doc("Asset Category", "Computers")
|
asset_category = frappe.get_doc("Asset Category", "Computers")
|
||||||
|
asset_category.enable_cwip_accounting = 0
|
||||||
asset_category.append(
|
asset_category.append(
|
||||||
"accounts",
|
"accounts",
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user