37 lines
		
	
	
		
			915 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			915 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
 | |
| # License: GNU General Public License v3. See license.txt
 | |
| 
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| import frappe
 | |
| 
 | |
| def create_test_contact_and_address():
 | |
| 	frappe.db.sql('delete from tabContact')
 | |
| 	frappe.db.sql('delete from tabAddress')
 | |
| 	frappe.db.sql('delete from `tabDynamic Link`')
 | |
| 
 | |
| 	frappe.get_doc(dict(
 | |
| 		doctype='Address',
 | |
| 		address_title='_Test Address for Customer',
 | |
| 		address_type='Office',
 | |
| 		address_line1='Station Road',
 | |
| 		city='_Test City',
 | |
| 		state='Test State',
 | |
| 		country='India',
 | |
| 		links = [dict(
 | |
| 			link_doctype='Customer',
 | |
| 			link_name='_Test Customer'
 | |
| 		)]
 | |
| 	)).insert()
 | |
| 
 | |
| 	frappe.get_doc(dict(
 | |
| 		doctype='Contact',
 | |
| 		email_id='test_contact_customer@example.com',
 | |
| 		phone='+91 0000000000',
 | |
| 		first_name='_Test Contact for _Test Customer',
 | |
| 		links = [dict(
 | |
| 			link_doctype='Customer',
 | |
| 			link_name='_Test Customer'
 | |
| 		)]
 | |
| 	)).insert()
 |