Skip to content

Commit db3421f

Browse files
committedAug 7, 2012
Added tax rates and products
1 parent c42a66c commit db3421f

File tree

142 files changed

+13405
-7875
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+13405
-7875
lines changed
 

‎ApiConnector.php

+2
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,8 @@ protected function getType(Domainmodel_Abstract $model) {
560560
'IncomingInvoice',
561561
'RecurringTemplate',
562562
'CurrentSession',
563+
'TaxRate',
564+
'Product',
563565
);
564566
foreach ($types as $type) {
565567
if ($model instanceof $type) {

‎Detail/Abstract.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ abstract class Detail_Abstract
2525
protected $price;
2626
protected $rowOrder;
2727
protected $tax;
28+
protected $taxRateId;
2829
protected $totalPriceExclTax;
2930
protected $totalPriceInclTax;
3031
protected $updatedAt;

0 commit comments

Comments
 (0)
Please sign in to comment.