示例#1
0
文件: utils.py 项目: cnzhuran/mdcom
def create_organization(auto_type=True, org_type=None, org_type_id=None, org_name="Test Org"):
	if not org_type:
		if auto_type:
			org_setting = OrganizationSetting(can_have_luxury_logo=True,
											display_in_contact_list_tab=True)
			org_setting.save()
			type_name = "Test Org Type1"
			if org_type_id:
				org_type = OrganizationType(id=org_type_id, 
					name=type_name, organization_setting=org_setting)
				org_type.save()
			else:
				org_type = OrganizationType(name=type_name, organization_setting=org_setting)
				# force id for test - MySQL UT's don't re-use ids after cleanup 
				org_type.id = RESERVED_ORGANIZATION_TYPE_ID_PRACTICE
				# TODO: issue 2030, reserved id's is a hazardous approach, the UT's 
				# were working with SQLlite but not with MySQL, DB engines recycle
				# id's differently and we should not rely on reserved id fields.  This 
				# should be addressed in a separate Redmine as model changes may occur.
				org_type.save()

	_organization = PracticeLocation(
		practice_name="Test Org",
		practice_address1='555 Pleasant Pioneer Grove',
		practice_address2='Trailer Q615',
		practice_city='Mountain View',
		practice_state='CA',
		practice_zip='94040-4104',
		practice_lat=37.36876,
		practice_longit=-122.081864,
		organization_type=org_type)
	_organization.save()
	return _organization
示例#2
0
文件: utils.py 项目: DongHuaLu/mdcom
def create_org_type(org_setting=None):
	if not org_setting:
		org_setting = OrganizationSetting() 
		org_setting.save()
	type_name = "Test Org Type"
	organization_type = OrganizationType(name=type_name, organization_setting=org_setting)
	# force id for test - MySQL UT's don't re-use ids after cleanup 
	organization_type.id = RESERVED_ORGANIZATION_TYPE_ID_PRACTICE
	# TODO: issue 2030, reserved id's is a hazardous approach, the UT's 
	# were working with SQLlite but not with MySQL, DB engines recycle
	# id's differently and we should not rely on reserved id fields.  This 
	# should be addressed in a separate Redmine as model changes may occur.
	organization_type.save()
	return organization_type
示例#3
0
文件: utils.py 项目: cnzhuran/mdcom
def create_org_type(org_setting=None):
    if not org_setting:
        org_setting = OrganizationSetting()
        org_setting.save()
    type_name = "Test Org Type"
    organization_type = OrganizationType(name=type_name,
                                         organization_setting=org_setting)
    # force id for test - MySQL UT's don't re-use ids after cleanup
    organization_type.id = RESERVED_ORGANIZATION_TYPE_ID_PRACTICE
    # TODO: issue 2030, reserved id's is a hazardous approach, the UT's
    # were working with SQLlite but not with MySQL, DB engines recycle
    # id's differently and we should not rely on reserved id fields.  This
    # should be addressed in a separate Redmine as model changes may occur.
    organization_type.save()
    return organization_type
示例#4
0
文件: utils.py 项目: cnzhuran/mdcom
def create_multiple_organization_types(parent_type, num=10, is_public=True):
	sub_types = []
	OrganizationType.objects.all().delete()
	org_setting = OrganizationSetting()
	org_setting.save()
	for i in xrange(num):
		type_name = "".join(["Test Org Type2_", str(i)])
		_org_type = OrganizationType(name=type_name, 
			organization_setting=org_setting, is_public=is_public)
		_org_type.id = i + 1
		# TODO: issue 2030, reserved id's is a hazardous approach, the UT's 
		# were working with SQLlite but not with MySQL, DB engines recycle
		# id's differently and we should not rely on reserved id fields.  This 
		# should be addressed in a separate Redmine as model changes may occur.
		_org_type.save()
		sub_types.append(_org_type)
		OrganizationTypeSubs.objects.create(from_organizationtype=parent_type, 
			to_organizationtype=_org_type)
	return sub_types