Skip to content

Commit a4835c2

Browse files
authored
Merge pull request #53 from jdaehne/patch-2
Fix missing unit in EstimateItemEntity
2 parents 6cdf22e + ac082f3 commit a4835c2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Estimate/EstimateItemEntity.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ class EstimateItemEntity
1313

1414
public $quantity;
1515

16+
public $unit;
17+
1618
public $unitPrice;
1719

1820
public $vatPercent;
@@ -32,6 +34,7 @@ class EstimateItemEntity
3234
'ARTICLE_NUMBER' => 'articleNumber',
3335
'DESCRIPTION' => 'description',
3436
'QUANTITY' => 'quantity',
37+
'UNIT' => 'unit',
3538
'UNIT_PRICE' => 'unitPrice',
3639
'VAT_PERCENT' => 'vatPercent',
3740
'VAT_VALUE' => 'vatValue',
@@ -46,6 +49,7 @@ class EstimateItemEntity
4649
'articleNumber' => 'ARTICLE_NUMBER',
4750
'description' => 'DESCRIPTION',
4851
'quantity' => 'QUANTITY',
52+
'unit' => 'UNIT',
4953
'unitPrice' => 'UNIT_PRICE',
5054
'vatPercent' => 'VAT_PERCENT',
5155
'vatValue' => 'VAT_VALUE',

0 commit comments

Comments
 (0)