EBoekhouden_Export - Version 4.1.17

Version Notes

Added 21% VAT percentage

Download this release

Release Info

Developer Ronald Kas
Extension EBoekhouden_Export
Version 4.1.17
Comparing to
See all releases


Code changes from version 4.1.16 to 4.1.17

app/code/community/Eboekhouden/Export/Model/Tax/Attribute/Ebtaxcode.php CHANGED
@@ -1,44 +1,45 @@
1
- <?php
2
-
3
- class Eboekhouden_Export_Model_Tax_Attribute_Ebtaxcode extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
4
- {
5
- public function getOptionArray()
6
- {
7
- $aOptions = array();
8
- $aOptions['HOOG_VERK'] = 'BTW Hoog 19%';
9
- $aOptions['LAAG_VERK'] = 'BTW Laag 6%';
10
- $aOptions['VERL_VERK'] = 'BTW Verlegd';
11
- $aOptions['BU_EU_VERK'] = 'Levering naar buiten de EU 0%';
12
- $aOptions['BI_EU_VERK'] = 'Goederen naar binnen de EU 0%';
13
- //$aOptions['BI_EU_VERK_D'] = 'Diensten naar binnen de EU 0%';
14
- $aOptions['AFST_VERK'] = 'Afstandsverkopen binnen EU 0%';
15
- $aOptions['GEEN'] = 'Geen BTW van toepassing';
16
- return $aOptions;
17
- }
18
-
19
- /**
20
- * Retrieve All options
21
- *
22
- * @return array
23
- */
24
- public function getAllOptions()
25
- {
26
- if (!$this->_options)
27
- {
28
- $aOptions = $this->getOptionArray();
29
-
30
- $this->_options = array();
31
- foreach ($aOptions as $sKey => $sValue)
32
- {
33
- $aOption = array();
34
- $aOption['value'] = $sKey;
35
- $aOption['label'] = $sValue; # . ' ---- '.$sKey;
36
- $this->_options[] = $aOption;
37
- }
38
- }
39
- return $this->_options;
40
- }
41
-
42
- }
43
-
 
44
  ?>
1
+ <?php
2
+
3
+ class Eboekhouden_Export_Model_Tax_Attribute_Ebtaxcode extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
4
+ {
5
+ public function getOptionArray()
6
+ {
7
+ $aOptions = array();
8
+ $aOptions['HOOG_VERK_21'] = 'BTW Hoog 21%';
9
+ $aOptions['HOOG_VERK'] = 'BTW Hoog 19%';
10
+ $aOptions['LAAG_VERK'] = 'BTW Laag 6%';
11
+ $aOptions['VERL_VERK'] = 'BTW Verlegd';
12
+ $aOptions['BU_EU_VERK'] = 'Levering naar buiten de EU 0%';
13
+ $aOptions['BI_EU_VERK'] = 'Goederen naar binnen de EU 0%';
14
+ //$aOptions['BI_EU_VERK_D'] = 'Diensten naar binnen de EU 0%';
15
+ $aOptions['AFST_VERK'] = 'Afstandsverkopen binnen EU 0%';
16
+ $aOptions['GEEN'] = 'Geen BTW van toepassing';
17
+ return $aOptions;
18
+ }
19
+
20
+ /**
21
+ * Retrieve All options
22
+ *
23
+ * @return array
24
+ */
25
+ public function getAllOptions()
26
+ {
27
+ if (!$this->_options)
28
+ {
29
+ $aOptions = $this->getOptionArray();
30
+
31
+ $this->_options = array();
32
+ foreach ($aOptions as $sKey => $sValue)
33
+ {
34
+ $aOption = array();
35
+ $aOption['value'] = $sKey;
36
+ $aOption['label'] = $sValue; # . ' ---- '.$sKey;
37
+ $this->_options[] = $aOption;
38
+ }
39
+ }
40
+ return $this->_options;
41
+ }
42
+
43
+ }
44
+
45
  ?>
