We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6cdf22e + ac082f3 commit a4835c2Copy full SHA for a4835c2
src/Estimate/EstimateItemEntity.php
@@ -13,6 +13,8 @@ class EstimateItemEntity
13
14
public $quantity;
15
16
+ public $unit;
17
+
18
public $unitPrice;
19
20
public $vatPercent;
@@ -32,6 +34,7 @@ class EstimateItemEntity
32
34
'ARTICLE_NUMBER' => 'articleNumber',
33
35
'DESCRIPTION' => 'description',
36
'QUANTITY' => 'quantity',
37
+ 'UNIT' => 'unit',
38
'UNIT_PRICE' => 'unitPrice',
39
'VAT_PERCENT' => 'vatPercent',
40
'VAT_VALUE' => 'vatValue',
@@ -46,6 +49,7 @@ class EstimateItemEntity
46
49
'articleNumber' => 'ARTICLE_NUMBER',
47
50
'description' => 'DESCRIPTION',
48
51
'quantity' => 'QUANTITY',
52
+ 'unit' => 'UNIT',
53
'unitPrice' => 'UNIT_PRICE',
54
'vatPercent' => 'VAT_PERCENT',
55
'vatValue' => 'VAT_VALUE',
0 commit comments