mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 20:21:10 -04: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
 | |
| }
 |