fix: Naming Series preview when no previous transaction present
This commit is contained in:
parent
829387c2bc
commit
89d109e8d2
@ -1112,7 +1112,12 @@ 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:
|
||||||
|
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=doc.get("company"))[0]
|
return get_fiscal_year(date=date, company=doc.get("company"))[0]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user