mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			389 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			389 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import addressStub from '@/scripts/admin/stub/address.js'
 | 
						|
 | 
						|
export default function () {
 | 
						|
  return {
 | 
						|
    name: '',
 | 
						|
    contact_name: '',
 | 
						|
    email: '',
 | 
						|
    phone: null,
 | 
						|
    password: '',
 | 
						|
    confirm_password:'',
 | 
						|
    currency_id: null,
 | 
						|
    website: null,
 | 
						|
    billing: { ...addressStub },
 | 
						|
    shipping: { ...addressStub },
 | 
						|
    customFields: [],
 | 
						|
    fields: [],
 | 
						|
    enable_portal: false,
 | 
						|
  }
 | 
						|
}
 |