mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
21 lines
349 B
JavaScript
21 lines
349 B
JavaScript
export default {
|
|
recurring_invoice_id: null,
|
|
item_id: null,
|
|
name: '',
|
|
title: '',
|
|
sales_tax_type: null,
|
|
sales_tax_address_type: null,
|
|
description: null,
|
|
quantity: 1,
|
|
price: 0,
|
|
discount_type: 'fixed',
|
|
discount_val: 0,
|
|
discount: 0,
|
|
total: 0,
|
|
totalTax: 0,
|
|
totalSimpleTax: 0,
|
|
totalCompoundTax: 0,
|
|
tax: 0,
|
|
taxes: [],
|
|
}
|