mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
19 lines
283 B
JavaScript
19 lines
283 B
JavaScript
export default {
|
|
estimate_id: null,
|
|
item_id: null,
|
|
name: '',
|
|
title: '',
|
|
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: []
|
|
}
|