fix: Clear messages during setup fixtures
This commit is contained in:
parent
621cdeb36a
commit
ec7b064528
@ -362,9 +362,9 @@ def make_fixtures(company=None):
|
|||||||
doc.flags.ignore_permissions = True
|
doc.flags.ignore_permissions = True
|
||||||
doc.insert()
|
doc.insert()
|
||||||
except frappe.NameError:
|
except frappe.NameError:
|
||||||
pass
|
frappe.clear_messages()
|
||||||
except frappe.DuplicateEntryError:
|
except frappe.DuplicateEntryError:
|
||||||
pass
|
frappe.clear_messages()
|
||||||
|
|
||||||
# create records for Tax Withholding Category
|
# create records for Tax Withholding Category
|
||||||
set_tax_withholding_category(company)
|
set_tax_withholding_category(company)
|
||||||
|
@ -363,7 +363,12 @@ def add_sale_stages():
|
|||||||
def install_company(args):
|
def install_company(args):
|
||||||
records = [
|
records = [
|
||||||
# Fiscal Year
|
# Fiscal Year
|
||||||
{ "doctype": "Fiscal Year", 'year': get_fy_details(args.fy_start_date, args.fy_end_date), 'year_start_date': args.fy_start_date, 'year_end_date': args.fy_end_date },
|
{
|
||||||
|
'doctype': "Fiscal Year",
|
||||||
|
'year': get_fy_details(args.fy_start_date, args.fy_end_date),
|
||||||
|
'year_start_date': args.fy_start_date,
|
||||||
|
'year_end_date': args.fy_end_date
|
||||||
|
},
|
||||||
|
|
||||||
# Company
|
# Company
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user