Skip to content

Commit eee888d

Browse files
author
Petteri Hakala
committed
Set vatcode and minor CS fixes
1 parent 8544a56 commit eee888d

File tree

2 files changed

+54
-9
lines changed

2 files changed

+54
-9
lines changed

library/Xi/Netvisor/Resource/Xml/SalesInvoiceProductLine.php

+22-9
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77

88
class SalesInvoiceProductLine
99
{
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';
1416

1517
private $productIdentifier;
1618
private $productName;
@@ -50,7 +52,10 @@ public function __construct(
5052
$productUnitPrice, array('type' => self::UNIT_PRICE_TYPE_WITHOUT_VAT)
5153
);
5254

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+
5459
$this->salesInvoiceProductLineQuantity = $salesInvoiceProductLineQuantity;
5560
}
5661

@@ -66,8 +71,7 @@ public function addDimension($name, $item)
6671
}
6772

6873
/**
69-
* @param string $name
70-
* @param string $item
74+
* @param string $type
7175
* @return self
7276
*/
7377
public function setProductIdentiefierType($type)
@@ -77,8 +81,7 @@ public function setProductIdentiefierType($type)
7781
}
7882

7983
/**
80-
* @param string $name
81-
* @param string $item
84+
* @param string $type
8285
* @return self
8386
*/
8487
public function setUnitPriceType($type)
@@ -106,4 +109,14 @@ public function setAccountingAccount($account)
106109
$this->accountingaccountsuggestion = $account;
107110
return $this;
108111
}
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+
}
109122
}

tests/Xi/Netvisor/Resource/Xml/SalesInvoiceProductLineTest.php

+32
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,36 @@ public function testSetAccountingAccount()
142142

143143
$this->assertXmlContainsTagWithValue('accountingaccountsuggestion', $account, $xml);
144144
}
145+
146+
/**
147+
* @dataProvider setVatCodeProvider
148+
*/
149+
public function testSetVatCode($code)
150+
{
151+
// Default
152+
$xml = $this->toXml($this->invoiceProductLine);
153+
$this->assertXmlContainsTagWithAttributes(
154+
'productvatpercentage',
155+
array('vatcode' => SalesInvoiceProductLine::VAT_CODE_KOMY),
156+
$xml
157+
);
158+
159+
// Setted value
160+
$this->invoiceProductLine->setVatCode($code);
161+
$xml = $this->toXml($this->invoiceProductLine);
162+
163+
$this->assertXmlContainsTagWithAttributes(
164+
'productvatpercentage',
165+
array('vatcode' => $code),
166+
$xml
167+
);
168+
}
169+
170+
public function setVatCodeProvider()
171+
{
172+
return [
173+
[SalesInvoiceProductLine::VAT_CODE_KOMY],
174+
[SalesInvoiceProductLine::VAT_CODE_NONE],
175+
];
176+
}
145177
}

0 commit comments

Comments
 (0)