EBoekhouden_Export - Version 4.1.35

Version Notes

Fixed issue with discounts being added to payment fee totals

Download this release

Release Info

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


Code changes from version 4.1.32 to 4.1.35

app/code/community/Eboekhouden/Export/Helper/Data.php CHANGED
@@ -52,6 +52,7 @@ class Eboekhouden_Export_Helper_Data extends Mage_Core_Helper_Abstract
52
  $aSettings['sConGuid'] = trim(Mage::getStoreConfig('eboekhouden/connector/securitycode2', $mStore));
53
  $aSettings['sShipLedgerAcc'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/shippingledgeraccount', $mStore)) );
54
  $aSettings['sAdjustmentLedgerAcc'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/adjustmentledgeraccount', $mStore)) );
 
55
  $aSettings['sShipCostcenter'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/shippingcostcenter', $mStore)) );
56
  if ( empty($aSettings['sShipLedgerAcc']) )
57
  {
52
  $aSettings['sConGuid'] = trim(Mage::getStoreConfig('eboekhouden/connector/securitycode2', $mStore));
53
  $aSettings['sShipLedgerAcc'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/shippingledgeraccount', $mStore)) );
54
  $aSettings['sAdjustmentLedgerAcc'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/adjustmentledgeraccount', $mStore)) );
55
+ $aSettings['sPaymentFeeLedgerAcc'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/paymentfeeledgeraccount', $mStore)) );
56
  $aSettings['sShipCostcenter'] = intval( trim(Mage::getStoreConfig('eboekhouden/settings/shippingcostcenter', $mStore)) );
57
  if ( empty($aSettings['sShipLedgerAcc']) )
58
  {
app/code/community/Eboekhouden/Export/Model/Export/Sales.php CHANGED
@@ -299,10 +299,18 @@ class Eboekhouden_Export_Model_Export_Sales
299
  $aOrderItems = $oContainer->getItemsCollection();
300
  $fDiscountLeft = $oContainer->getBaseDiscountAmount();
301
 
 
 
 
 
302
  foreach ($aOrderItems as $oItem)
303
  /* @var $oItem Mage_Sales_Model_Order_Invoice_Item */
304
  {
305
  $fDbProductTaxAmount = $oItem->getBaseTaxAmount();
 
 
 
 
306
 
307
  $aWeeItems = $this->_oWeeeHelper->getApplied( $oItem );
308
  foreach ( $aWeeItems as $aWeeData )
@@ -375,6 +383,11 @@ class Eboekhouden_Export_Model_Export_Sales
375
  $fShipFactor = $oContainer->getBaseShippingAmount() / $fBaseShippingAmount;
376
  }
377
  }
 
 
 
 
 
378
  // Shipping & Handling cost, create a virtual order_item
379
  $oShippingItem = new Mage_Sales_Model_Order_Item();
380
  $oShippingItem->setStoreId($iStoreId);
@@ -407,10 +420,43 @@ class Eboekhouden_Export_Model_Export_Sales
407
 
408
  $sXml .= $this->_getItemXml($oContainer, $oAdjustmentItem);
409
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  $sXml .= '
411
  </MUTATIEREGELS>
412
  </MUTATIE>';
413
 
 
 
414
  $sPostAction = (!empty($iExistingMutatieNr)) ? 'ALTER_MUTATIE' : 'ADD_MUTATIE';
415
  list($sThisMutatieNr, $iThisExist, $sThisErrorMsg, $sThisInfoMsg) = $this->_postMutatieXml($sXml,
416
  $aSettings,
@@ -535,11 +581,9 @@ class Eboekhouden_Export_Model_Export_Sales
535
  {
536
  $iOrdersExist++;
537
  }
538
- else
539
- {
540
- $sErrorMsg .= Mage::helper('Eboekhouden_Export')->__('Fout %s: %s', $oData->ERROR->CODE,
541
- $oData->ERROR->DESCRIPTION) . "\n";
542
- }
543
  }
544
  elseif ('OK' == strval($oData->RESULT))
545
  {
@@ -704,6 +748,10 @@ class Eboekhouden_Export_Model_Export_Sales
704
  $iGbRekening = $aSettings['sAdjustmentLedgerAcc'];
705
  $sComment .= 'Adjustment';
706
  }
 
 
 
 
707
  else
708
  {
709
  $sProductCode = 'ID: ' . $sProductId;
@@ -1071,6 +1119,10 @@ class Eboekhouden_Export_Model_Export_Sales
1071
  {
1072
  $sType = 'adjustment';
1073
  }
 
 
 
 
1074
  elseif ( !empty($oOrderItem) )
1075
  {
1076
  $sType = $oOrderItem->getProductType();
299
  $aOrderItems = $oContainer->getItemsCollection();
300
  $fDiscountLeft = $oContainer->getBaseDiscountAmount();
301
 
302
+ $totalBaseAmountItems = 0;
303
+ $totalBaseAmountInclTaxItems = 0;
304
+ $totalBaseTaxItems = 0;
305
+
306
  foreach ($aOrderItems as $oItem)
307
  /* @var $oItem Mage_Sales_Model_Order_Invoice_Item */
308
  {
309
  $fDbProductTaxAmount = $oItem->getBaseTaxAmount();
310
+ //add to order totals
311
+ $totalBaseTaxItems += $fDbProductTaxAmount;
312
+ $totalBaseAmountItems += $oItem->getBaseRowTotal();
313
+ $totalBaseAmountInclTaxItems += $oItem->getBaseRowTotalInclTax();
314
 
315
  $aWeeItems = $this->_oWeeeHelper->getApplied( $oItem );
316
  foreach ( $aWeeItems as $aWeeData )
383
  $fShipFactor = $oContainer->getBaseShippingAmount() / $fBaseShippingAmount;
384
  }
385
  }
386
+ //add to order totals
387
+ $totalBaseTaxItems += $fShipFactor * $oContainer->getBaseShippingTaxAmount();
388
+ $totalBaseAmountItems += $fShipFactor * $oContainer->getBaseShippingAmount();
389
+ $totalBaseAmountInclTaxItems += $fShipFactor * $oContainer->getBaseShippingInclTax();
390
+
391
  // Shipping & Handling cost, create a virtual order_item
392
  $oShippingItem = new Mage_Sales_Model_Order_Item();
393
  $oShippingItem->setStoreId($iStoreId);
420
 
421
  $sXml .= $this->_getItemXml($oContainer, $oAdjustmentItem);
422
  }
423
+
424
+ if ($oContainer instanceof Mage_Sales_Model_Order_Invoice) {
425
+ //add additional fee price (in case invoice price is higher then itemprice + shipping)
426
+ $orderGrandTotal = round(floatval($oOrder->getGrandTotal()), 4);// + $oOrder->getDiscountInvoiced();
427
+
428
+
429
+
430
+ if (0.0001 < abs($orderGrandTotal - round($totalBaseAmountInclTaxItems, 4))) {
431
+
432
+
433
+ $orderSubtotal = round(floatval($oOrder->getSubtotal()) + floatval($oOrder->getBaseShippingAmount()), 4);
434
+ $orderTaxAmount = round(floatval($oOrder->getTaxAmount()), 4);
435
+
436
+ $feeRowTotal = round($totalBaseAmountItems, 4) - $orderSubtotal;
437
+ $feeRowTotalInclTax = round($totalBaseAmountInclTaxItems, 4) - $orderGrandTotal;
438
+ $feeTaxAmount = round($totalBaseTaxItems, 4) - $orderTaxAmount;
439
+
440
+
441
+ $feeItem = new Mage_Sales_Model_Order_Item();
442
+ $feeItem->setStoreId($iStoreId);
443
+ $feeItem->setProductId('payment_fee');
444
+ $feeItem->setBaseRowTotal($feeRowTotal);
445
+ $feeItem->setBaseRowTotalInclTax($feeRowTotalInclTax);
446
+ $feeItem->setBaseTaxAmount($feeTaxAmount);
447
+ $feeItem->setBaseDiscountAmount(0);
448
+
449
+
450
+ $sXml .= $this->_getItemXml($oContainer, $feeItem);
451
+ }
452
+ }
453
+
454
  $sXml .= '
455
  </MUTATIEREGELS>
456
  </MUTATIE>';
457
 
458
+
459
+
460
  $sPostAction = (!empty($iExistingMutatieNr)) ? 'ALTER_MUTATIE' : 'ADD_MUTATIE';
461
  list($sThisMutatieNr, $iThisExist, $sThisErrorMsg, $sThisInfoMsg) = $this->_postMutatieXml($sXml,
462
  $aSettings,
581
  {
582
  $iOrdersExist++;
583
  }
584
+
585
+ $sErrorMsg .= Mage::helper('Eboekhouden_Export')->__('Fout %s: %s', $oData->ERROR->CODE,
586
+ $oData->ERROR->DESCRIPTION) . "\n";
 
 
587
  }
588
  elseif ('OK' == strval($oData->RESULT))
589
  {
748
  $iGbRekening = $aSettings['sAdjustmentLedgerAcc'];
749
  $sComment .= 'Adjustment';
750
  }
751
+ else if ('payment_fee' == $sProductId) {
752
+ $iGbRekening = $aSettings['sPaymentFeeLedgerAcc'];
753
+ $sComment .= 'Payment fee';
754
+ }
755
  else
756
  {
757
  $sProductCode = 'ID: ' . $sProductId;
1119
  {
1120
  $sType = 'adjustment';
1121
  }
1122
+ elseif ('payment_fee' == $sProductId)
1123
+ {
1124
+ $sType = 'paymentfee';
1125
+ }
1126
  elseif ( !empty($oOrderItem) )
1127
  {
1128
  $sType = $oOrderItem->getProductType();
app/code/community/Eboekhouden/Export/etc/config.xml CHANGED
@@ -35,7 +35,7 @@
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.31</version>
39
  </Eboekhouden_Export>
40
  </modules>
41
 
@@ -162,6 +162,7 @@
162
  <settings>
163
  <showxml>0</showxml>
164
  <shippingledgeraccount>8000</shippingledgeraccount>
 
165
  </settings>
166
  <vatcodes>
167
  <vatcode_HOOG_VERK>=NOT-USED=</vatcode_HOOG_VERK>
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.35</version>
39
  </Eboekhouden_Export>
40
  </modules>
41
 
162
  <settings>
163
  <showxml>0</showxml>
164
  <shippingledgeraccount>8000</shippingledgeraccount>
165
+ <paymentfeeledgeraccount>8000</paymentfeeledgeraccount>
166
  </settings>
167
  <vatcodes>
168
  <vatcode_HOOG_VERK>=NOT-USED=</vatcode_HOOG_VERK>
app/code/community/Eboekhouden/Export/etc/system.xml CHANGED
@@ -120,6 +120,15 @@
120
  <show_in_store>1</show_in_store>
121
  <comment>Bij het aanmaken van een credit memo kun je een extra verrekening aangeven, voor die verrekening hebben we een tegenrekening nodig</comment>
122
  </adjustmentledgeraccount>
 
 
 
 
 
 
 
 
 
123
  </fields>
124
  </settings>
125
  <info>
120
  <show_in_store>1</show_in_store>
121
  <comment>Bij het aanmaken van een credit memo kun je een extra verrekening aangeven, voor die verrekening hebben we een tegenrekening nodig</comment>
122
  </adjustmentledgeraccount>
123
+ <paymentfeeledgeraccount translate="label">
124
+ <sort_order>260</sort_order>
125
+ <label>Grootboekrek. voor additionele betalingskosten</label>
126
+ <frontend_type>select</frontend_type>
127
+ <source_model>Eboekhouden_Export/config_ledgeraccount</source_model>
128
+ <show_in_default>1</show_in_default>
129
+ <show_in_website>1</show_in_website>
130
+ <show_in_store>1</show_in_store>
131
+ </paymentfeeledgeraccount>
132
  </fields>
133
  </settings>
134
  <info>
app/code/community/Eboekhouden/Export/sql/eboekhouden_setup/{mysql4-install-4.1.32.php → mysql4-install-4.1.35.php} RENAMED
File without changes
app/etc/modules/Eboekhouden_Export.xml CHANGED
@@ -13,10 +13,10 @@
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
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
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>EBoekhouden_Export</name>
4
- <version>4.1.32</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>Price for bundled product with fixed price was not sent through correctly</notes>
35
  <authors><author><name>Ronald Kas</name><user>eboekhoudennl</user><email>info@e-boekhouden.nl</email></author></authors>
36
- <date>2014-10-14</date>
37
- <time>12:34:30</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="9ffb5971e67503fcc07756a74aadb744"/></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="e53b1f55e29dc6483a3bdd449170e925"/></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="bac7aeffd33d6f33f1eccd7c597901ee"/><file name="system.xml" hash="a4cb1ca9aab1dd453c6c9d79282bff9b"/></dir><dir name="sql"><file name="HOWTO_UnInstall.sql" hash="691131453816d890630a6d3a21b6c7bf"/><dir name="eboekhouden_setup"><dir name="includes"><file name="install-current.php" hash="ddb3ff7895f4ec22fc6b4866207c9575"/></dir><file name="mysql4-install-4.1.32.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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>EBoekhouden_Export</name>
4
+ <version>4.1.35</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>Fixed issue with discounts being added to payment fee totals</notes>
35
  <authors><author><name>Ronald Kas</name><user>eboekhoudennl</user><email>info@e-boekhouden.nl</email></author></authors>
36
+ <date>2015-08-10</date>
37
+ <time>13:17:57</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="74a043943649eeab7f204f333e50219f"/></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="aec4382b0b19877bcdfc3ce468f3c961"/></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="ee93d591081876251afcff2cfc105a39"/><file name="system.xml" hash="aed3ba1bbe341d0cbed0d2b8b848339d"/></dir><dir name="sql"><file name="HOWTO_UnInstall.sql" hash="691131453816d890630a6d3a21b6c7bf"/><dir name="eboekhouden_setup"><dir name="includes"><file name="install-current.php" hash="ddb3ff7895f4ec22fc6b4866207c9575"/></dir><file name="mysql4-install-4.1.35.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="bebe760d3a9a3a6e09833b8ffa91c8d3"/></dir></target></contents>
39
  <compatible/>
40
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
41
  </package>