7
7
8
8
class SalesInvoiceProductLine
9
9
{
10
- const PRODUCT_IDENTIFIER_TYPE_CUSTOMER = 'customer ' ;
11
- const PRODUCT_IDENTIFIER_TYPE_NETVISOR = 'netvisor ' ;
12
- const UNIT_PRICE_TYPE_WITH_VAT = 'gross ' ;
13
- const UNIT_PRICE_TYPE_WITHOUT_VAT = 'net ' ;
10
+ public const PRODUCT_IDENTIFIER_TYPE_CUSTOMER = 'customer ' ;
11
+ public const PRODUCT_IDENTIFIER_TYPE_NETVISOR = 'netvisor ' ;
12
+ public const UNIT_PRICE_TYPE_WITH_VAT = 'gross ' ;
13
+ public const UNIT_PRICE_TYPE_WITHOUT_VAT = 'net ' ;
14
+ public const VAT_CODE_KOMY = 'KOMY ' ;
15
+ public const VAT_CODE_NONE = 'NONE ' ;
14
16
15
17
private $ productIdentifier ;
16
18
private $ productName ;
@@ -50,7 +52,10 @@ public function __construct(
50
52
$ productUnitPrice , array ('type ' => self ::UNIT_PRICE_TYPE_WITHOUT_VAT )
51
53
);
52
54
53
- $ this ->productVatPercentage = new AttributeElement ($ productVatPercentage , array ('vatcode ' => 'KOMY ' )); // TODO: different values.
55
+ $ this ->productVatPercentage = new AttributeElement (
56
+ $ productVatPercentage , array ('vatcode ' => static ::VAT_CODE_KOMY )
57
+ );
58
+
54
59
$ this ->salesInvoiceProductLineQuantity = $ salesInvoiceProductLineQuantity ;
55
60
}
56
61
@@ -66,8 +71,7 @@ public function addDimension($name, $item)
66
71
}
67
72
68
73
/**
69
- * @param string $name
70
- * @param string $item
74
+ * @param string $type
71
75
* @return self
72
76
*/
73
77
public function setProductIdentiefierType ($ type )
@@ -77,8 +81,7 @@ public function setProductIdentiefierType($type)
77
81
}
78
82
79
83
/**
80
- * @param string $name
81
- * @param string $item
84
+ * @param string $type
82
85
* @return self
83
86
*/
84
87
public function setUnitPriceType ($ type )
@@ -106,4 +109,14 @@ public function setAccountingAccount($account)
106
109
$ this ->accountingaccountsuggestion = $ account ;
107
110
return $ this ;
108
111
}
112
+
113
+ /**
114
+ * @param string $code
115
+ * @return self
116
+ */
117
+ public function setVatCode ($ code )
118
+ {
119
+ $ this ->productVatPercentage ->setAttribute ('vatcode ' , $ code );
120
+ return $ this ;
121
+ }
109
122
}
0 commit comments