app/code/community/Eboekhouden/Export/etc/config.xml CHANGED
@@ -1,174 +1,174 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * NOTICE OF LICENSE
5
- *
6
- * The MIT License
7
- *
8
- * Copyright (c) 2012 e-Boekhouden.nl
9
- *
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- *
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- *
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- * THE SOFTWARE.
27
- *
28
- * @package Eboekhouden_Export
29
- * @copyright Copyright (c) 2012 e-Boekhouden.nl
30
- * @license http://opensource.org/licenses/mit-license.php The MIT License
31
- */
32
- -->
33
- <config>
34
-
35
- <modules>
36
- <Eboekhouden_Export>
37
- <!-- When changing version: Don't forget to rename the mysql4-install script in sql/eboekhouden_setup -->
38
- <version>4.1.16</version>
39
- </Eboekhouden_Export>
40
- </modules>
41
-
42
- <global>
43
-
44
- <models>
45
- <Eboekhouden_Export>
46
- <class>Eboekhouden_Export_Model</class>
47
- </Eboekhouden_Export>
48
- </models>
49
-
50
- <helpers>
51
- <Eboekhouden_Export>
52
- <class>Eboekhouden_Export_Helper</class>
53
- </Eboekhouden_Export>
54
- </helpers>
55
-
56
- <blocks>
57
- <Eboekhouden_Export>
58
- <class>Eboekhouden_Export_Block</class>
59
- </Eboekhouden_Export>
60
- <adminhtml>
61
- <rewrite>
62
- <sales_order_grid>Eboekhouden_Export_Block_Sales_Order_Grid</sales_order_grid>
63
- <sales_invoice_grid>Eboekhouden_Export_Block_Sales_Invoice_Grid</sales_invoice_grid>
64
- <sales_creditmemo_grid>Eboekhouden_Export_Block_Sales_Creditmemo_Grid</sales_creditmemo_grid>
65
- <tax_rate_grid>Eboekhouden_Export_Block_Tax_Rate_Grid</tax_rate_grid>
66
- <tax_rate_form>Eboekhouden_Export_Block_Tax_Rate_Form</tax_rate_form>
67
- </rewrite>
68
- </adminhtml>
69
- </blocks>
70
-
71
- <resources>
72
- <eboekhouden_setup>
73
- <setup>
74
- <module>Eboekhouden_Export</module>
75
- </setup>
76
- <connection>
77
- <use>core_setup</use>
78
- </connection>
79
- </eboekhouden_setup>
80
-
81
- <eboekhouden_write>
82
- <connection>
83
- <use>core_write</use>
84
- </connection>
85
- </eboekhouden_write>
86
- <eboekhouden_read>
87
- <connection>
88
- <use>core_read</use>
89
- </connection>
90
- </eboekhouden_read>
91
- </resources>
92
-
93
- </global>
94
-
95
- <admin>
96
- <routers>
97
- <Eboekhouden_Export>
98
- <use>admin</use>
99
- <args>
100
- <module>Eboekhouden_Export</module>
101
- <frontName>eboekhouden</frontName>
102
- </args>
103
- </Eboekhouden_Export>
104
- </routers>
105
- </admin>
106
-
107
- <adminhtml>
108
- <menu>
109
- <system>
110
- <children>
111
- <attributes translate="title" module="Eboekhouden_Export">
112
- <title>e-Boekhouden.nl</title>
113
- <sort_order>90</sort_order>
114
- <children>
115
- <eboekhouden_reset_mutatie_nummers translate="title" module="Eboekhouden_Export">
116
- <title>Reset alle mutatie nummers</title>
117
- <action>eboekhouden/mutatie/reset_all</action>
118
- <sort_order>10</sort_order>
119
- </eboekhouden_reset_mutatie_nummers>
120
- <eboekhouden_config translate="title" module="Eboekhouden_Export">
121
- <title>Configuratie</title>
122
- <sort_order>100</sort_order>
123
- <action>adminhtml/system_config/edit/section/eboekhouden</action>
124
- </eboekhouden_config>
125
- </children>
126
- </attributes>
127
- </children>
128
- </system>
129
- </menu>
130
- <translate>
131
- <modules>
132
- <Eboekhouden_Export>
133
- <files>
134
- <default>Eboekhouden_Export.csv</default>
135
- </files>
136
- </Eboekhouden_Export>
137
- </modules>
138
- </translate>
139
- <acl>
140
- <resources>
141
- <admin>
142
- <children>
143
- <system>
144
- <children>
145
- <config>
146
- <children>
147
- <eboekhouden translate="title" module="Eboekhouden_Export">
148
- <title>e-Boekhouden.nl Instellingen</title>
149
- </eboekhouden>
150
- </children>
151
- </config>
152
- </children>
153
- </system>
154
- </children>
155
- </admin>
156
- </resources>
157
- </acl>
158
- </adminhtml>
159
-
160
- <default>
161
- <eboekhouden>
162
- <settings>
163
- <showxml>0</showxml>
164
- <shippingledgeraccount>8000</shippingledgeraccount>
165
- </settings>
166
- <vatcodes>
167
- <vatcode_HOOG_VERK>=NOT-USED=</vatcode_HOOG_VERK>
168
- <vatcode_LAAG_VERK>=NOT-USED=</vatcode_LAAG_VERK>
169
- <vatcode_GEEN>=NOT-USED=</vatcode_GEEN>
170
- </vatcodes>
171
- </eboekhouden>
172
- </default>
173
-
174
- </config>
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * The MIT License
7
+ *
8
+ * Copyright (c) 2012 e-Boekhouden.nl
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
+ * THE SOFTWARE.
27
+ *
28
+ * @package Eboekhouden_Export
29
+ * @copyright Copyright (c) 2012 e-Boekhouden.nl
30
+ * @license http://opensource.org/licenses/mit-license.php The MIT License
31
+ */
32
+ -->
33
+ <config>
34
+
35
+ <modules>
36
+ <Eboekhouden_Export>
37
+ <!-- When changing version: Don't forget to rename the mysql4-install script in sql/eboekhouden_setup -->
38
+ <version>4.1.17</version>
39
+ </Eboekhouden_Export>
40
+ </modules>
41
+
42
+ <global>
43
+
44
+ <models>
45
+ <Eboekhouden_Export>
46
+ <class>Eboekhouden_Export_Model</class>
47
+ </Eboekhouden_Export>
48
+ </models>
49
+
50
+ <helpers>
51
+ <Eboekhouden_Export>
52
+ <class>Eboekhouden_Export_Helper</class>
53
+ </Eboekhouden_Export>
54
+ </helpers>
55
+
56
+ <blocks>
57
+ <Eboekhouden_Export>
58
+ <class>Eboekhouden_Export_Block</class>
59
+ </Eboekhouden_Export>
60
+ <adminhtml>
61
+ <rewrite>
62
+ <sales_order_grid>Eboekhouden_Export_Block_Sales_Order_Grid</sales_order_grid>
63
+ <sales_invoice_grid>Eboekhouden_Export_Block_Sales_Invoice_Grid</sales_invoice_grid>
64
+ <sales_creditmemo_grid>Eboekhouden_Export_Block_Sales_Creditmemo_Grid</sales_creditmemo_grid>
65
+ <tax_rate_grid>Eboekhouden_Export_Block_Tax_Rate_Grid</tax_rate_grid>
66
+ <tax_rate_form>Eboekhouden_Export_Block_Tax_Rate_Form</tax_rate_form>
67
+ </rewrite>
68
+ </adminhtml>
69
+ </blocks>
70
+
71
+ <resources>
72
+ <eboekhouden_setup>
73
+ <setup>
74
+ <module>Eboekhouden_Export</module>
75
+ </setup>
76
+ <connection>
77
+ <use>core_setup</use>
78
+ </connection>
79
+ </eboekhouden_setup>
80
+
81
+ <eboekhouden_write>
82
+ <connection>
83
+ <use>core_write</use>
84
+ </connection>
85
+ </eboekhouden_write>
86
+ <eboekhouden_read>
87
+ <connection>
88
+ <use>core_read</use>
89
+ </connection>
90
+ </eboekhouden_read>
91
+ </resources>
92
+
93
+ </global>
94
+
95
+ <admin>
96
+ <routers>
97
+ <Eboekhouden_Export>
98
+ <use>admin</use>
99
+ <args>
100
+ <module>Eboekhouden_Export</module>
101
+ <frontName>eboekhouden</frontName>
102
+ </args>
103
+ </Eboekhouden_Export>
104
+ </routers>
105
+ </admin>
106
+
107
+ <adminhtml>
108
+ <menu>
109
+ <system>
110
+ <children>
111
+ <attributes translate="title" module="Eboekhouden_Export">
112
+ <title>e-Boekhouden.nl</title>
113
+ <sort_order>90</sort_order>
114
+ <children>
115
+ <eboekhouden_reset_mutatie_nummers translate="title" module="Eboekhouden_Export">
116
+ <title>Reset alle mutatie nummers</title>
117
+ <action>eboekhouden/mutatie/reset_all</action>
118
+ <sort_order>10</sort_order>
119
+ </eboekhouden_reset_mutatie_nummers>
120
+ <eboekhouden_config translate="title" module="Eboekhouden_Export">
121
+ <title>Configuratie</title>
122
+ <sort_order>100</sort_order>
123
+ <action>adminhtml/system_config/edit/section/eboekhouden</action>
124
+ </eboekhouden_config>
125
+ </children>
126
+ </attributes>
127
+ </children>
128
+ </system>
129
+ </menu>
130
+ <translate>
131
+ <modules>
132
+ <Eboekhouden_Export>
133
+ <files>
134
+ <default>Eboekhouden_Export.csv</default>
135
+ </files>
136
+ </Eboekhouden_Export>
137
+ </modules>
138
+ </translate>
139
+ <acl>
140
+ <resources>
141
+ <admin>
142
+ <children>
143
+ <system>
144
+ <children>
145
+ <config>
146
+ <children>
147
+ <eboekhouden translate="title" module="Eboekhouden_Export">
148
+ <title>e-Boekhouden.nl Instellingen</title>
149
+ </eboekhouden>
150
+ </children>
151
+ </config>
152
+ </children>
153
+ </system>
154
+ </children>
155
+ </admin>
156
+ </resources>
157
+ </acl>
158
+ </adminhtml>
159
+
160
+ <default>
161
+ <eboekhouden>
162
+ <settings>
163
+ <showxml>0</showxml>
164
+ <shippingledgeraccount>8000</shippingledgeraccount>
165
+ </settings>
166
+ <vatcodes>
167
+ <vatcode_HOOG_VERK>=NOT-USED=</vatcode_HOOG_VERK>
168
+ <vatcode_LAAG_VERK>=NOT-USED=</vatcode_LAAG_VERK>
169
+ <vatcode_GEEN>=NOT-USED=</vatcode_GEEN>
170
+ </vatcodes>
171
+ </eboekhouden>
172
+ </default>
173
+
174
+ </config>
app/code/community/Eboekhouden/Export/sql/eboekhouden_setup/{mysql4-install-4.1.16.php → mysql4-install-4.1.17.php} RENAMED
File without changes
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>EBoekhouden_Export</name>
4
- <version>4.1.16</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/mit-license.php">MIT</license>
7
  <channel>community</channel>
