add estimate & invoice item qty cast, build 201

This commit is contained in:
raishvaria
2019-12-04 17:08:36 +05:30
parent 887ad9a73d
commit 24637bff4a
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ class EstimateItem extends Model
'price' => 'integer',
'total' => 'integer',
'discount' => 'float',
'quantity' => 'float',
'discount_val' => 'integer',
'tax' => 'integer'
];

View File

@ -30,6 +30,7 @@ class InvoiceItem extends Model
'price' => 'integer',
'total' => 'integer',
'discount' => 'float',
'quantity' => 'float',
'discount_val' => 'integer',
'tax' => 'integer'
];