mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
export default {
|
|
maxPayableAmount: Number.MAX_SAFE_INTEGER,
|
|
selectedCustomer: '',
|
|
currency: null,
|
|
currency_id: '',
|
|
customer_id: '',
|
|
payment_number: '',
|
|
payment_date: '',
|
|
amount: 0,
|
|
invoice_id: '',
|
|
notes: '',
|
|
payment_method_id: '',
|
|
customFields: [],
|
|
fields: []
|
|
}
|