@@ -31,11 +31,11 @@ Meer informatie over deze koppeling met Magento kunt u terugvinden als u ingelog
31
  -----------------------------------------------------&#xD;
32
  Info about uninstalling can be found in &#xD;
33
  app/code/community/Eboekhouden/Export/sql/HOWTO_UnInstall.sql</description>
34
- <notes>Installer bugfix.</notes>
35
- <authors><author><name>Ronald Kas</name><user>auto-converted</user><email>info@e-boekhouden.nl</email></author><author><name>Jeroen Vermeulen</name><user>auto-converted</user><email>info@jeroenvermeulen.eu</email></author></authors>
36
- <date>2012-08-22</date>
37
- <time>19:47:09</time>
38
- <contents><target name="magecommunity"><dir name="Eboekhouden"><dir name="Export"><dir name="Block"><dir name="Config"><dir name="Info"><file name="Version.php" hash="e8957685d4f906457d1eb45853702e1f"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="5d323b6842ac429c346fc1a00d8b38ee"/></dir><dir name="Invoice"><file name="Grid.php" hash="264f95548e6d5dd501a4c613fb38b3a8"/></dir><dir name="Order"><file name="Grid.php" hash="a1a9fe52f445f7f40e553b4c7f6dce99"/></dir></dir><dir name="Tax"><dir name="Rate"><dir name="Grid"><dir name="Renderer"><file name="Ebvatcode.php" hash="d34d2edd9593e4d2c23a20c8e0864c95"/></dir></dir><file name="Form.php" hash="ea36d8fde2272e24f5187c0bfd9deb76"/><file name="Grid.php" hash="ca50f669ccd75b1365d5937d0390fe3e"/></dir></dir></dir><dir name="Helper"><file name="AccountNumber.php" hash="599c8af6b93e2206c631aa79e9ba5dd4"/><file name="Data.php" hash="649880c1071e2453ae8536e89349527c"/></dir><dir name="Model"><dir name="Config"><file name="Costcenter.php" hash="7f280ef51e003de0bf80f0ab2b9685f0"/><file name="Ledgeraccount.php" hash="318e87f5932d4bd898d1552d27c50bc7"/><file name="Taxcalculationrate.php" hash="9871b70f56e8fee7cd3364bc8b3de2c5"/></dir><dir name="Export"><file name="Sales.php" hash="0d9ba76cd85ea7b408c774ca20af25ec"/></dir><dir name="Import"><file name="Costcenter.php" hash="593b1a269583073098f5c1f52002058f"/><file name="Ebcode.php" hash="4127f3460ccb06e800f88baf86a58008"/><file name="Gbcodes.php" hash="d513db427803e3c079f6577b7b240219"/></dir><dir name="Product"><dir name="Attribute"><file name="Costcenter.php" hash="3b1e02791a8ff9782d18f14afdc90221"/><file name="Ledgeraccount.php" hash="132f16b2407b579605cb24de6ea5b6ab"/></dir></dir><dir name="Tax"><dir name="Attribute"><file name="Ebtaxcode.php" hash="493372a121ba4490b4f3310373cc3e22"/></dir></dir><file name="Info.php" hash="c8dbbbaeead14393cb36c0eec5706882"/></dir><dir name="controllers"><dir name="Catalog"><file name="ProductController.php" hash="b19ff72404a75fcb1d89da436d3c68e9"/></dir><dir name="Export"><file name="SaleController.php" hash="c4f64b12685ad9558dff62f26ac7e6f2"/></dir><file name="MutatieController.php" hash="1634fcb7298ef44b369f9ac9fbdf87b4"/></dir><dir name="etc"><file name="config.xml" hash="57d2d88c630bd4853e5b65d5520001ed"/><file name="system.xml" hash="8f9f3db645acf4e736d80e4f50510428"/></dir><dir name="sql"><dir name="eboekhouden_setup"><dir name="includes"><file name="install-current.php" hash="f603e6d7289c9791d5357093f403313a"/></dir><file name="mysql4-install-4.1.16.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.0.2-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.0.7-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.1.5-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.2.0-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.2.2-4.0.php" hash="e0ce8dbd2e1de28479e90505abbc6297"/><file name="mysql4-upgrade-1.2.6-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.3-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.4-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.5-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.6-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-2.0-4.0.php" hash="b1b333b3815368af7d599e5126eca26e"/><file name="mysql4-upgrade-3.0-4.0.php" hash="b1b333b3815368af7d599e5126eca26e"/></dir><file name="HOWTO_UnInstall.sql" hash="691131453816d890630a6d3a21b6c7bf"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eboekhouden_Export.xml" hash="9ced450b54f7225a83049f6bff3adbae"/></dir></target></contents>
39
  <compatible/>
