Version Notes
none
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fianet_Core |
Version | 0.7.6 |
Comparing to | |
See all releases |
Code changes from version 0.7.5 to 0.7.6
app/code/community/Fianet/Core/Model/Fianet/Order/Rnp.php
CHANGED
@@ -252,7 +252,7 @@ class Fianet_Core_Model_Fianet_Order_Rnp
|
|
252 |
$RnPOrder->info_commande->list->add_product($product);
|
253 |
}
|
254 |
|
255 |
-
$RnPOrder->wallet->datelivr = Mage::getModel('fianet/functions')->get_delivery_date(self::getMaxShippingTimes($order));
|
256 |
return ($RnPOrder);
|
257 |
}
|
258 |
|
252 |
$RnPOrder->info_commande->list->add_product($product);
|
253 |
}
|
254 |
|
255 |
+
$RnPOrder->wallet->datelivr = Mage::getModel('fianet/functions')->get_delivery_date(self::getMaxShippingTimes($order), $configurationData, $order->getRealOrderId());
|
256 |
return ($RnPOrder);
|
257 |
}
|
258 |
|
app/code/community/Fianet/Core/Model/Functions.php
CHANGED
@@ -41,7 +41,7 @@ class Fianet_Core_Model_Functions
|
|
41 |
}
|
42 |
|
43 |
//Calcule la date de livraison en jour ouvr� � partir de la date courante
|
44 |
-
public function get_delivery_date($delivery_times)
|
45 |
{
|
46 |
define('H', date("H"));
|
47 |
define('i', date("i"));
|
@@ -49,26 +49,41 @@ class Fianet_Core_Model_Functions
|
|
49 |
define('m', date("m"));
|
50 |
define('d', date("d"));
|
51 |
define('Y', date("Y"));
|
52 |
-
define('SUNDAY', 0);
|
53 |
define('SATURDAY', 6);
|
|
|
54 |
|
55 |
$nb_days = 0;
|
56 |
$j = 0;
|
|
|
57 |
while ($nb_days < $delivery_times)
|
58 |
{
|
59 |
$j++;
|
60 |
$date = mktime(H, i, s, m, d + $j, Y);
|
61 |
-
$day = date("
|
62 |
if ($day != SUNDAY && $day != SATURDAY)
|
63 |
{
|
64 |
$nb_days++;
|
|
|
65 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
67 |
-
|
|
|
68 |
{//si on d�passe le d�lais de livraison max � causes des samedi et dimanche on remet le d�lais de livraison � son maximum
|
69 |
-
$j =
|
|
|
70 |
}
|
71 |
//$j = 200;
|
|
|
72 |
$date = mktime(H, i, s, m, d + $j, Y);
|
73 |
return (date("Y-m-d", $date));
|
74 |
}
|
41 |
}
|
42 |
|
43 |
//Calcule la date de livraison en jour ouvr� � partir de la date courante
|
44 |
+
public function get_delivery_date($delivery_times, Fianet_Core_Model_Configuration_Value $configurationData, $orderIncrementId)
|
45 |
{
|
46 |
define('H', date("H"));
|
47 |
define('i', date("i"));
|
49 |
define('m', date("m"));
|
50 |
define('d', date("d"));
|
51 |
define('Y', date("Y"));
|
|
|
52 |
define('SATURDAY', 6);
|
53 |
+
define('SUNDAY', 7);
|
54 |
|
55 |
$nb_days = 0;
|
56 |
$j = 0;
|
57 |
+
$log = 'D�lais de livraison le plus long : ' . $delivery_times . " commande #".$orderIncrementId." \r\n";
|
58 |
while ($nb_days < $delivery_times)
|
59 |
{
|
60 |
$j++;
|
61 |
$date = mktime(H, i, s, m, d + $j, Y);
|
62 |
+
$day = date("N", $date);
|
63 |
if ($day != SUNDAY && $day != SATURDAY)
|
64 |
{
|
65 |
$nb_days++;
|
66 |
+
$log .= 'J'.$j . '('.date('Y-m-d', $date).') est un jour de semaine('.date('l', $date).').' . "\r\n";
|
67 |
}
|
68 |
+
else
|
69 |
+
{
|
70 |
+
$log .= 'J'.$j . '('.date('Y-m-d', $date).') est un week-end('.date('l', $date).').' . "\r\n";
|
71 |
+
}
|
72 |
+
}
|
73 |
+
$max = $configurationData->load('RNP_MERCHANT_MAX_DELIVERY_TIMES')->Value;
|
74 |
+
if ($max == null)
|
75 |
+
{
|
76 |
+
$configurationData->setScope(0);
|
77 |
+
$max = $configurationData->load('RNP_MERCHANT_MAX_DELIVERY_TIMES')->Value;
|
78 |
}
|
79 |
+
$max = (int)$max;
|
80 |
+
if ($j > $max)
|
81 |
{//si on d�passe le d�lais de livraison max � causes des samedi et dimanche on remet le d�lais de livraison � son maximum
|
82 |
+
$j = $max;
|
83 |
+
$log .= $max .' jours d�pass�s. Date de livraison ramen�e � '.$max.' jours';
|
84 |
}
|
85 |
//$j = 200;
|
86 |
+
Mage::getModel('fianet/log')->Log($log);
|
87 |
$date = mktime(H, i, s, m, d + $j, Y);
|
88 |
return (date("Y-m-d", $date));
|
89 |
}
|
app/code/community/Fianet/Core/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fianet_Core>
|
5 |
-
<version>0.7.
|
6 |
</Fianet_Core>
|
7 |
</modules>
|
8 |
<admin>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fianet_Core>
|
5 |
+
<version>0.7.6</version>
|
6 |
</Fianet_Core>
|
7 |
</modules>
|
8 |
<admin>
|
app/etc/modules/ZFianet_Core.xml
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
<depends>
|
12 |
</depends>
|
13 |
<!-- declare module's version information for database updates -->
|
14 |
-
<version>0.7.
|
15 |
</Fianet_Core>
|
16 |
</modules>
|
17 |
</config>
|
11 |
<depends>
|
12 |
</depends>
|
13 |
<!-- declare module's version information for database updates -->
|
14 |
+
<version>0.7.6</version>
|
15 |
</Fianet_Core>
|
16 |
</modules>
|
17 |
</config>
|
app/locale/fr_FR/Fianet_Core.csv
CHANGED
@@ -183,4 +183,5 @@
|
|
183 |
"CE outrepassed after negative advice","CE outrepassé après avis négatif"
|
184 |
"Automatic invoicing","Facturation automatique"
|
185 |
"Delivery time based on product attribute","Délai de livraison basé sur l'attribut produit"
|
186 |
-
"Out of stock delivery time based on product attribute","Délai de livraison stock épuisé basé sur l'attribut produit"
|
|
183 |
"CE outrepassed after negative advice","CE outrepassé après avis négatif"
|
184 |
"Automatic invoicing","Facturation automatique"
|
185 |
"Delivery time based on product attribute","Délai de livraison basé sur l'attribut produit"
|
186 |
+
"Out of stock delivery time based on product attribute","Délai de livraison stock épuisé basé sur l'attribut produit"
|
187 |
+
"Merchant maximum delivery times","Délais de livraison marchand maximum"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fianet_Core</name>
|
4 |
-
<version>0.7.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>FIA-NET Core</description>
|
11 |
<notes>none</notes>
|
12 |
<authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
|
13 |
-
<date>2009-08-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="fianet"><file name="attention.gif" hash="d85cab75ed2cba677829db26b1f0a6c2"/><file name="cb15.gif" hash="c9b308669efc27038043480400ab99e2"/><file name="fianet_SAC_icon.gif" hash="be9ce72c9a2bd81611a9e82537a8e15a"/><file name="icon_reset.gif" hash="1a883459cf1035dbc4fcd21c777af477"/><file name="ko.gif" hash="3d479be5db8b4b2ffa67612eeb5d47e1"/><file name="ok.gif" hash="1f6c46ba51a3f8732f62a65c0533f118"/><file name="RnP.gif" hash="d2f0083a5731f301b9a3bdcff327e19c"/><file name="rnp_tag.gif" hash="caeb5b7040352e4bcf7c3e09d4b1f085"/><file name="rond_rouge.gif" hash="c605401e88cd234a31691dc9e4a38b05"/><file name="rond_vert.gif" hash="ce704184ee159f7008f81af51a747e71"/><file name="rond_vertclair.gif" hash="b0310ca593cd539b88463d720df3cd60"/><file name="sof15.gif" hash="0f1e01ce195d2fb3da0700813a5ccd35"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="fianet.xml" hash="37b20e76d2dc7afdd2816fbc883eb9c9"/></dir><dir name="template"><dir name="fianet"><dir name="common"><file name="categoriestree.phtml" hash="3bb8fed1f85618d460d7d1931e42790a"/><file name="categorytreeformcontenair.phtml" hash="5002e67682c35c4ce979adf59c6605d0"/><file name="catproduct.phtml" hash="e001b6dd8d5b6d8f03c5111de7bd6e64"/><file name="shipping.phtml" hash="70fdd0041d41ba826e169bc0dfac4168"/><file name="storeswitcher.phtml" hash="255cb7ae4d4dc0a9967152595851c150"/><file name="test.php" hash="fc14c0b68962188fead13a27d79630fd"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Fianet"><dir name="Core"><dir name="Block"><file name="Configuration.php" hash="679c2014da99aca8d279dec3207b67fa"/><file name="Fianetadmin.php" hash="966319f286bb8e1b3a3bbf449529b914"/><file name="Fianetadmingrid.php" hash="f90f159d8d4499a88595d122d52c4da6"/><dir name="Category"><dir name="Typeproduct"><file name="Edit.php" hash="5cc306c2dfe69c7c99a241ad11378986"/><dir name="Edit"><file name="Form.php" hash="352a9580a7d8d5537a46cf92f790e039"/></dir></dir></dir><dir name="Configuration"><file name="Content.php" hash="2666d1dc97da374db436f6c7cc1a3568"/><file name="Tab.php" hash="d3d348e305b5b626fe740ea15a1e03b0"/><dir name="Edit"><file name="Form.php" hash="6dfdd29d6cf7eece15c054a05f78fbc2"/></dir></dir><dir name="Log"><file name="Grid.php" hash="005297610bb516665ce1d949ac9ad762"/></dir><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="7f6c0663d807c714ee96627b45a7da4e"/></dir></dir><dir name="Store"><file name="Switcher.php" hash="1d1abef2cd836fb35310d44c2ac1515a"/></dir><dir name="Tree"><file name="Abstract.php" hash="4bdf942e7cc7701c7332e48be631726d"/><file name="TypeProduct.php" hash="1625959d2127bb4cd70c8003702333f0"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Fianet.php" hash="48fce9e46ab24d1ec019942a5f63f13d"/></dir><dir name="Renderer"><file name="Fianet.php" hash="c0d01433d99a2e59a45eb3f38d8c7aae"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ConfigurationController.php" hash="7de80c72e09d7b40ad6de21e8126df63"/><file name="LogController.php" hash="a3eda90f82837f610f08babaae62dd6f"/><file name="ShippingController.php" hash="ee1b7f88cb937ae39741d2aee172bf4d"/><dir name="Category"><file name="TypeproductController.php" hash="a92fc9973a6da768db3803295ba73621"/></dir></dir><dir name="Controller"><dir name="Tree"><file name="Abstract.php" hash="63eec36c717c5f511e9f8f27c2086ee7"/><file name="TypeProduct.php" hash="c46431d9122397393cb7975861279823"/></dir></dir><dir name="etc"><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fianet_Core</name>
|
4 |
+
<version>0.7.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
10 |
<description>FIA-NET Core</description>
|
11 |
<notes>none</notes>
|
12 |
<authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
|
13 |
+
<date>2009-08-05</date>
|
14 |
+
<time>09:51:22</time>
|
15 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="fianet"><file name="attention.gif" hash="d85cab75ed2cba677829db26b1f0a6c2"/><file name="cb15.gif" hash="c9b308669efc27038043480400ab99e2"/><file name="fianet_SAC_icon.gif" hash="be9ce72c9a2bd81611a9e82537a8e15a"/><file name="icon_reset.gif" hash="1a883459cf1035dbc4fcd21c777af477"/><file name="ko.gif" hash="3d479be5db8b4b2ffa67612eeb5d47e1"/><file name="ok.gif" hash="1f6c46ba51a3f8732f62a65c0533f118"/><file name="RnP.gif" hash="d2f0083a5731f301b9a3bdcff327e19c"/><file name="rnp_tag.gif" hash="caeb5b7040352e4bcf7c3e09d4b1f085"/><file name="rond_rouge.gif" hash="c605401e88cd234a31691dc9e4a38b05"/><file name="rond_vert.gif" hash="ce704184ee159f7008f81af51a747e71"/><file name="rond_vertclair.gif" hash="b0310ca593cd539b88463d720df3cd60"/><file name="sof15.gif" hash="0f1e01ce195d2fb3da0700813a5ccd35"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="fianet.xml" hash="37b20e76d2dc7afdd2816fbc883eb9c9"/></dir><dir name="template"><dir name="fianet"><dir name="common"><file name="categoriestree.phtml" hash="3bb8fed1f85618d460d7d1931e42790a"/><file name="categorytreeformcontenair.phtml" hash="5002e67682c35c4ce979adf59c6605d0"/><file name="catproduct.phtml" hash="e001b6dd8d5b6d8f03c5111de7bd6e64"/><file name="shipping.phtml" hash="70fdd0041d41ba826e169bc0dfac4168"/><file name="storeswitcher.phtml" hash="255cb7ae4d4dc0a9967152595851c150"/><file name="test.php" hash="fc14c0b68962188fead13a27d79630fd"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Fianet"><dir name="Core"><dir name="Block"><file name="Configuration.php" hash="679c2014da99aca8d279dec3207b67fa"/><file name="Fianetadmin.php" hash="966319f286bb8e1b3a3bbf449529b914"/><file name="Fianetadmingrid.php" hash="f90f159d8d4499a88595d122d52c4da6"/><dir name="Category"><dir name="Typeproduct"><file name="Edit.php" hash="5cc306c2dfe69c7c99a241ad11378986"/><dir name="Edit"><file name="Form.php" hash="352a9580a7d8d5537a46cf92f790e039"/></dir></dir></dir><dir name="Configuration"><file name="Content.php" hash="2666d1dc97da374db436f6c7cc1a3568"/><file name="Tab.php" hash="d3d348e305b5b626fe740ea15a1e03b0"/><dir name="Edit"><file name="Form.php" hash="6dfdd29d6cf7eece15c054a05f78fbc2"/></dir></dir><dir name="Log"><file name="Grid.php" hash="005297610bb516665ce1d949ac9ad762"/></dir><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="7f6c0663d807c714ee96627b45a7da4e"/></dir></dir><dir name="Store"><file name="Switcher.php" hash="1d1abef2cd836fb35310d44c2ac1515a"/></dir><dir name="Tree"><file name="Abstract.php" hash="4bdf942e7cc7701c7332e48be631726d"/><file name="TypeProduct.php" hash="1625959d2127bb4cd70c8003702333f0"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Fianet.php" hash="48fce9e46ab24d1ec019942a5f63f13d"/></dir><dir name="Renderer"><file name="Fianet.php" hash="c0d01433d99a2e59a45eb3f38d8c7aae"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ConfigurationController.php" hash="7de80c72e09d7b40ad6de21e8126df63"/><file name="LogController.php" hash="a3eda90f82837f610f08babaae62dd6f"/><file name="ShippingController.php" hash="ee1b7f88cb937ae39741d2aee172bf4d"/><dir name="Category"><file name="TypeproductController.php" hash="a92fc9973a6da768db3803295ba73621"/></dir></dir><dir name="Controller"><dir name="Tree"><file name="Abstract.php" hash="63eec36c717c5f511e9f8f27c2086ee7"/><file name="TypeProduct.php" hash="c46431d9122397393cb7975861279823"/></dir></dir><dir name="etc"><file name="config.xml" hash="323ee72a297e90c4d9b9578ee3e93ae5"/></dir><dir name="Helper"><file name="Data.php" hash="7db899f5bff9055263a9d3bd5ae0a5db"/></dir><dir name="Model"><file name="Configuration.php" hash="6cd7def3ec6177a86d80ed28c05f3a03"/><file name="Functions.php" hash="f7884317fad8ffde03aabc52c2a5c707"/><file name="Log.php" hash="cd7491b7a63c87698869dfafd0dd246e"/><file name="MageConfiguration.php" hash="5568896b071070c74f8d4b4a8fb0a3e2"/><file name="Product.php" hash="2148f45a495939cc8f43b3610c5c5bf1"/><dir name="Carrier"><file name="Abstract.php" hash="7858ea5d31a311372a3ecd0d743a57ec"/></dir><dir name="Catproduct"><file name="Association.php" hash="70bfd086ca9b04afa4d0ce2a8c4b0970"/></dir><dir name="Configuration"><file name="Global.php" hash="3e168d458383b77700793dde522af600"/><file name="Value.php" hash="8febde7df94e4efc47092f2fa7907e21"/></dir><dir name="Fianet"><file name="EncodingKey.php" hash="844d14d819c6f4984239321371a3d548"/><file name="Hash32bits.php" hash="79f5ebb4be637ddc491c2576caf952ab"/><file name="Hash64bits.php" hash="13c32dd0329bbc8b2a51281ebe7c2594"/><file name="Parser.php" hash="69df91459d02952de1b94d896932c94b"/><file name="Sender.php" hash="512d4f1e3a3c2600d54c2b09c2b4f60a"/><dir name="Order"><file name="Payment.php" hash="77f95978202c1dc4dae4bb74382ad5e1"/><file name="Rnp.php" hash="75630cf83550a9a0b0c1b61b9661a51d"/><file name="Sac.php" hash="bb707fe36be096cb074c3d47d5aa4017"/><file name="Wallet.php" hash="939430dca8a83cb82641c2795b869c58"/><dir name="Adress"><file name="Base.php" hash="c4439959c06b4c0e749022e5c0d88658"/><file name="Billing.php" hash="a67859df048a2c3c9cc5ae8ee6e8f0ca"/><file name="Delivery.php" hash="bed14e9aadb444492112f60b3a3057d4"/></dir><dir name="Info"><file name="Productlist.php" hash="a228536d950b9d396b2cf70d24ebb7e8"/><file name="Rnp.php" hash="942a52baaec47d0f9bd5c0670ecdb326"/><file name="Sac.php" hash="9d34b9ac01f579e6b223fc56a2e9255c"/><file name="Transport.php" hash="784e8fd8631b0c23c2ded761312e7705"/><dir name="ProductList"><file name="Product.php" hash="40c6825d6242196aebd65333228d652b"/></dir></dir><dir name="User"><file name="Base.php" hash="bedaf6ad9a186286b67f8df2fc58a7a4"/><file name="Billing.php" hash="3deceebfee94c7d1cea9164c5005bf42"/><file name="Delivery.php" hash="31db57742dc47a18d420907497747f59"/><file name="Siteconso.php" hash="79175345426f673d3ce8dab417f27ce4"/></dir></dir><dir name="Paramcallback"><file name="Builder.php" hash="926355988f9a8fcb5177e8fd8d174911"/><file name="Element.php" hash="c95fd0148793d4795aa3328e062c0c9a"/></dir></dir><dir name="Mysql4"><file name="Abstract.php" hash="93f8c452dd8876f0de3c0ba1fa814879"/><file name="Configuration.php" hash="5626c157cd4faf725e0c40e17f2c0baa"/><file name="Log.php" hash="80037f49bcfd301c7784610902f2f5da"/><file name="Setup.php" hash="ab0bc73965d4c510d0e296103cfa2db2"/><dir name="Catproduct"><file name="Association.php" hash="bf9d19c299313c818be9f3fd89dba4e5"/><dir name="Association"><file name="Collection.php" hash="e05572d46730324e79f162baea4ec22c"/></dir></dir><dir name="Configuration"><file name="Collection.php" hash="86df2463c56431203e22a7d53fae60ec"/><file name="Global.php" hash="2b9292b69f195f0352a66d7c2a8ebd9b"/><file name="Value.php" hash="7462c03db16a820dae5c6779f3bc684b"/><dir name="Value"><file name="Collection.php" hash="e7d23d66717fe9619c18a73c49e7fdb3"/></dir></dir><dir name="Log"><file name="Collection.php" hash="ae2eb93de231104417afb8c0c9d76e5a"/></dir><dir name="Scope"><file name="Abstract.php" hash="2ee19dd3223713a7a1c882c5ce390f64"/></dir><dir name="Shipping"><file name="Association.php" hash="ea62bb032ae16489d2e163f1feb8ac7f"/><dir name="Association"><file name="Collection.php" hash="d835d5ca6c420cf28e7a25fa91aeaeba"/></dir></dir></dir><dir name="Scope"><file name="Abstract.php" hash="c7ee5ec3d9461e68bbe1baa6333c955c"/></dir><dir name="Shipping"><file name="Association.php" hash="8c988ac90bc259fbdf5faba7b634c9ff"/></dir><dir name="Source"><file name="DeliveryTimes.php" hash="399ba9fbc0e9dd261829351b0f511fd7"/><file name="ModeAction.php" hash="a4047c81cc3eaf77d1b2ec0629bf7cdf"/><file name="PaymentType.php" hash="d504c00aca03f3b4a542660cb3bd7df7"/><file name="ProductType.php" hash="4391ca848db1774da931c0c2d3c021fb"/><file name="ShippingType.php" hash="c421efd3ad231beac452311b76c11d15"/><file name="TypeProduct.php" hash="c5576b2edbf5e443b0387d105385158e"/></dir></dir><dir name="sql"><dir name="fianet_setup"><file name="mysql4-install-0.2.1.php" hash="569a89324a9a39db18c1bd9862f61e3d"/><file name="mysql4-upgrade-0.2.1-0.2.2.php" hash="6c7d28cd4888a9ad80d3f3839f10e41e"/><file name="mysql4-upgrade-0.2.2-0.5.7.php" hash="77939937c4c4f8451f2cae901c7f46c3"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Fianet_Core.csv" hash="78bff3f27be9a7e3bd147edd50fbed6f"/></dir></target><target name="mageetc"><dir name="modules"><file name="ZFianet_Core.xml" hash="62fe551e0b8079e0291ecffc57b5aa2a"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|