Merge pull request #36364 from SvbZ3r0/develop
fix: Naming Series preview when no previous transaction present
This commit is contained in:
commit
7bfd487b25
@ -1163,8 +1163,13 @@ def get_autoname_with_number(number_value, doc_title, company):
|
|||||||
|
|
||||||
def parse_naming_series_variable(doc, variable):
|
def parse_naming_series_variable(doc, variable):
|
||||||
if variable == "FY":
|
if variable == "FY":
|
||||||
date = doc.get("posting_date") or doc.get("transaction_date") or getdate()
|
if doc:
|
||||||
return get_fiscal_year(date=date, company=doc.get("company"))[0]
|
date = doc.get("posting_date") or doc.get("transaction_date")
|
||||||
|
company = doc.get("company")
|
||||||
|
else:
|
||||||
|
date = getdate()
|
||||||
|
company = None
|
||||||
|
return get_fiscal_year(date=date, company=company)[0]
|
||||||
|
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user