40
- <dependencies/>
41
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>EBoekhouden_Export</name>
4
+ <version>4.1.17</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/mit-license.php">MIT</license>
7
  <channel>community</channel>
31
  -----------------------------------------------------&#xD;
32
  Info about uninstalling can be found in &#xD;
33
  app/code/community/Eboekhouden/Export/sql/HOWTO_UnInstall.sql</description>
34
+ <notes>Added 21% VAT percentage</notes>
35
+ <authors><author><name>Ronald Kas</name><user>eboekhoudennl</user><email>info@e-boekhouden.nl</email></author><author><name>Jeroen Vermeulen</name><user>jeroenvermeulen</user><email>info@jeroenvermeulen.eu</email></author></authors>
36
+ <date>2012-09-24</date>
37
+ <time>08:43:50</time>
38
+ <contents><target name="magecommunity"><dir name="Eboekhouden"><dir name="Export"><dir name="Block"><dir name="Config"><dir name="Info"><file name="Version.php" hash="e8957685d4f906457d1eb45853702e1f"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="5d323b6842ac429c346fc1a00d8b38ee"/></dir><dir name="Invoice"><file name="Grid.php" hash="264f95548e6d5dd501a4c613fb38b3a8"/></dir><dir name="Order"><file name="Grid.php" hash="a1a9fe52f445f7f40e553b4c7f6dce99"/></dir></dir><dir name="Tax"><dir name="Rate"><file name="Form.php" hash="ea36d8fde2272e24f5187c0bfd9deb76"/><dir name="Grid"><dir name="Renderer"><file name="Ebvatcode.php" hash="d34d2edd9593e4d2c23a20c8e0864c95"/></dir></dir><file name="Grid.php" hash="ca50f669ccd75b1365d5937d0390fe3e"/></dir></dir></dir><dir name="Helper"><file name="AccountNumber.php" hash="599c8af6b93e2206c631aa79e9ba5dd4"/><file name="Data.php" hash="649880c1071e2453ae8536e89349527c"/></dir><dir name="Model"><dir name="Config"><file name="Costcenter.php" hash="7f280ef51e003de0bf80f0ab2b9685f0"/><file name="Ledgeraccount.php" hash="318e87f5932d4bd898d1552d27c50bc7"/><file name="Taxcalculationrate.php" hash="9871b70f56e8fee7cd3364bc8b3de2c5"/></dir><dir name="Export"><file name="Sales.php" hash="0d9ba76cd85ea7b408c774ca20af25ec"/></dir><dir name="Import"><file name="Costcenter.php" hash="593b1a269583073098f5c1f52002058f"/><file name="Ebcode.php" hash="4127f3460ccb06e800f88baf86a58008"/><file name="Gbcodes.php" hash="d513db427803e3c079f6577b7b240219"/></dir><file name="Info.php" hash="c8dbbbaeead14393cb36c0eec5706882"/><dir name="Product"><dir name="Attribute"><file name="Costcenter.php" hash="3b1e02791a8ff9782d18f14afdc90221"/><file name="Ledgeraccount.php" hash="132f16b2407b579605cb24de6ea5b6ab"/></dir></dir><dir name="Tax"><dir name="Attribute"><file name="Ebtaxcode.php" hash="0b34f8d566896c3fbab02ddaabf55536"/></dir></dir></dir><dir name="controllers"><dir name="Catalog"><file name="ProductController.php" hash="b19ff72404a75fcb1d89da436d3c68e9"/></dir><dir name="Export"><file name="SaleController.php" hash="c4f64b12685ad9558dff62f26ac7e6f2"/></dir><file name="MutatieController.php" hash="1634fcb7298ef44b369f9ac9fbdf87b4"/></dir><dir name="etc"><file name="config.xml" hash="f2149c87d73e48cc4ec3b4ba9d867c6f"/><file name="system.xml" hash="8f9f3db645acf4e736d80e4f50510428"/></dir><dir name="sql"><file name="HOWTO_UnInstall.sql" hash="691131453816d890630a6d3a21b6c7bf"/><dir name="eboekhouden_setup"><dir name="includes"><file name="install-current.php" hash="f603e6d7289c9791d5357093f403313a"/></dir><file name="mysql4-install-4.1.17.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.0.2-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.0.7-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.1.5-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.2.0-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.2.2-4.0.php" hash="e0ce8dbd2e1de28479e90505abbc6297"/><file name="mysql4-upgrade-1.2.6-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.3-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.4-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.5-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-1.6-4.0.php" hash="8febe17420f3a5a2e99eb86605ab3dd3"/><file name="mysql4-upgrade-2.0-4.0.php" hash="b1b333b3815368af7d599e5126eca26e"/><file name="mysql4-upgrade-3.0-4.0.php" hash="b1b333b3815368af7d599e5126eca26e"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eboekhouden_Export.xml" hash="9ced450b54f7225a83049f6bff3adbae"/></dir></target></contents>
39
  <compatible/>
40
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
41
  </package>