Merge pull request #51504 from khushi8112/fiscal-year-not-found-error

fix: use non-standard-fieldname for budget
This commit is contained in:
Khushi Rawat
2026-01-05 16:44:36 +05:30
committed by GitHub
2 changed files with 1 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ from frappe import _
def get_data():
return {
"fieldname": "fiscal_year",
"non_standard_fieldnames": {"Budget": "from_fiscal_year"},
"transactions": [
{"label": _("Budgets"), "items": ["Budget"]},
{"label": _("References"), "items": ["Period Closing Voucher"]},

View File

@@ -11,6 +11,5 @@ def get_data():
},
"transactions": [
{"label": _("Target Details"), "items": ["Sales Person", "Territory", "Sales Partner"]},
{"items": ["Budget"]},
],
}