mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			339 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			339 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import moment from 'moment'
 | 
						|
 | 
						|
export default {
 | 
						|
  expense_category_id: null,
 | 
						|
  expense_date: moment().format('YYYY-MM-DD'),
 | 
						|
  amount: 100,
 | 
						|
  notes: '',
 | 
						|
  attachment_receipt: null,
 | 
						|
  customer_id: '',
 | 
						|
  currency_id: '',
 | 
						|
  payment_method_id: '',
 | 
						|
  receiptFiles: [],
 | 
						|
  customFields: [],
 | 
						|
  fields: [],
 | 
						|
  in_use: false,
 | 
						|
  selectedCurrency: null
 | 
						|
}
 |