call post company fixture after setting up company
This commit is contained in:
parent
667f846bdb
commit
7f5ebbe494
@ -55,6 +55,11 @@ def get_setup_stages(args=None):
|
|||||||
'status': _('Setting defaults'),
|
'status': _('Setting defaults'),
|
||||||
'fail_msg': 'Failed to set defaults',
|
'fail_msg': 'Failed to set defaults',
|
||||||
'tasks': [
|
'tasks': [
|
||||||
|
{
|
||||||
|
'fn': setup_post_company_fixtures,
|
||||||
|
'args': args,
|
||||||
|
'fail_msg': _("Failed to setup post company fixtures")
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'fn': stage_three,
|
'fn': stage_three,
|
||||||
'args': args,
|
'args': args,
|
||||||
@ -92,6 +97,7 @@ def setup_complete(args=None):
|
|||||||
stage_fixtures(args)
|
stage_fixtures(args)
|
||||||
setup_company(args)
|
setup_company(args)
|
||||||
setup_taxes(args)
|
setup_taxes(args)
|
||||||
|
setup_post_company_fixtures(args)
|
||||||
stage_three(args)
|
stage_three(args)
|
||||||
stage_four(args)
|
stage_four(args)
|
||||||
fin(args)
|
fin(args)
|
||||||
@ -108,6 +114,9 @@ def setup_company(args):
|
|||||||
def setup_taxes(args):
|
def setup_taxes(args):
|
||||||
taxes_setup.create_sales_tax(args)
|
taxes_setup.create_sales_tax(args)
|
||||||
|
|
||||||
|
def setup_post_company_fixtures(args):
|
||||||
|
install_fixtures.install_post_company_fixtures(args.get("company_name"))
|
||||||
|
|
||||||
def stage_three(args):
|
def stage_three(args):
|
||||||
defaults_setup.create_employee_for_self(args)
|
defaults_setup.create_employee_for_self(args)
|
||||||
defaults_setup.set_default_settings(args)
|
defaults_setup.set_default_settings(args)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user