Skip to content

Commit

Permalink
[NN-573] Added vat20 and vat120 support (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Mavlyanov authored and gromovdmi committed Oct 30, 2018
1 parent baa27d9 commit 97c60a8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions app/code/community/Mygento/Kkm/Model/Source/Taxoption.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,23 @@ public function toOptionArray()
],
[
'value' => 'vat18',
'label' => Mage::helper('kkm')->__('vat18')
'label' => Mage::helper('kkm')->__('vat18 (deprecated)')
],
[
'value' => 'vat20',
'label' => Mage::helper('kkm')->__('vat20')
],
[
'value' => 'vat110',
'label' => Mage::helper('kkm')->__('vat110')
],
[
'value' => 'vat118',
'label' => Mage::helper('kkm')->__('vat118')
'label' => Mage::helper('kkm')->__('vat118 (deprecated)')
],
[
'value' => 'vat120',
'label' => Mage::helper('kkm')->__('vat120')
]
];
}
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Mygento/Kkm/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Mygento_Kkm>
<version>1.1.8</version>
<version>1.1.9</version>
</Mygento_Kkm>
</modules>
<frontend>
Expand Down

0 comments on commit 97c60a8

Please sign in to comment.