Version Notes
--
Download this release
Release Info
| Developer | DHL Vertriebs GmbH |
| Extension | DHL_Allyouneed |
| Version | 2.2.2 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.0 to 2.2.2
- app/code/community/Dhl/MeinPaket/Helper/Data.php +12 -53
- app/code/community/Dhl/MeinPaket/Helper/Product.php +10 -0
- app/code/community/Dhl/MeinPaket/Model/Resource/Eav/Mysql4/Setup.php +0 -56
- app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-install-1.0.0.php +0 -16
- app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-upgrade-1.0.0-1.1.0.php +0 -2
- app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-upgrade-1.1.0-2.0.0.php +0 -2
- app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-upgrade-2.1.0-2.2.0.php +42 -1
- app/code/community/Dhl/MeinPaketCommon/Helper/Data.php +3 -53
- app/code/community/Dhl/MeinPaketCommon/Model/Client/XmlOverHttp.php +3 -2
- app/code/community/Dhl/MeinPaketCommon/Model/Resource/Eav/Mysql4/Setup.php +0 -50
- app/code/community/Dhl/MeinPaketCommon/Model/Service/Order/ImportService.php +0 -7
- app/code/community/Dhl/MeinPaketCommon/Model/Xml/AbstractXmlRequest.php +2 -2
- app/code/community/Dhl/MeinPaketCommon/Model/Xml/Request/UploadRequest.php +3 -12
- app/code/community/Dhl/MeinPaketCommon/sql/meinpaketcommon_setup/mysql4-install-1.0.0.php +0 -4
- app/code/community/Dhl/MeinPaketCommon/sql/meinpaketcommon_setup/mysql4-upgrade-1.0.0-1.1.0.php +25 -1
- app/code/community/Dhl/Postpay/Model/Resource/Eav/Mysql4/Setup.php +0 -7
- app/code/community/Dhl/Postpay/sql/postpay_setup/mysql4-install-1.0.0.php +0 -2
- package.xml +4 -4
app/code/community/Dhl/MeinPaket/Helper/Data.php
CHANGED
|
@@ -8,62 +8,12 @@
|
|
| 8 |
* @subpackage Helper
|
| 9 |
*/
|
| 10 |
class Dhl_MeinPaket_Helper_Data extends Mage_Core_Helper_Abstract {
|
| 11 |
-
/**
|
| 12 |
-
* Creates/extends JavaScript language object by the given labels.
|
| 13 |
-
* The given labels array must have the structure array('key1'=>'label1','key2'=>'label2',...).
|
| 14 |
-
* Key is the key under which the label will be accessible in frontend JavaScript.
|
| 15 |
-
* Label is the untranslated label.
|
| 16 |
-
* Example: Element is 'foo'=>'Bar'. So use MeinPaket.locale.foo .
|
| 17 |
-
*
|
| 18 |
-
* @param array $labels
|
| 19 |
-
* @return string
|
| 20 |
-
*/
|
| 21 |
-
public function createLocaleJS(array $labels) {
|
| 22 |
-
$js = 'if(typeof MeinPaket === "undefined"){var MeinPaket={};}';
|
| 23 |
-
$js .= 'if(typeof MeinPaket.locale === "undefined"){MeinPaket.locale={};}';
|
| 24 |
-
$js .= 'Object.extend(MeinPaket.locale,{';
|
| 25 |
-
|
| 26 |
-
$firstItem = true;
|
| 27 |
-
if (sizeof ( $labels ) > 0) {
|
| 28 |
-
foreach ( $labels as $key => $label ) {
|
| 29 |
-
$js .= $this->_addJSLocaleLabel ( $key, $this->__ ( $label ), $firstItem );
|
| 30 |
-
if ($firstItem) {
|
| 31 |
-
$firstItem = false;
|
| 32 |
-
}
|
| 33 |
-
}
|
| 34 |
-
}
|
| 35 |
-
|
| 36 |
-
$js .= '});';
|
| 37 |
-
|
| 38 |
-
return $js;
|
| 39 |
-
}
|
| 40 |
-
|
| 41 |
-
/**
|
| 42 |
-
* Creates a json property.
|
| 43 |
-
*
|
| 44 |
-
* @param string $key
|
| 45 |
-
* @param string $label
|
| 46 |
-
* @param boolean $isFirst
|
| 47 |
-
* Tells if the label is the first in the list.
|
| 48 |
-
* @return string
|
| 49 |
-
*/
|
| 50 |
-
protected function _addJSLocaleLabel($key, $label, $isFirst = false) {
|
| 51 |
-
$labelProperty = '';
|
| 52 |
-
|
| 53 |
-
if (! $isFirst) {
|
| 54 |
-
$labelProperty .= ',';
|
| 55 |
-
}
|
| 56 |
-
|
| 57 |
-
$labelProperty .= $key . ':"' . $label . '"';
|
| 58 |
-
|
| 59 |
-
return $labelProperty;
|
| 60 |
-
}
|
| 61 |
-
public function getExtensionVersion() {
|
| 62 |
-
return ( string ) Mage::getConfig ()->getModuleConfig ( 'Dhl_MeinPaket' )->version;
|
| 63 |
-
}
|
| 64 |
const STORE_VIEW_CONFIG = 'meinpaket/store/view';
|
| 65 |
private $_meinpaketStore = null;
|
| 66 |
private $_meinpaketRootCategory = null;
|
|
|
|
|
|
|
|
|
|
| 67 |
public function getMeinPaketStore() {
|
| 68 |
if ($this->_meinpaketStore == null) {
|
| 69 |
$this->_meinpaketStore = Mage::app ()->getStore ( Mage::getStoreConfig ( self::STORE_VIEW_CONFIG ) );
|
|
@@ -87,4 +37,13 @@ class Dhl_MeinPaket_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
| 87 |
}
|
| 88 |
return $this->_meinpaketRootCategory;
|
| 89 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
}
|
| 8 |
* @subpackage Helper
|
| 9 |
*/
|
| 10 |
class Dhl_MeinPaket_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
const STORE_VIEW_CONFIG = 'meinpaket/store/view';
|
| 12 |
private $_meinpaketStore = null;
|
| 13 |
private $_meinpaketRootCategory = null;
|
| 14 |
+
public function getExtensionVersion() {
|
| 15 |
+
return ( string ) Mage::getConfig ()->getModuleConfig ( 'Dhl_MeinPaket' )->version;
|
| 16 |
+
}
|
| 17 |
public function getMeinPaketStore() {
|
| 18 |
if ($this->_meinpaketStore == null) {
|
| 19 |
$this->_meinpaketStore = Mage::app ()->getStore ( Mage::getStoreConfig ( self::STORE_VIEW_CONFIG ) );
|
| 37 |
}
|
| 38 |
return $this->_meinpaketRootCategory;
|
| 39 |
}
|
| 40 |
+
|
| 41 |
+
/**
|
| 42 |
+
* Is this module active?
|
| 43 |
+
*
|
| 44 |
+
* @return bool
|
| 45 |
+
*/
|
| 46 |
+
public function isActive() {
|
| 47 |
+
return ( bool ) Mage::getStoreConfigFlag ( 'meinpaket/credentials/active' );
|
| 48 |
+
}
|
| 49 |
}
|
app/code/community/Dhl/MeinPaket/Helper/Product.php
CHANGED
|
@@ -33,6 +33,16 @@ class Dhl_MeinPaket_Helper_Product extends Mage_Core_Helper_Abstract {
|
|
| 33 |
$this->_eanValidator = Mage::getSingleton ( 'meinpaketcommon/validation_validator_ean' );
|
| 34 |
}
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
/**
|
| 37 |
* Tells if the given product has a valid ean.
|
| 38 |
*
|
| 33 |
$this->_eanValidator = Mage::getSingleton ( 'meinpaketcommon/validation_validator_ean' );
|
| 34 |
}
|
| 35 |
|
| 36 |
+
/**
|
| 37 |
+
* Return true if the product should be listed.
|
| 38 |
+
*
|
| 39 |
+
* @param Mage_Catalog_Model_Product $product to be checked
|
| 40 |
+
* @return boolean true if the product should be listed
|
| 41 |
+
*/
|
| 42 |
+
public function isActive(Mage_Catalog_Model_Product $product) {
|
| 43 |
+
return $product->getData ( 'sync_with_dhl_mein_paket' ) > 0;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
/**
|
| 47 |
* Tells if the given product has a valid ean.
|
| 48 |
*
|
app/code/community/Dhl/MeinPaket/Model/Resource/Eav/Mysql4/Setup.php
CHANGED
|
@@ -1,59 +1,3 @@
|
|
| 1 |
<?php
|
| 2 |
class Dhl_MeinPaket_Model_Resource_Eav_Mysql4_Setup extends Mage_Catalog_Model_Resource_Setup {
|
| 3 |
-
/**
|
| 4 |
-
*
|
| 5 |
-
* @return array
|
| 6 |
-
*/
|
| 7 |
-
public function getDefaultEntities() {
|
| 8 |
-
return array (
|
| 9 |
-
'catalog_product' => array (
|
| 10 |
-
'entity_model' => 'catalog/product',
|
| 11 |
-
'attribute_model' => 'catalog/resource_eav_attribute',
|
| 12 |
-
'table' => 'catalog/product',
|
| 13 |
-
'additional_attribute_table' => 'catalog/eav_attribute',
|
| 14 |
-
'entity_attribute_collection' => 'catalog/product_attribute_collection',
|
| 15 |
-
'attributes' => array (
|
| 16 |
-
'meinpaket_id' => array (
|
| 17 |
-
'type' => 'int',
|
| 18 |
-
'label' => 'Product DHL Allyouneed Id',
|
| 19 |
-
'required' => false,
|
| 20 |
-
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 21 |
-
'visible' => false,
|
| 22 |
-
'group' => 'Allyouneed'
|
| 23 |
-
),
|
| 24 |
-
'sync_with_dhl_mein_paket' => array (
|
| 25 |
-
'type' => 'int',
|
| 26 |
-
'label' => 'Sync with Allyouneed',
|
| 27 |
-
'frontend' => 'meinpaket/entity_attribute_frontend_labelTranslation',
|
| 28 |
-
'input' => 'select',
|
| 29 |
-
'source' => 'meinpaket/entity_attribute_source_productSyncMode',
|
| 30 |
-
'required' => false,
|
| 31 |
-
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 32 |
-
'visible' => true,
|
| 33 |
-
'group' => 'Allyouneed'
|
| 34 |
-
),
|
| 35 |
-
'max_stock_for_dhl_mein_paket' => array (
|
| 36 |
-
'type' => 'int',
|
| 37 |
-
'label' => 'Maximum stock qty. for Allyouneed',
|
| 38 |
-
'frontend' => 'meinpaket/entity_attribute_frontend_labelTranslation',
|
| 39 |
-
'input' => 'text',
|
| 40 |
-
'required' => false,
|
| 41 |
-
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 42 |
-
'visible' => true,
|
| 43 |
-
'group' => 'Allyouneed'
|
| 44 |
-
),
|
| 45 |
-
'meinpaket_category' => array (
|
| 46 |
-
'type' => 'text',
|
| 47 |
-
'label' => 'Allyouneed Category',
|
| 48 |
-
'input' => 'select',
|
| 49 |
-
'source' => 'meinpaket/entity_attribute_source_meinPaketCategory',
|
| 50 |
-
'required' => false,
|
| 51 |
-
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 52 |
-
'visible' => true,
|
| 53 |
-
'group' => 'Allyouneed'
|
| 54 |
-
)
|
| 55 |
-
)
|
| 56 |
-
)
|
| 57 |
-
);
|
| 58 |
-
}
|
| 59 |
}
|
| 1 |
<?php
|
| 2 |
class Dhl_MeinPaket_Model_Resource_Eav_Mysql4_Setup extends Mage_Catalog_Model_Resource_Setup {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
}
|
app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-install-1.0.0.php
CHANGED
|
@@ -3,26 +3,10 @@
|
|
| 3 |
* Setup-Script fuer Dhl_MeinPaket
|
| 4 |
*
|
| 5 |
* Uninstall MeinPaket:
|
| 6 |
-
* delete from core_resource where code = 'meinpaket_setup';
|
| 7 |
-
* delete from eav_attribute where attribute_code = "is_dhl_mein_paket_root";
|
| 8 |
-
* delete from eav_attribute where attribute_code = "is_dhl_marketplace_root";
|
| 9 |
-
* delete from eav_attribute where attribute_code = "dhl_marketplace_category_id";
|
| 10 |
-
* delete from eav_attribute where attribute_code = "sync_with_dhl_mein_paket";
|
| 11 |
-
* delete from eav_attribute where attribute_code = "max_stock_for_dhl_mein_paket";
|
| 12 |
-
* delete from eav_attribute where attribute_code = "shipment_was_exported_for_dhl_mein_paket";
|
| 13 |
-
* delete from eav_attribute where attribute_code = "dhl_mein_paket_order_id";
|
| 14 |
-
* delete from eav_attribute_group where attribute_group_name = "Allyouneed";
|
| 15 |
-
* alter table sales_flat_order drop column dhl_mein_paket_order_id;
|
| 16 |
-
* alter table sales_flat_order_grid drop column dhl_mein_paket_order_id;
|
| 17 |
-
*
|
| 18 |
-
* @author Andreas Demmer <andreas.demmer@aoemedia.de>
|
| 19 |
*/
|
| 20 |
|
| 21 |
/* @var $installer Dhl_MeinPaket_Model_Resource_Eav_Mysql4_Setup */
|
| 22 |
$installer = $this;
|
| 23 |
$installer->startSetup ();
|
| 24 |
|
| 25 |
-
// Mage::getSingleton ( 'adminhtml/session' )->addSuccess ( 'DHL Allyouneed extension was successfully installed!' );
|
| 26 |
-
|
| 27 |
-
$installer->installEntities ();
|
| 28 |
$installer->endSetup ();
|
| 3 |
* Setup-Script fuer Dhl_MeinPaket
|
| 4 |
*
|
| 5 |
* Uninstall MeinPaket:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
*/
|
| 7 |
|
| 8 |
/* @var $installer Dhl_MeinPaket_Model_Resource_Eav_Mysql4_Setup */
|
| 9 |
$installer = $this;
|
| 10 |
$installer->startSetup ();
|
| 11 |
|
|
|
|
|
|
|
|
|
|
| 12 |
$installer->endSetup ();
|
app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-upgrade-1.0.0-1.1.0.php
CHANGED
|
@@ -4,6 +4,4 @@
|
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
| 7 |
-
$installer->installEntities ();
|
| 8 |
-
|
| 9 |
$installer->endSetup ();
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
|
|
|
|
|
|
| 7 |
$installer->endSetup ();
|
app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-upgrade-1.1.0-2.0.0.php
CHANGED
|
@@ -4,8 +4,6 @@
|
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
| 7 |
-
$installer->installEntities ();
|
| 8 |
-
|
| 9 |
$installer->run ( "
|
| 10 |
DROP TABLE IF EXISTS {$this->getTable('meinpaket/category')};
|
| 11 |
CREATE TABLE {$this->getTable('meinpaket/category')} (
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
|
|
|
|
|
|
| 7 |
$installer->run ( "
|
| 8 |
DROP TABLE IF EXISTS {$this->getTable('meinpaket/category')};
|
| 9 |
CREATE TABLE {$this->getTable('meinpaket/category')} (
|
app/code/community/Dhl/MeinPaket/sql/meinpaket_setup/mysql4-upgrade-2.1.0-2.2.0.php
CHANGED
|
@@ -4,6 +4,47 @@
|
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
| 7 |
-
$installer->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
$installer->endSetup ();
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
| 7 |
+
$installer->addAttribute ( 'catalog_product', 'meinpaket_id', array (
|
| 8 |
+
'type' => 'int',
|
| 9 |
+
'label' => 'Product DHL Allyouneed Id',
|
| 10 |
+
'required' => false,
|
| 11 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 12 |
+
'visible' => false,
|
| 13 |
+
'group' => 'Allyouneed'
|
| 14 |
+
) );
|
| 15 |
+
|
| 16 |
+
$installer->addAttribute ( 'catalog_product', 'sync_with_dhl_mein_paket', array (
|
| 17 |
+
'type' => 'int',
|
| 18 |
+
'label' => 'Sync with Allyouneed',
|
| 19 |
+
'frontend' => 'meinpaket/entity_attribute_frontend_labelTranslation',
|
| 20 |
+
'input' => 'select',
|
| 21 |
+
'source' => 'meinpaket/entity_attribute_source_productSyncMode',
|
| 22 |
+
'required' => false,
|
| 23 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 24 |
+
'visible' => true,
|
| 25 |
+
'group' => 'Allyouneed'
|
| 26 |
+
) );
|
| 27 |
+
|
| 28 |
+
$installer->addAttribute ( 'catalog_product', 'max_stock_for_dhl_mein_paket', array (
|
| 29 |
+
'type' => 'int',
|
| 30 |
+
'label' => 'Maximum stock qty. for Allyouneed',
|
| 31 |
+
'frontend' => 'meinpaket/entity_attribute_frontend_labelTranslation',
|
| 32 |
+
'input' => 'text',
|
| 33 |
+
'required' => false,
|
| 34 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 35 |
+
'visible' => true,
|
| 36 |
+
'group' => 'Allyouneed'
|
| 37 |
+
) );
|
| 38 |
+
|
| 39 |
+
$installer->addAttribute ( 'catalog_product', 'meinpaket_category', array (
|
| 40 |
+
'type' => 'text',
|
| 41 |
+
'label' => 'Allyouneed Category',
|
| 42 |
+
'input' => 'select',
|
| 43 |
+
'source' => 'meinpaket/entity_attribute_source_meinPaketCategory',
|
| 44 |
+
'required' => false,
|
| 45 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
|
| 46 |
+
'visible' => true,
|
| 47 |
+
'group' => 'Allyouneed'
|
| 48 |
+
) );
|
| 49 |
|
| 50 |
$installer->endSetup ();
|
app/code/community/Dhl/MeinPaketCommon/Helper/Data.php
CHANGED
|
@@ -8,62 +8,12 @@
|
|
| 8 |
* @subpackage Helper
|
| 9 |
*/
|
| 10 |
class Dhl_MeinPaketCommon_Helper_Data extends Mage_Core_Helper_Abstract {
|
| 11 |
-
/**
|
| 12 |
-
* Creates/extends JavaScript language object by the given labels.
|
| 13 |
-
* The given labels array must have the structure array('key1'=>'label1','key2'=>'label2',...).
|
| 14 |
-
* Key is the key under which the label will be accessible in frontend JavaScript.
|
| 15 |
-
* Label is the untranslated label.
|
| 16 |
-
* Example: Element is 'foo'=>'Bar'. So use MeinPaket.locale.foo .
|
| 17 |
-
*
|
| 18 |
-
* @param array $labels
|
| 19 |
-
* @return string
|
| 20 |
-
*/
|
| 21 |
-
public function createLocaleJS(array $labels) {
|
| 22 |
-
$js = 'if(typeof MeinPaket === "undefined"){var MeinPaket={};}';
|
| 23 |
-
$js .= 'if(typeof MeinPaket.locale === "undefined"){MeinPaket.locale={};}';
|
| 24 |
-
$js .= 'Object.extend(MeinPaket.locale,{';
|
| 25 |
-
|
| 26 |
-
$firstItem = true;
|
| 27 |
-
if (sizeof ( $labels ) > 0) {
|
| 28 |
-
foreach ( $labels as $key => $label ) {
|
| 29 |
-
$js .= $this->_addJSLocaleLabel ( $key, $this->__ ( $label ), $firstItem );
|
| 30 |
-
if ($firstItem) {
|
| 31 |
-
$firstItem = false;
|
| 32 |
-
}
|
| 33 |
-
}
|
| 34 |
-
}
|
| 35 |
-
|
| 36 |
-
$js .= '});';
|
| 37 |
-
|
| 38 |
-
return $js;
|
| 39 |
-
}
|
| 40 |
-
|
| 41 |
-
/**
|
| 42 |
-
* Creates a json property.
|
| 43 |
-
*
|
| 44 |
-
* @param string $key
|
| 45 |
-
* @param string $label
|
| 46 |
-
* @param boolean $isFirst
|
| 47 |
-
* Tells if the label is the first in the list.
|
| 48 |
-
* @return string
|
| 49 |
-
*/
|
| 50 |
-
protected function _addJSLocaleLabel($key, $label, $isFirst = false) {
|
| 51 |
-
$labelProperty = '';
|
| 52 |
-
|
| 53 |
-
if (! $isFirst) {
|
| 54 |
-
$labelProperty .= ',';
|
| 55 |
-
}
|
| 56 |
-
|
| 57 |
-
$labelProperty .= $key . ':"' . $label . '"';
|
| 58 |
-
|
| 59 |
-
return $labelProperty;
|
| 60 |
-
}
|
| 61 |
-
public function getExtensionVersion() {
|
| 62 |
-
return ( string ) Mage::getConfig ()->getModuleConfig ( 'Dhl_MeinPaketCommon' )->version;
|
| 63 |
-
}
|
| 64 |
const STORE_VIEW_CONFIG = 'meinpaket/store/view';
|
| 65 |
private $_meinpaketStore = null;
|
| 66 |
private $_meinpaketRootCategory = null;
|
|
|
|
|
|
|
|
|
|
| 67 |
public function getMeinPaketStore() {
|
| 68 |
if ($this->_meinpaketStore == null) {
|
| 69 |
$this->_meinpaketStore = Mage::app ()->getStore ( Mage::getStoreConfig ( self::STORE_VIEW_CONFIG ) );
|
| 8 |
* @subpackage Helper
|
| 9 |
*/
|
| 10 |
class Dhl_MeinPaketCommon_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
const STORE_VIEW_CONFIG = 'meinpaket/store/view';
|
| 12 |
private $_meinpaketStore = null;
|
| 13 |
private $_meinpaketRootCategory = null;
|
| 14 |
+
public function getExtensionVersion() {
|
| 15 |
+
return ( string ) Mage::getConfig ()->getModuleConfig ( 'Dhl_MeinPaketCommon' )->version;
|
| 16 |
+
}
|
| 17 |
public function getMeinPaketStore() {
|
| 18 |
if ($this->_meinpaketStore == null) {
|
| 19 |
$this->_meinpaketStore = Mage::app ()->getStore ( Mage::getStoreConfig ( self::STORE_VIEW_CONFIG ) );
|
app/code/community/Dhl/MeinPaketCommon/Model/Client/XmlOverHttp.php
CHANGED
|
@@ -14,7 +14,7 @@ class Dhl_MeinPaketCommon_Model_Client_XmlOverHttp extends Varien_Object {
|
|
| 14 |
*
|
| 15 |
* @var string
|
| 16 |
*/
|
| 17 |
-
const PRODUCTIVE_ENDPOINT = 'de.allyouneed.com/dealerapi/';
|
| 18 |
/**
|
| 19 |
* Endpoint for sandbox
|
| 20 |
*
|
|
@@ -49,7 +49,8 @@ class Dhl_MeinPaketCommon_Model_Client_XmlOverHttp extends Varien_Object {
|
|
| 49 |
*/
|
| 50 |
public function __construct() {
|
| 51 |
$this->config = array (
|
| 52 |
-
'useragent' => 'Magento ' . Mage::getVersion () . ' Extension ' . Mage::helper ( 'meinpaket/data' )->getExtensionVersion ()
|
|
|
|
| 53 |
);
|
| 54 |
$scheme = Mage::getStoreConfigFlag ( 'meinpaket/endpoint/https' ) ? 'https://' : 'http://';
|
| 55 |
$path = Mage::getStoreConfigFlag ( 'meinpaket/endpoint/sandbox' ) ? self::SANDBOX_ENDPOINT : self::PRODUCTIVE_ENDPOINT;
|
| 14 |
*
|
| 15 |
* @var string
|
| 16 |
*/
|
| 17 |
+
const PRODUCTIVE_ENDPOINT = 'de.allyouneed.com/dealerapi/xml';
|
| 18 |
/**
|
| 19 |
* Endpoint for sandbox
|
| 20 |
*
|
| 49 |
*/
|
| 50 |
public function __construct() {
|
| 51 |
$this->config = array (
|
| 52 |
+
'useragent' => 'Magento ' . Mage::getVersion () . ' Extension ' . Mage::helper ( 'meinpaket/data' )->getExtensionVersion (),
|
| 53 |
+
'timeout' => 30
|
| 54 |
);
|
| 55 |
$scheme = Mage::getStoreConfigFlag ( 'meinpaket/endpoint/https' ) ? 'https://' : 'http://';
|
| 56 |
$path = Mage::getStoreConfigFlag ( 'meinpaket/endpoint/sandbox' ) ? self::SANDBOX_ENDPOINT : self::PRODUCTIVE_ENDPOINT;
|
app/code/community/Dhl/MeinPaketCommon/Model/Resource/Eav/Mysql4/Setup.php
CHANGED
|
@@ -1,53 +1,3 @@
|
|
| 1 |
<?php
|
| 2 |
class Dhl_MeinPaketCommon_Model_Resource_Eav_Mysql4_Setup extends Mage_Catalog_Model_Resource_Setup {
|
| 3 |
-
/**
|
| 4 |
-
*
|
| 5 |
-
* @return array
|
| 6 |
-
*/
|
| 7 |
-
public function getDefaultEntities() {
|
| 8 |
-
return array (
|
| 9 |
-
'order' => array (
|
| 10 |
-
'entity_model' => 'sales/order',
|
| 11 |
-
'table' => 'sales/order',
|
| 12 |
-
'increment_model' => 'eav/entity_increment_numeric',
|
| 13 |
-
'increment_per_store' => true,
|
| 14 |
-
'backend_prefix' => 'sales_entity/order_attribute_backend',
|
| 15 |
-
'attributes' => array (
|
| 16 |
-
'meinpaket_id' => array (
|
| 17 |
-
'type' => 'int',
|
| 18 |
-
'label' => 'Order Allyouneed Id',
|
| 19 |
-
'required' => false,
|
| 20 |
-
'is_visible' => false,
|
| 21 |
-
'visible' => false
|
| 22 |
-
)
|
| 23 |
-
)
|
| 24 |
-
),
|
| 25 |
-
'customer' => array (
|
| 26 |
-
'entity_model' => 'customer/customer',
|
| 27 |
-
'attribute_model' => 'customer/attribute',
|
| 28 |
-
'table' => 'customer/entity',
|
| 29 |
-
'increment_model' => 'eav/entity_increment_numeric',
|
| 30 |
-
'additional_attribute_table' => 'customer/eav_attribute',
|
| 31 |
-
'entity_attribute_collection' => 'customer/attribute_collection',
|
| 32 |
-
'attributes' => array (
|
| 33 |
-
'meinpaket_buyer_id' => array (
|
| 34 |
-
'type' => 'int',
|
| 35 |
-
'label' => 'MeinPaket Buyer Id',
|
| 36 |
-
'input' => 'text',
|
| 37 |
-
'required' => false,
|
| 38 |
-
'sort_order' => 200,
|
| 39 |
-
'visible' => false
|
| 40 |
-
),
|
| 41 |
-
'meinpaket_buyer_name' => array (
|
| 42 |
-
'type' => 'varchar',
|
| 43 |
-
'label' => 'Allyouneed Buyer Name',
|
| 44 |
-
'input' => 'text',
|
| 45 |
-
'required' => false,
|
| 46 |
-
'sort_order' => 201,
|
| 47 |
-
'visible' => false
|
| 48 |
-
)
|
| 49 |
-
)
|
| 50 |
-
)
|
| 51 |
-
);
|
| 52 |
-
}
|
| 53 |
}
|
| 1 |
<?php
|
| 2 |
class Dhl_MeinPaketCommon_Model_Resource_Eav_Mysql4_Setup extends Mage_Catalog_Model_Resource_Setup {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
}
|
app/code/community/Dhl/MeinPaketCommon/Model/Service/Order/ImportService.php
CHANGED
|
@@ -30,19 +30,12 @@ class Dhl_MeinPaketCommon_Model_Service_Order_ImportService extends Varien_Objec
|
|
| 30 |
*/
|
| 31 |
protected $_disabledProductOrders;
|
| 32 |
|
| 33 |
-
/**
|
| 34 |
-
*
|
| 35 |
-
* @var string
|
| 36 |
-
*/
|
| 37 |
-
const IMPORT_SHIPPING_METHOD = 'meinpaket_standard';
|
| 38 |
-
|
| 39 |
/**
|
| 40 |
*
|
| 41 |
* @var string
|
| 42 |
*/
|
| 43 |
const IMPORT_SHIPPING_METHOD = 'allyouneed_standard';
|
| 44 |
|
| 45 |
-
|
| 46 |
/**
|
| 47 |
*
|
| 48 |
* @var string
|
| 30 |
*/
|
| 31 |
protected $_disabledProductOrders;
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
/**
|
| 34 |
*
|
| 35 |
* @var string
|
| 36 |
*/
|
| 37 |
const IMPORT_SHIPPING_METHOD = 'allyouneed_standard';
|
| 38 |
|
|
|
|
| 39 |
/**
|
| 40 |
*
|
| 41 |
* @var string
|
app/code/community/Dhl/MeinPaketCommon/Model/Xml/AbstractXmlRequest.php
CHANGED
|
@@ -63,8 +63,8 @@ abstract class Dhl_MeinPaketCommon_Model_Xml_AbstractXmlRequest extends Dhl_Mein
|
|
| 63 |
$languageNode = $this->getDocument ()->createElement ( 'common:language', 'de' );
|
| 64 |
$multiplierIdNode = $this->getDocument ()->createElement ( 'common:multiplierId', 'MAGENTO' );
|
| 65 |
|
| 66 |
-
$usernameNode->appendChild ( $this->getDocument ()->
|
| 67 |
-
$passwordNode->appendChild ( $this->getDocument ()->
|
| 68 |
|
| 69 |
$headerNode->appendChild ( $usernameNode );
|
| 70 |
$headerNode->appendChild ( $passwordNode );
|
| 63 |
$languageNode = $this->getDocument ()->createElement ( 'common:language', 'de' );
|
| 64 |
$multiplierIdNode = $this->getDocument ()->createElement ( 'common:multiplierId', 'MAGENTO' );
|
| 65 |
|
| 66 |
+
$usernameNode->appendChild ( $this->getDocument ()->createCDATASection ( $username ) );
|
| 67 |
+
$passwordNode->appendChild ( $this->getDocument ()->createCDATASection ( $password ) );
|
| 68 |
|
| 69 |
$headerNode->appendChild ( $usernameNode );
|
| 70 |
$headerNode->appendChild ( $passwordNode );
|
app/code/community/Dhl/MeinPaketCommon/Model/Xml/Request/UploadRequest.php
CHANGED
|
@@ -244,8 +244,8 @@ class Dhl_MeinPaketCommon_Model_Xml_Request_UploadRequest extends Dhl_MeinPaketC
|
|
| 244 |
$configurableProduct = Mage::getModel ( 'catalog/product' )->load ( $parentIdArray [0] );
|
| 245 |
}
|
| 246 |
}
|
| 247 |
-
|
| 248 |
-
if (! $
|
| 249 |
$this->removeProduct ( $product );
|
| 250 |
return false;
|
| 251 |
}
|
|
@@ -397,16 +397,7 @@ class Dhl_MeinPaketCommon_Model_Xml_Request_UploadRequest extends Dhl_MeinPaketC
|
|
| 397 |
* @param Mage_Catalog_Model_Product $product
|
| 398 |
*/
|
| 399 |
protected function handleConfigurableProduct(Mage_Catalog_Model_Product $product) {
|
| 400 |
-
if (! $
|
| 401 |
-
/* @var $productDescription DOMNode */
|
| 402 |
-
$productDeletion = $this->getDocument ()->createElement ( 'productDeletion' );
|
| 403 |
-
$this->getDeletions ()->appendChild ( $productDeletion );
|
| 404 |
-
$pId = $this->getDocument ()->createElement ( 'common:productId', $product->getId () );
|
| 405 |
-
$productDeletion->appendChild ( $pId );
|
| 406 |
-
return false;
|
| 407 |
-
}
|
| 408 |
-
|
| 409 |
-
if (! $product->getData ( 'sync_with_dhl_mein_paket' )) {
|
| 410 |
$this->removeProduct ( $product );
|
| 411 |
return false;
|
| 412 |
}
|
| 244 |
$configurableProduct = Mage::getModel ( 'catalog/product' )->load ( $parentIdArray [0] );
|
| 245 |
}
|
| 246 |
}
|
| 247 |
+
|
| 248 |
+
if (! $this->productHelper->isActive($product) && $configurableProduct == null) {
|
| 249 |
$this->removeProduct ( $product );
|
| 250 |
return false;
|
| 251 |
}
|
| 397 |
* @param Mage_Catalog_Model_Product $product
|
| 398 |
*/
|
| 399 |
protected function handleConfigurableProduct(Mage_Catalog_Model_Product $product) {
|
| 400 |
+
if (! $this->productHelper->isActive($product)) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 401 |
$this->removeProduct ( $product );
|
| 402 |
return false;
|
| 403 |
}
|
app/code/community/Dhl/MeinPaketCommon/sql/meinpaketcommon_setup/mysql4-install-1.0.0.php
CHANGED
|
@@ -75,10 +75,6 @@ if (! $orderIdFieldExists) {
|
|
| 75 |
$installer->getConnection ()->addColumn ( $installer->getTable ( 'sales_flat_shipment' ), 'shipment_was_exported_for_dhl_mein_paket', 'int(1) NULL DEFAULT NULL AFTER `entity_id`' );
|
| 76 |
}
|
| 77 |
|
| 78 |
-
Mage::getSingleton ( 'adminhtml/session' )->addSuccess ( 'DHL Allyouneed extension was successfully installed!' );
|
| 79 |
-
|
| 80 |
-
$installer->installEntities ();
|
| 81 |
-
|
| 82 |
$installer->run ( "
|
| 83 |
DROP TABLE IF EXISTS {$this->getTable('meinpaketcommon/async')};
|
| 84 |
CREATE TABLE {$this->getTable('meinpaketcommon/async')} (
|
| 75 |
$installer->getConnection ()->addColumn ( $installer->getTable ( 'sales_flat_shipment' ), 'shipment_was_exported_for_dhl_mein_paket', 'int(1) NULL DEFAULT NULL AFTER `entity_id`' );
|
| 76 |
}
|
| 77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
$installer->run ( "
|
| 79 |
DROP TABLE IF EXISTS {$this->getTable('meinpaketcommon/async')};
|
| 80 |
CREATE TABLE {$this->getTable('meinpaketcommon/async')} (
|
app/code/community/Dhl/MeinPaketCommon/sql/meinpaketcommon_setup/mysql4-upgrade-1.0.0-1.1.0.php
CHANGED
|
@@ -4,6 +4,30 @@
|
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
| 7 |
-
$installer->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
$installer->endSetup ();
|
| 4 |
$installer = $this;
|
| 5 |
$installer->startSetup ();
|
| 6 |
|
| 7 |
+
$installer->addAttribute ( 'order', 'meinpaket_id', array (
|
| 8 |
+
'type' => 'int',
|
| 9 |
+
'label' => 'Order Allyouneed Id',
|
| 10 |
+
'required' => false,
|
| 11 |
+
'is_visible' => false,
|
| 12 |
+
'visible' => false
|
| 13 |
+
) );
|
| 14 |
+
|
| 15 |
+
$installer->addAttribute ( 'customer', 'meinpaket_buyer_id', array (
|
| 16 |
+
'type' => 'int',
|
| 17 |
+
'label' => 'Allyouneed Buyer Id',
|
| 18 |
+
'input' => 'text',
|
| 19 |
+
'required' => false,
|
| 20 |
+
'sort_order' => 200,
|
| 21 |
+
'visible' => false
|
| 22 |
+
) );
|
| 23 |
+
|
| 24 |
+
$installer->addAttribute ( 'customer', 'meinpaket_buyer_name', array (
|
| 25 |
+
'type' => 'varchar',
|
| 26 |
+
'label' => 'Allyouneed Buyer Name',
|
| 27 |
+
'input' => 'text',
|
| 28 |
+
'required' => false,
|
| 29 |
+
'sort_order' => 201,
|
| 30 |
+
'visible' => false
|
| 31 |
+
) );
|
| 32 |
|
| 33 |
$installer->endSetup ();
|
app/code/community/Dhl/Postpay/Model/Resource/Eav/Mysql4/Setup.php
CHANGED
|
@@ -1,11 +1,4 @@
|
|
| 1 |
<?php
|
| 2 |
class Dhl_Postpay_Model_Resource_Eav_Mysql4_Setup extends Mage_Catalog_Model_Resource_Setup {
|
| 3 |
-
/**
|
| 4 |
-
*
|
| 5 |
-
* @return array
|
| 6 |
-
*/
|
| 7 |
-
public function getDefaultEntities() {
|
| 8 |
-
return array ();
|
| 9 |
-
}
|
| 10 |
}
|
| 11 |
|
| 1 |
<?php
|
| 2 |
class Dhl_Postpay_Model_Resource_Eav_Mysql4_Setup extends Mage_Catalog_Model_Resource_Setup {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
}
|
| 4 |
|
app/code/community/Dhl/Postpay/sql/postpay_setup/mysql4-install-1.0.0.php
CHANGED
|
@@ -7,8 +7,6 @@
|
|
| 7 |
$installer = $this;
|
| 8 |
$installer->startSetup ();
|
| 9 |
|
| 10 |
-
$installer->installEntities ();
|
| 11 |
-
|
| 12 |
$installer->run ( "
|
| 13 |
DROP TABLE IF EXISTS {$this->getTable('postpay/cart')};
|
| 14 |
CREATE TABLE {$this->getTable('postpay/cart')} (
|
| 7 |
$installer = $this;
|
| 8 |
$installer->startSetup ();
|
| 9 |
|
|
|
|
|
|
|
| 10 |
$installer->run ( "
|
| 11 |
DROP TABLE IF EXISTS {$this->getTable('postpay/cart')};
|
| 12 |
CREATE TABLE {$this->getTable('postpay/cart')} (
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DHL_Allyouneed</name>
|
| 4 |
-
<version>2.2.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>--</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>The Extension connects your Magento shop with DHL Allyouneed.</description>
|
| 11 |
<notes>--</notes>
|
| 12 |
<authors><author><name>DHL Vertriebs GmbH</name><user>ybmdeutschland</user><email>support@meinpaket.de</email></author></authors>
|
| 13 |
-
<date>2015-
|
| 14 |
-
<time>08:
|
| 15 |
-
<contents><target name="magecommunity"><dir><dir name="Dhl"><dir name="MeinPaket"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Backlog"><dir name="Product"><file name="Grid.php" hash="7541700fffd1811943ce7d1d5f1ecdaf"/></dir><file name="Product.php" hash="d0fa6e92c7a2349cb2ef578eb1dad702"/></dir><dir name="BestPrice"><file name="Grid.php" hash="adb8a1085e086f3d1dc57a489619ff5d"/></dir><file name="BestPrice.php" hash="b4f9912d464830a48fd5154c45b0c040"/><dir name="Catalog"><dir name="Product"><dir name="Matching"><file name="Result.php" hash="135446bcf25b60bb017e29b15881daa8"/><file name="Tab.php" hash="3d5c316f511ca64dfa511f04ac4b4a14"/></dir></dir></dir><dir name="CategoryImport"><file name="Import.php" hash="47f0969b175e1480efe8a97480c169da"/><file name="Index.php" hash="745b3c71e101599fbba7a7fd275362c9"/></dir><file name="LeftMenu.php" hash="b60dea4f9e9a39b663cab89be8e32b97"/><dir name="OrderImport"><file name="Index.php" hash="b45724d6ff1fcda6102b3147f3a66a94"/></dir><dir name="ProductExport"><file name="Export.php" hash="e12ef6d9b52a9607820fbcd5e58e76ca"/><file name="Index.php" hash="65cf2306ad93f387f525ec66cec1abee"/><file name="List.php" hash="4a32ced740d35ebb7a10d0fffa782223"/></dir><file name="Steps.php" hash="ffb3f688b43cd0c1f457b89c84e68b7f"/><file name="Version.php" hash="476febd9f5d12ac999bdc7a6d646fe20"/></dir></dir><dir name="Helper"><file name="Attribute.php" hash="36cf44cf54204426e3f50864381a6443"/><file name="Backlog.php" hash="51c08b4ef137799d0e7dbf900543ab3e"/><file name="Cron.php" hash="b320de066adaec731a4ce5d77397a1e8"/><file name="Data.php" hash="f195ae885607cae202a100aef8091c09"/><file name="Order.php" hash="e3dca5761fa8e5e4171a9712b14b5c30"/><file name="Product.php" hash="3f51562e88a3919ff609e9d9d1376efc"/><file name="Shipment.php" hash="c8764cf370aded8e4d3c55e8c218a879"/></dir><dir name="Model"><dir name="Attribute"><file name="Mapping.php" hash="7d8a8d9e18f7c6019ae71a7032061ab7"/></dir><dir name="Backlog"><file name="Product.php" hash="a2d547dcfba28c80819155a73ff5cff4"/></dir><file name="BestPrice.php" hash="b75de965445df6125e115d0d89add52c"/><file name="Category.php" hash="d0f5804e7900915f1c03364b079a7dc5"/><file name="Cron.php" hash="6f418837cc6e452eb8470864f6d4b396"/><dir name="Entity"><dir name="Attribute"><dir name="Frontend"><file name="LabelTranslation.php" hash="7f4b3b49b6e12dadd768aee95e041579"/></dir><dir name="Source"><file name="Carrier.php" hash="65770c58617deb2dce75d8e83e055d79"/><file name="MeinPaketCategory.php" hash="17f784c2d79bfd847dd6472dca661334"/><file name="ProductAttribute.php" hash="aba17fe2a9acb85d0483926c3d5ba9a8"/><file name="ProductSyncMode.php" hash="39db6c156e9100ab59384756ec9ac2c5"/><file name="Taxclass.php" hash="696e7dda6d0bd21eeceb61adc0121cd6"/><file name="Taxrate.php" hash="40bbb2336441fa02916ab992279961e8"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="dcbfbe06f3d0190d5f4a9f0b47973bf2"/><file name="MissingDataException.php" hash="377d6cc783aa6e8973728a77e1e5b8a9"/></dir><dir name="Mysql4"><dir name="Backlog"><dir name="Product"><file name="Collection.php" hash="2711f602d90e22ea72b773003cf38ef4"/></dir><file name="Product.php" hash="d46057bf2e8b93b32b23653222599316"/></dir><dir name="BestPrice"><file name="Collection.php" hash="fedcad4595269a646ff1c452bed87b00"/></dir><file name="BestPrice.php" hash="79399000e407b6a22489d0dbfedd6f34"/><dir name="Category"><file name="Collection.php" hash="06fd9a509c1ef252c0b75f6acda1b9eb"/></dir><file name="Category.php" hash="449c4f90fe5e797ca587025c63c745c3"/></dir><file name="Observer.php" hash="07e0c82cfa3d24feef9a1f3dd3599ada"/><dir name="Payment"><dir name="Method"><file name="Meinpaket.php" hash="dcb6ac810be4d0bb9e426464be91610d"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="26a300ab45c480c52d201cce79cf496f"/></dir></dir></dir><dir name="Service"><dir name="MarketplaceCategoryImport"><file name="ImportService.php" hash="bf0c889ce83b0afe084c20f97288370e"/><file name="Result.php" hash="cdebaf351ccd1c7aa285801701d32e7f"/></dir><dir name="Product"><dir name="Export"><dir name="Exception"><file name="InvalidEan.php" hash="bc88e3bc48a8a96e45079054290ae68c"/></dir></dir><file name="Export.php" hash="df1c3b905d299deb40b16d9452bcbf02"/></dir><dir name="ProductData"><file name="RequestService.php" hash="028b969756915acb87ab4daced2fd7ac"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="4ddf194a126ce18938610f61fcc1260d"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="e6cd11540ebf6bc87f4d949d81285703"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Backlog"><file name="ProductController.php" hash="bb1f8850442ff1950549b21a2dcf74c5"/></dir><file name="BestPriceController.php" hash="a0eafd1b7ec08351bf3c02bbf66509c6"/><file name="CategoryImportController.php" hash="e614f4bad2b173e067611e4017c7b1a8"/><file name="MatchingController.php" hash="f568a8a7d331264944d1586aa567e6ee"/><file name="ProductExportController.php" hash="19bdeee189cb404f1a0ffdfe21c66087"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="94c3acad50c77221b674d93c63e50e26"/><file name="config.xml" hash="805e78cc1999a74caf3e72099bb47f6d"/><file name="system.xml" hash="381fa94cf8cef54db494eea83f26dff1"/></dir><dir name="sql"><dir name="meinpaket_setup"><file name="mysql4-install-1.0.0.php" hash="a0a752fa3ec4cf50f3ee230a3ace9dcf"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="bdb2ac11cd070e409c97aa3978c42f7e"/><file name="mysql4-upgrade-1.1.0-2.0.0.php" hash="1a9dc2612fbc6f22a3623f3c65906d14"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="bdb2ac11cd070e409c97aa3978c42f7e"/></dir></dir></dir></dir><dir name="Postpay"><dir><dir name="Block"><dir name="Adminhtml"><file name="Version.php" hash="887b1a63cd09847ba7ab3392bd4f9602"/></dir><file name="Checkout.php" hash="ec8b0f2764d863f03dec0167617510a6"/><dir name="Payment"><dir name="Form"><file name="Standard.php" hash="6aca4f231c317c45ac1556d39639d84f"/></dir><dir name="Info"><file name="Standard.php" hash="45252ddc1f9ebb332ef75efa5f868432"/></dir></dir></dir><dir name="Helper"><file name="Cron.php" hash="c2391d5d085c31f2650655e8acdbfb97"/><file name="Data.php" hash="418df17f5f760dc47bba8bb815d77c58"/></dir><dir name="Model"><file name="Cart.php" hash="e599a64fec791a587552a020b563b426"/><file name="Cron.php" hash="7f563b1e5fabd6534a72ad8239af341d"/><dir name="Mysql4"><dir name="Cart"><file name="Collection.php" hash="3b5150eb69a37a738e3f8494db0f4af1"/></dir><file name="Cart.php" hash="74042698f6fb9f2c7ca054d17f1ff0a2"/></dir><file name="Observer.php" hash="8a9eb2111c0a450e460f10e2b2a721eb"/><dir name="Payment"><dir name="Method"><file name="Express.php" hash="91259cee6e39f7c993a823edbaab4817"/><file name="Standard.php" hash="30d139303e4f80c1ed8c03397666c890"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="e75165ec2772e0174d8bdb62adcdd50b"/></dir></dir></dir><dir name="Service"><dir name="Order"><file name="ImportService.php" hash="60c7e7a116d65b2bb3a1e15f03860558"/></dir></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="7a0801e7c03be05beb8c38004dea1464"/><file name="NotificationController.php" hash="41a608eddf5b891ca0b26b1ef1323691"/><file name="ResponseController.php" hash="79cb81c28fe2460fac0be802a8b598b2"/></dir><dir name="etc"><file name="config.xml" hash="8c25198b05cac404eca2c2fe3e81d35b"/><file name="system.xml" hash="43de1564100406a0cfcf69096f89b41a"/></dir><dir name="sql"><dir name="postpay_setup"><file name="mysql4-install-1.0.0.php" hash="7a43beb424cf14e9054d884367e5fa84"/></dir></dir></dir></dir><dir name="MeinPaketCommon"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Async"><file name="Grid.php" hash="dbf8ebeac3b98728c3cef8785c83c897"/></dir><file name="Async.php" hash="7169a4ea405f54ae1d6da4c56c302fcc"/><dir name="Log"><file name="Grid.php" hash="d371551816e9335e062424e648362ce5"/></dir><file name="Log.php" hash="36a68e5de0cf7dfb87e3b090c05c1e9c"/><file name="Version.php" hash="28defa5c89727f8c3a877affb55d0443"/></dir></dir><dir name="Helper"><file name="Address.php" hash="def05195630f6f98802481d228b4f25e"/><file name="Attribute.php" hash="905db640dbe49889e273aeb7415b2441"/><file name="Cron.php" hash="023eb7080558ebd43af77c1846a44534"/><file name="Data.php" hash="8edcee18eaca83942f5d30bfb65f7ff9"/><file name="Order.php" hash="736798b03eefd167e60854ad2e07792b"/><file name="Product.php" hash="ef60cadd260066b6109711a8e2522c9a"/><file name="Shipment.php" hash="4f62b24147d2998762ca74975e4cc379"/></dir><dir name="Model"><file name="Async.php" hash="3112120abd4ff2773dbcf19dedfd4044"/><dir name="Carrier"><file name="Allyouneed.php" hash="25eaf021d05a89e988c9370f25fd56cf"/><file name="Meinpaket.php" hash="b16814df68414d1fb6e795eadc4d6e83"/></dir><dir name="Client"><file name="BadHttpReturnCodeException.php" hash="3f3d67278be542e42bb882f387c04b67"/><file name="HttpException.php" hash="963bc4b8d30d2996a2a08b4c8aaa6b8f"/><file name="HttpTimeoutException.php" hash="d633742d26c8c5438543c1bbdf5c09bd"/><file name="XmlOverHttp.php" hash="8253371b36f2d8c18ca31b7b16bac10d"/></dir><file name="Cron.php" hash="35c06419c8aa9c6413f8304fda80c3ff"/><dir name="Entity"><dir name="Attribute"><dir name="Source"><file name="Carrier.php" hash="437c70fc9b4e8fa719bdd19676bbbacf"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="808caf989c24f1146d47fc610be6e131"/><file name="MissingDataException.php" hash="67a06069dcb66c02235f636b6790a62d"/></dir><file name="Log.php" hash="516fc34067f4573d160100d7a975a66c"/><dir name="Mysql4"><dir name="Async"><file name="Collection.php" hash="d5f6fbe4a4be75181844eddfbbd557cf"/></dir><file name="Async.php" hash="2120d8c0411c8773853cee4c5925467a"/><dir name="Log"><file name="Collection.php" hash="9bba87a636029d675e1ceda42f96dbc4"/></dir><file name="Log.php" hash="a09be611512f4dc95880e6e00dab93ca"/></dir><file name="Observer.php" hash="15812db421a573332a95f35e9acb9be9"/><dir name="Payment"><dir name="Method"><file name="Allyouneed.php" hash="663bf3c0f796e41a36eed0c277c0af42"/><file name="Meinpaket.php" hash="fdbc24e8330ecbb71243e1f4b5b83bc3"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="c6d8159ce42cb9826d2745a8b88145be"/></dir></dir></dir><dir name="Service"><file name="Abstract.php" hash="406fb92c370df8e93aaffacbad56937b"/><file name="Async.php" hash="5dba3892bc2b78846f2ca7593385a1bc"/><dir name="Order"><dir name="CancellationService"><file name="Result.php" hash="fd81666a5855ea6b25904e14d498ea20"/></dir><file name="CancellationService.php" hash="a6806a3531b596a729a418688ba51dcc"/><file name="ImportService.php" hash="270a81fdc451432d08974e2d11fbabc4"/><dir name="RefundExportService"><file name="Result.php" hash="dcfd1f479709368b446041674ee445d8"/></dir><file name="RefundExportService.php" hash="7ab8222a77e76517247f7f710d60b590"/><dir name="ShipmentExportService"><file name="Result.php" hash="0ba713e725c87d0bc82321582e3fe776"/></dir><file name="ShipmentExportService.php" hash="3045ed7ffb7f6a1f4c592e49832577f9"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="51438929f66a7efe3541511b6966ea09"/></dir></dir><dir name="System"><file name="MemoryLimiter.php" hash="813d89b8c21834fb911acc8e59be950c"/></dir><dir name="Validation"><file name="ValidationInterface.php" hash="d11950e6d4a7b52e3784867e8d8d2230"/><dir name="Validator"><file name="CDATAContent.php" hash="425678e9cf44efee9d884c20e4db1f14"/><file name="Ean.php" hash="7bab4c07ebcbdf3ce9e087ff20976d1a"/><file name="IntGreaterZero.php" hash="682c11f5cf24cafcef61350194a65be1"/><file name="NonEmptyString.php" hash="7075a72eace8e1f8c5bc5b61a5a25231"/><file name="StringMaxLength.php" hash="c19f729ff39b5b6b438635fe9bd9c6bf"/><file name="Url.php" hash="7b1f83a803fd8788ad4b22aaa982d04f"/></dir><file name="ValidatorChain.php" hash="72148d630805652276c446ebef817f47"/><file name="ValidatorInterface.php" hash="df41d71f7970d758b18bf36c2e49f6f1"/></dir><dir name="Xml"><file name="AbstractXmlPartial.php" hash="303a1e75e4ba719683f09ea9a5cc2743"/><file name="AbstractXmlRequest.php" hash="1b191b6c7e771043ce76f140f8a638b6"/><file name="InvalidXmlException.php" hash="22c021f43b7df35045814cd1ca714968"/><dir name="Request"><file name="AsynchronousStatusRequest.php" hash="4b17665dfef64f23d366f671a06634e3"/><file name="DataRequest.php" hash="af14f72b8c11013cfed42a0b1cbd22bc"/><file name="DownloadRequest.php" hash="05e941a0db71e679d5e3bce00bd5da8d"/><file name="NotificationRequest.php" hash="2902af863aaa33df93cc6e8cfdbf4b8c"/><file name="QueryRequest.php" hash="31746798830da6d1a5909e9f6761e5e1"/><file name="SubmitCartRequest.php" hash="bda8ba8a1662b59e49ddb974219cacf4"/><file name="UploadRequest.php" hash="93f15776fbc75435c417d7fc1963e4c4"/></dir><dir name="Response"><file name="Abstract.php" hash="f7e963bf5586d26347c4d1a6887a4b79"/><file name="AsynchronousStatusResponse.php" hash="6571d1b3093cd73e7eda7ff940df4453"/><file name="DataResponse.php" hash="672c55dd8e770219eac74214726cb5ef"/><file name="DownloadResponse.php" hash="831f43cece257d44fe65d02304362a8c"/><file name="NotificationResponse.php" hash="be7626da7ef2f744f183228110aabbea"/><dir name="Partial"><file name="Address.php" hash="d9ea71d56eb49fe3a512edd412293922"/><file name="Attribute.php" hash="4c27a169c0c773afde7502d6704ee372"/><file name="Category.php" hash="2b040bd3b89121ba28fef0ae07915915"/><file name="CategoryId.php" hash="09f6b3ecf29c4d3a16d37978efd53b4a"/><dir name="DataResponse"><file name="BestPrice.php" hash="e545a040a9201c3c8a71d4b410dcfc4d"/><file name="Confirmation.php" hash="b93b06d18277c10899535d91c1b71829"/><file name="MerchantData.php" hash="f03d2b35691c4356c43251e3c1c1fd20"/><file name="ProductData.php" hash="ab11140f6a0c4556a558d317651db82b"/><file name="QuotaData.php" hash="feb7180ff8c332decc938c1394ab8018"/></dir><dir name="NotificationResponse"><file name="Confirmation.php" hash="62225a96f3c9ce1047afc3f2c04b44ea"/><file name="Consignment.php" hash="20cb98f68cb94033d7abc5cb29ba47a4"/><file name="Credit.php" hash="7dfa1b551c938bbdbcab3e7f5ca4a86e"/><file name="Return.php" hash="d2538c678241727e3fe996d800da75b1"/></dir><dir name="Order"><file name="ContactData.php" hash="27cd1f6a5f8125352f3c383ab40e18af"/><file name="Entry.php" hash="f925387971c3a4e90bf3a66735f78025"/></dir><file name="Order.php" hash="470ed2a1671600318de784fedc34dbb9"/><file name="ProductId.php" hash="098e038cb611d92a65aa8a305567a2d0"/><file name="VariantConfiguration.php" hash="c3840d3e11cc2cc2c50d1f4f03bca963"/></dir><file name="QueryResponse.php" hash="300bfcfdb7f52380b207b45fede50e8e"/><file name="SubmitCartResponse.php" hash="82743d5832c4a12675796bbbde6f72e0"/><file name="UploadResponse.php" hash="36ac43b1e83c64be86307a6c1b7faf3d"/></dir><file name="XmlBuildException.php" hash="72ee8a17dab2c457bb821cd36bbff689"/><file name="XmlResponseParser.php" hash="94502547e6f7495e708652f72155c020"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="AsyncController.php" hash="480e99dbe107a07d88e60950e25479eb"/><file name="LogController.php" hash="b8a5edb6c275746515b553faa6472687"/><file name="OrderImportController.php" hash="aad84807f8e3c85f79609106b948c608"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="149473dc725145be4791a09d898b3115"/><file name="config.xml" hash="c49c7542ebb894d50e902e8d2b059c42"/><file name="system.xml" hash="f4301e5eb845c4f59c1438eb3467ae9a"/></dir><dir name="sql"><dir name="meinpaketcommon_setup"><file name="mysql4-install-1.0.0.php" hash="32c7c5120243756e17201fbd411f20ea"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="d2fbeb850994dc7fc5e15cb523372b6c"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Dhl_MeinPaket.xml" hash="b2ab0b71945c9849bbabe9cac0280beb"/><file name="Dhl_Postpay.xml" hash="26852f055604828ffca341f7437db998"/><file name="Dhl_MeinPaketCommon.xml" hash="b926a30bca6162be2a951f9fb0f62e00"/></dir></dir></target><target name="mage"><dir><dir name="shell"><file name="dhlmeinpaket-category-import.php" hash="b7c47a9b557e7fae4c5309ed95628ab6"/><file name="dhlmeinpaket-product-export.php" hash="9cfb888cdec7047a488fd68e84f5c495"/><file name="dhlmeinpaket-request-bestprice.php" hash="8bbcdd8eb442861f7e94d44b8db99226"/><file name="dhlmeinpaket-order-import.php" hash="7ff812c3c5dbb27d88554946c7e1edab"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/><file name="postpay.xml" hash="890708f41152cb5326040006a0d13bf1"/><file name="meinpaketcommon.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/></dir><dir name="template"><dir name="postpay"><dir><dir name="checkout"><file name="image.phtml" hash="9283259a1e502907c0ba1c659f4ffe1b"/></dir><dir name="payment"><file name="redirect.phtml" hash="4d6e571020670c2069a2323b54f707ea"/></dir></dir><file name="checkout.phtml" hash="424e3ad9ab6f20dba21412ed9de315e6"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="973b9b6f616f8da3528ab68cc379819c"/><file name="postpay.xml" hash="5bef4c0511b6e60ed9abf1503849809e"/><file name="meinpaketcommon.xml" hash="4563e3cf8fc469dcecf1c8ff88e26cf7"/></dir><dir name="template"><dir name="meinpaket"><dir><dir name="catalog"><dir name="product"><dir name="matching"><file name="result.phtml" hash="fcc1b10a90944f5657e7c39bda175d44"/><file name="tab.phtml" hash="bfa9945e79b7ebbf841b95ef99c1fc5d"/></dir></dir></dir><dir name="category"><dir name="import"><file name="import.phtml" hash="d749033dde8fe39bc006d9ac2c458ef1"/><file name="index.phtml" hash="cd832201909c7cbfb76f165fe29c0f03"/></dir></dir></dir><file name="leftmenu.phtml" hash="4afb8d200ed8ceddf2f682c5911c565c"/><file name="steps.phtml" hash="70a343086b4559dc0e77173d9a799e39"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir><dir name="de_DE"><file name="Dhl_MeinPaket.csv" hash="b50d2271da07991f17833bdac53ee71e"/><file name="Dhl_Postpay.csv" hash="5c803ebc2d02c6272b6b7b05951faba6"/><file name="Dhl_MeinPaketCommon.csv" hash="c7b3ed7c2c3d6b24a9bd66925658a439"/></dir></dir></dir></target><target name="mageskin"><dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="meinpaket"><dir name="images"><file name="dhl_checkout_button.png" hash="0b896fdfbd23d33a029f9c3e60757f1c"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="meinpaketcommon"><dir name="images"><file name="1.png" hash="3c2c9a82eb1ba846ba83fff02a7fb89d"/><file name="2.png" hash="ebbbb39b16a74905e9089014dadf27bb"/><file name="3.png" hash="4db863bc8404ba77b12b318d7932ca3d"/><file name="ayn_ger_tuete_produkte_aussen.jpg" hash="18acc68e20f2bc7e9417bb04cb64e2c5"/><file name="dhl_logo_kl.gif" hash="43fdd8c3b923355fdd27070feca49dc7"/><file name="loader.gif" hash="823d2e0f3345c88e9463a38a9c360817"/><file name="shadowtopbg.png" hash="9e274a269dcbe50256d1be49a192a9cd"/></dir><file name="module.css" hash="d477570fa7a981d64d2fdc79af098999"/><file name="module.js" hash="60aec009320033b3c786784934d5cdb2"/></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DHL_Allyouneed</name>
|
| 4 |
+
<version>2.2.2</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>--</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>The Extension connects your Magento shop with DHL Allyouneed.</description>
|
| 11 |
<notes>--</notes>
|
| 12 |
<authors><author><name>DHL Vertriebs GmbH</name><user>ybmdeutschland</user><email>support@meinpaket.de</email></author></authors>
|
| 13 |
+
<date>2015-06-02</date>
|
| 14 |
+
<time>08:49:46</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir><dir name="Dhl"><dir name="MeinPaket"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Backlog"><dir name="Product"><file name="Grid.php" hash="7541700fffd1811943ce7d1d5f1ecdaf"/></dir><file name="Product.php" hash="d0fa6e92c7a2349cb2ef578eb1dad702"/></dir><dir name="BestPrice"><file name="Grid.php" hash="adb8a1085e086f3d1dc57a489619ff5d"/></dir><file name="BestPrice.php" hash="b4f9912d464830a48fd5154c45b0c040"/><dir name="Catalog"><dir name="Product"><dir name="Matching"><file name="Result.php" hash="135446bcf25b60bb017e29b15881daa8"/><file name="Tab.php" hash="3d5c316f511ca64dfa511f04ac4b4a14"/></dir></dir></dir><dir name="CategoryImport"><file name="Import.php" hash="47f0969b175e1480efe8a97480c169da"/><file name="Index.php" hash="745b3c71e101599fbba7a7fd275362c9"/></dir><file name="LeftMenu.php" hash="b60dea4f9e9a39b663cab89be8e32b97"/><dir name="OrderImport"><file name="Index.php" hash="b45724d6ff1fcda6102b3147f3a66a94"/></dir><dir name="ProductExport"><file name="Export.php" hash="e12ef6d9b52a9607820fbcd5e58e76ca"/><file name="Index.php" hash="65cf2306ad93f387f525ec66cec1abee"/><file name="List.php" hash="4a32ced740d35ebb7a10d0fffa782223"/></dir><file name="Steps.php" hash="ffb3f688b43cd0c1f457b89c84e68b7f"/><file name="Version.php" hash="476febd9f5d12ac999bdc7a6d646fe20"/></dir></dir><dir name="Helper"><file name="Attribute.php" hash="36cf44cf54204426e3f50864381a6443"/><file name="Backlog.php" hash="51c08b4ef137799d0e7dbf900543ab3e"/><file name="Cron.php" hash="b320de066adaec731a4ce5d77397a1e8"/><file name="Data.php" hash="da9a067e866242802d77e67b8e319358"/><file name="Order.php" hash="e3dca5761fa8e5e4171a9712b14b5c30"/><file name="Product.php" hash="d1bb6bf5045b569ba349ec2b41dfffd3"/><file name="Shipment.php" hash="c8764cf370aded8e4d3c55e8c218a879"/></dir><dir name="Model"><dir name="Attribute"><file name="Mapping.php" hash="7d8a8d9e18f7c6019ae71a7032061ab7"/></dir><dir name="Backlog"><file name="Product.php" hash="a2d547dcfba28c80819155a73ff5cff4"/></dir><file name="BestPrice.php" hash="b75de965445df6125e115d0d89add52c"/><file name="Category.php" hash="d0f5804e7900915f1c03364b079a7dc5"/><file name="Cron.php" hash="6f418837cc6e452eb8470864f6d4b396"/><dir name="Entity"><dir name="Attribute"><dir name="Frontend"><file name="LabelTranslation.php" hash="7f4b3b49b6e12dadd768aee95e041579"/></dir><dir name="Source"><file name="Carrier.php" hash="65770c58617deb2dce75d8e83e055d79"/><file name="MeinPaketCategory.php" hash="17f784c2d79bfd847dd6472dca661334"/><file name="ProductAttribute.php" hash="aba17fe2a9acb85d0483926c3d5ba9a8"/><file name="ProductSyncMode.php" hash="39db6c156e9100ab59384756ec9ac2c5"/><file name="Taxclass.php" hash="696e7dda6d0bd21eeceb61adc0121cd6"/><file name="Taxrate.php" hash="40bbb2336441fa02916ab992279961e8"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="dcbfbe06f3d0190d5f4a9f0b47973bf2"/><file name="MissingDataException.php" hash="377d6cc783aa6e8973728a77e1e5b8a9"/></dir><dir name="Mysql4"><dir name="Backlog"><dir name="Product"><file name="Collection.php" hash="2711f602d90e22ea72b773003cf38ef4"/></dir><file name="Product.php" hash="d46057bf2e8b93b32b23653222599316"/></dir><dir name="BestPrice"><file name="Collection.php" hash="fedcad4595269a646ff1c452bed87b00"/></dir><file name="BestPrice.php" hash="79399000e407b6a22489d0dbfedd6f34"/><dir name="Category"><file name="Collection.php" hash="06fd9a509c1ef252c0b75f6acda1b9eb"/></dir><file name="Category.php" hash="449c4f90fe5e797ca587025c63c745c3"/></dir><file name="Observer.php" hash="07e0c82cfa3d24feef9a1f3dd3599ada"/><dir name="Payment"><dir name="Method"><file name="Meinpaket.php" hash="dcb6ac810be4d0bb9e426464be91610d"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="6a8952042b65c89685e24b3b503c0d67"/></dir></dir></dir><dir name="Service"><dir name="MarketplaceCategoryImport"><file name="ImportService.php" hash="bf0c889ce83b0afe084c20f97288370e"/><file name="Result.php" hash="cdebaf351ccd1c7aa285801701d32e7f"/></dir><dir name="Product"><dir name="Export"><dir name="Exception"><file name="InvalidEan.php" hash="bc88e3bc48a8a96e45079054290ae68c"/></dir></dir><file name="Export.php" hash="df1c3b905d299deb40b16d9452bcbf02"/></dir><dir name="ProductData"><file name="RequestService.php" hash="028b969756915acb87ab4daced2fd7ac"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="4ddf194a126ce18938610f61fcc1260d"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="e6cd11540ebf6bc87f4d949d81285703"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Backlog"><file name="ProductController.php" hash="bb1f8850442ff1950549b21a2dcf74c5"/></dir><file name="BestPriceController.php" hash="a0eafd1b7ec08351bf3c02bbf66509c6"/><file name="CategoryImportController.php" hash="e614f4bad2b173e067611e4017c7b1a8"/><file name="MatchingController.php" hash="f568a8a7d331264944d1586aa567e6ee"/><file name="ProductExportController.php" hash="19bdeee189cb404f1a0ffdfe21c66087"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="94c3acad50c77221b674d93c63e50e26"/><file name="config.xml" hash="805e78cc1999a74caf3e72099bb47f6d"/><file name="system.xml" hash="381fa94cf8cef54db494eea83f26dff1"/></dir><dir name="sql"><dir name="meinpaket_setup"><file name="mysql4-install-1.0.0.php" hash="f517a9fbaa8e58738d67fc146f493496"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="b52cd860cbc35cff0f704a033b296cdf"/><file name="mysql4-upgrade-1.1.0-2.0.0.php" hash="199b74750e105a4e215bb268dceeb897"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="2312e1c6c3d2c254383b0f0e163cd243"/></dir></dir></dir></dir><dir name="Postpay"><dir><dir name="Block"><dir name="Adminhtml"><file name="Version.php" hash="887b1a63cd09847ba7ab3392bd4f9602"/></dir><file name="Checkout.php" hash="ec8b0f2764d863f03dec0167617510a6"/><dir name="Payment"><dir name="Form"><file name="Standard.php" hash="6aca4f231c317c45ac1556d39639d84f"/></dir><dir name="Info"><file name="Standard.php" hash="45252ddc1f9ebb332ef75efa5f868432"/></dir></dir></dir><dir name="Helper"><file name="Cron.php" hash="c2391d5d085c31f2650655e8acdbfb97"/><file name="Data.php" hash="418df17f5f760dc47bba8bb815d77c58"/></dir><dir name="Model"><file name="Cart.php" hash="e599a64fec791a587552a020b563b426"/><file name="Cron.php" hash="7f563b1e5fabd6534a72ad8239af341d"/><dir name="Mysql4"><dir name="Cart"><file name="Collection.php" hash="3b5150eb69a37a738e3f8494db0f4af1"/></dir><file name="Cart.php" hash="74042698f6fb9f2c7ca054d17f1ff0a2"/></dir><file name="Observer.php" hash="8a9eb2111c0a450e460f10e2b2a721eb"/><dir name="Payment"><dir name="Method"><file name="Express.php" hash="91259cee6e39f7c993a823edbaab4817"/><file name="Standard.php" hash="30d139303e4f80c1ed8c03397666c890"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="ac36d5a7a1988eab4dad69efd472c50f"/></dir></dir></dir><dir name="Service"><dir name="Order"><file name="ImportService.php" hash="60c7e7a116d65b2bb3a1e15f03860558"/></dir></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="7a0801e7c03be05beb8c38004dea1464"/><file name="NotificationController.php" hash="41a608eddf5b891ca0b26b1ef1323691"/><file name="ResponseController.php" hash="79cb81c28fe2460fac0be802a8b598b2"/></dir><dir name="etc"><file name="config.xml" hash="8c25198b05cac404eca2c2fe3e81d35b"/><file name="system.xml" hash="43de1564100406a0cfcf69096f89b41a"/></dir><dir name="sql"><dir name="postpay_setup"><file name="mysql4-install-1.0.0.php" hash="8a5f877376e1df9b1a8bde8d4ce70158"/></dir></dir></dir></dir><dir name="MeinPaketCommon"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Async"><file name="Grid.php" hash="dbf8ebeac3b98728c3cef8785c83c897"/></dir><file name="Async.php" hash="7169a4ea405f54ae1d6da4c56c302fcc"/><dir name="Log"><file name="Grid.php" hash="d371551816e9335e062424e648362ce5"/></dir><file name="Log.php" hash="36a68e5de0cf7dfb87e3b090c05c1e9c"/><file name="Version.php" hash="28defa5c89727f8c3a877affb55d0443"/></dir></dir><dir name="Helper"><file name="Address.php" hash="def05195630f6f98802481d228b4f25e"/><file name="Attribute.php" hash="905db640dbe49889e273aeb7415b2441"/><file name="Cron.php" hash="023eb7080558ebd43af77c1846a44534"/><file name="Data.php" hash="11281a212ef8962b86e4423228bb2d8f"/><file name="Order.php" hash="736798b03eefd167e60854ad2e07792b"/><file name="Product.php" hash="ef60cadd260066b6109711a8e2522c9a"/><file name="Shipment.php" hash="4f62b24147d2998762ca74975e4cc379"/></dir><dir name="Model"><file name="Async.php" hash="3112120abd4ff2773dbcf19dedfd4044"/><dir name="Carrier"><file name="Allyouneed.php" hash="25eaf021d05a89e988c9370f25fd56cf"/><file name="Meinpaket.php" hash="b16814df68414d1fb6e795eadc4d6e83"/></dir><dir name="Client"><file name="BadHttpReturnCodeException.php" hash="3f3d67278be542e42bb882f387c04b67"/><file name="HttpException.php" hash="963bc4b8d30d2996a2a08b4c8aaa6b8f"/><file name="HttpTimeoutException.php" hash="d633742d26c8c5438543c1bbdf5c09bd"/><file name="XmlOverHttp.php" hash="91c8871b396a121abd3ba2dca8a60b4e"/></dir><file name="Cron.php" hash="35c06419c8aa9c6413f8304fda80c3ff"/><dir name="Entity"><dir name="Attribute"><dir name="Source"><file name="Carrier.php" hash="437c70fc9b4e8fa719bdd19676bbbacf"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="808caf989c24f1146d47fc610be6e131"/><file name="MissingDataException.php" hash="67a06069dcb66c02235f636b6790a62d"/></dir><file name="Log.php" hash="516fc34067f4573d160100d7a975a66c"/><dir name="Mysql4"><dir name="Async"><file name="Collection.php" hash="d5f6fbe4a4be75181844eddfbbd557cf"/></dir><file name="Async.php" hash="2120d8c0411c8773853cee4c5925467a"/><dir name="Log"><file name="Collection.php" hash="9bba87a636029d675e1ceda42f96dbc4"/></dir><file name="Log.php" hash="a09be611512f4dc95880e6e00dab93ca"/></dir><file name="Observer.php" hash="15812db421a573332a95f35e9acb9be9"/><dir name="Payment"><dir name="Method"><file name="Allyouneed.php" hash="663bf3c0f796e41a36eed0c277c0af42"/><file name="Meinpaket.php" hash="fdbc24e8330ecbb71243e1f4b5b83bc3"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="ce3a02f9c90e0a1f04a6202305c72ff4"/></dir></dir></dir><dir name="Service"><file name="Abstract.php" hash="406fb92c370df8e93aaffacbad56937b"/><file name="Async.php" hash="5dba3892bc2b78846f2ca7593385a1bc"/><dir name="Order"><dir name="CancellationService"><file name="Result.php" hash="fd81666a5855ea6b25904e14d498ea20"/></dir><file name="CancellationService.php" hash="a6806a3531b596a729a418688ba51dcc"/><file name="ImportService.php" hash="40fab63338fd571dbdbe2f1afefa2d14"/><dir name="RefundExportService"><file name="Result.php" hash="dcfd1f479709368b446041674ee445d8"/></dir><file name="RefundExportService.php" hash="7ab8222a77e76517247f7f710d60b590"/><dir name="ShipmentExportService"><file name="Result.php" hash="0ba713e725c87d0bc82321582e3fe776"/></dir><file name="ShipmentExportService.php" hash="3045ed7ffb7f6a1f4c592e49832577f9"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="51438929f66a7efe3541511b6966ea09"/></dir></dir><dir name="System"><file name="MemoryLimiter.php" hash="813d89b8c21834fb911acc8e59be950c"/></dir><dir name="Validation"><file name="ValidationInterface.php" hash="d11950e6d4a7b52e3784867e8d8d2230"/><dir name="Validator"><file name="CDATAContent.php" hash="425678e9cf44efee9d884c20e4db1f14"/><file name="Ean.php" hash="7bab4c07ebcbdf3ce9e087ff20976d1a"/><file name="IntGreaterZero.php" hash="682c11f5cf24cafcef61350194a65be1"/><file name="NonEmptyString.php" hash="7075a72eace8e1f8c5bc5b61a5a25231"/><file name="StringMaxLength.php" hash="c19f729ff39b5b6b438635fe9bd9c6bf"/><file name="Url.php" hash="7b1f83a803fd8788ad4b22aaa982d04f"/></dir><file name="ValidatorChain.php" hash="72148d630805652276c446ebef817f47"/><file name="ValidatorInterface.php" hash="df41d71f7970d758b18bf36c2e49f6f1"/></dir><dir name="Xml"><file name="AbstractXmlPartial.php" hash="303a1e75e4ba719683f09ea9a5cc2743"/><file name="AbstractXmlRequest.php" hash="9a72dc1e6fe6cc1f027d1f339e6bc0f4"/><file name="InvalidXmlException.php" hash="22c021f43b7df35045814cd1ca714968"/><dir name="Request"><file name="AsynchronousStatusRequest.php" hash="4b17665dfef64f23d366f671a06634e3"/><file name="DataRequest.php" hash="af14f72b8c11013cfed42a0b1cbd22bc"/><file name="DownloadRequest.php" hash="05e941a0db71e679d5e3bce00bd5da8d"/><file name="NotificationRequest.php" hash="2902af863aaa33df93cc6e8cfdbf4b8c"/><file name="QueryRequest.php" hash="31746798830da6d1a5909e9f6761e5e1"/><file name="SubmitCartRequest.php" hash="bda8ba8a1662b59e49ddb974219cacf4"/><file name="UploadRequest.php" hash="aaa0e0cc96cb8b3ff43bf80f0ed4c700"/></dir><dir name="Response"><file name="Abstract.php" hash="f7e963bf5586d26347c4d1a6887a4b79"/><file name="AsynchronousStatusResponse.php" hash="6571d1b3093cd73e7eda7ff940df4453"/><file name="DataResponse.php" hash="672c55dd8e770219eac74214726cb5ef"/><file name="DownloadResponse.php" hash="831f43cece257d44fe65d02304362a8c"/><file name="NotificationResponse.php" hash="be7626da7ef2f744f183228110aabbea"/><dir name="Partial"><file name="Address.php" hash="d9ea71d56eb49fe3a512edd412293922"/><file name="Attribute.php" hash="4c27a169c0c773afde7502d6704ee372"/><file name="Category.php" hash="2b040bd3b89121ba28fef0ae07915915"/><file name="CategoryId.php" hash="09f6b3ecf29c4d3a16d37978efd53b4a"/><dir name="DataResponse"><file name="BestPrice.php" hash="e545a040a9201c3c8a71d4b410dcfc4d"/><file name="Confirmation.php" hash="b93b06d18277c10899535d91c1b71829"/><file name="MerchantData.php" hash="f03d2b35691c4356c43251e3c1c1fd20"/><file name="ProductData.php" hash="ab11140f6a0c4556a558d317651db82b"/><file name="QuotaData.php" hash="feb7180ff8c332decc938c1394ab8018"/></dir><dir name="NotificationResponse"><file name="Confirmation.php" hash="62225a96f3c9ce1047afc3f2c04b44ea"/><file name="Consignment.php" hash="20cb98f68cb94033d7abc5cb29ba47a4"/><file name="Credit.php" hash="7dfa1b551c938bbdbcab3e7f5ca4a86e"/><file name="Return.php" hash="d2538c678241727e3fe996d800da75b1"/></dir><dir name="Order"><file name="ContactData.php" hash="27cd1f6a5f8125352f3c383ab40e18af"/><file name="Entry.php" hash="f925387971c3a4e90bf3a66735f78025"/></dir><file name="Order.php" hash="470ed2a1671600318de784fedc34dbb9"/><file name="ProductId.php" hash="098e038cb611d92a65aa8a305567a2d0"/><file name="VariantConfiguration.php" hash="c3840d3e11cc2cc2c50d1f4f03bca963"/></dir><file name="QueryResponse.php" hash="300bfcfdb7f52380b207b45fede50e8e"/><file name="SubmitCartResponse.php" hash="82743d5832c4a12675796bbbde6f72e0"/><file name="UploadResponse.php" hash="36ac43b1e83c64be86307a6c1b7faf3d"/></dir><file name="XmlBuildException.php" hash="72ee8a17dab2c457bb821cd36bbff689"/><file name="XmlResponseParser.php" hash="94502547e6f7495e708652f72155c020"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="AsyncController.php" hash="480e99dbe107a07d88e60950e25479eb"/><file name="LogController.php" hash="b8a5edb6c275746515b553faa6472687"/><file name="OrderImportController.php" hash="aad84807f8e3c85f79609106b948c608"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="149473dc725145be4791a09d898b3115"/><file name="config.xml" hash="c49c7542ebb894d50e902e8d2b059c42"/><file name="system.xml" hash="f4301e5eb845c4f59c1438eb3467ae9a"/></dir><dir name="sql"><dir name="meinpaketcommon_setup"><file name="mysql4-install-1.0.0.php" hash="619358ad78ac3123511e8d77f11dc39f"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="f44902d977f8aca8e25fd3f716b6d9ab"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Dhl_MeinPaket.xml" hash="b2ab0b71945c9849bbabe9cac0280beb"/><file name="Dhl_Postpay.xml" hash="26852f055604828ffca341f7437db998"/><file name="Dhl_MeinPaketCommon.xml" hash="b926a30bca6162be2a951f9fb0f62e00"/></dir></dir></target><target name="mage"><dir><dir name="shell"><file name="dhlmeinpaket-category-import.php" hash="b7c47a9b557e7fae4c5309ed95628ab6"/><file name="dhlmeinpaket-product-export.php" hash="9cfb888cdec7047a488fd68e84f5c495"/><file name="dhlmeinpaket-request-bestprice.php" hash="8bbcdd8eb442861f7e94d44b8db99226"/><file name="dhlmeinpaket-order-import.php" hash="7ff812c3c5dbb27d88554946c7e1edab"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/><file name="postpay.xml" hash="890708f41152cb5326040006a0d13bf1"/><file name="meinpaketcommon.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/></dir><dir name="template"><dir name="postpay"><dir><dir name="checkout"><file name="image.phtml" hash="9283259a1e502907c0ba1c659f4ffe1b"/></dir><dir name="payment"><file name="redirect.phtml" hash="4d6e571020670c2069a2323b54f707ea"/></dir></dir><file name="checkout.phtml" hash="424e3ad9ab6f20dba21412ed9de315e6"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="973b9b6f616f8da3528ab68cc379819c"/><file name="postpay.xml" hash="5bef4c0511b6e60ed9abf1503849809e"/><file name="meinpaketcommon.xml" hash="4563e3cf8fc469dcecf1c8ff88e26cf7"/></dir><dir name="template"><dir name="meinpaket"><dir><dir name="catalog"><dir name="product"><dir name="matching"><file name="result.phtml" hash="fcc1b10a90944f5657e7c39bda175d44"/><file name="tab.phtml" hash="bfa9945e79b7ebbf841b95ef99c1fc5d"/></dir></dir></dir><dir name="category"><dir name="import"><file name="import.phtml" hash="d749033dde8fe39bc006d9ac2c458ef1"/><file name="index.phtml" hash="cd832201909c7cbfb76f165fe29c0f03"/></dir></dir></dir><file name="leftmenu.phtml" hash="4afb8d200ed8ceddf2f682c5911c565c"/><file name="steps.phtml" hash="70a343086b4559dc0e77173d9a799e39"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir><dir name="de_DE"><file name="Dhl_MeinPaket.csv" hash="b50d2271da07991f17833bdac53ee71e"/><file name="Dhl_Postpay.csv" hash="5c803ebc2d02c6272b6b7b05951faba6"/><file name="Dhl_MeinPaketCommon.csv" hash="c7b3ed7c2c3d6b24a9bd66925658a439"/></dir></dir></dir></target><target name="mageskin"><dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="meinpaket"><dir name="images"><file name="dhl_checkout_button.png" hash="0b896fdfbd23d33a029f9c3e60757f1c"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="meinpaketcommon"><dir name="images"><file name="1.png" hash="3c2c9a82eb1ba846ba83fff02a7fb89d"/><file name="2.png" hash="ebbbb39b16a74905e9089014dadf27bb"/><file name="3.png" hash="4db863bc8404ba77b12b318d7932ca3d"/><file name="ayn_ger_tuete_produkte_aussen.jpg" hash="18acc68e20f2bc7e9417bb04cb64e2c5"/><file name="dhl_logo_kl.gif" hash="43fdd8c3b923355fdd27070feca49dc7"/><file name="loader.gif" hash="823d2e0f3345c88e9463a38a9c360817"/><file name="shadowtopbg.png" hash="9e274a269dcbe50256d1be49a192a9cd"/></dir><file name="module.css" hash="d477570fa7a981d64d2fdc79af098999"/><file name="module.js" hash="60aec009320033b3c786784934d5cdb2"/></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
