Version Notes
Official release.



Compatibility with php running as cgi, allows exporting base or store price.
Download this release
Release Info
Developer | Classy Llama |
Extension | Auctane_ShipStation |
Version | 1.3.47 |
Comparing to | |
See all releases |
Code changes from version 1.3.45 to 1.3.47
app/code/community/Auctane/Api/Model/Action/Export.php
CHANGED
@@ -83,13 +83,7 @@ class Auctane_Api_Model_Action_Export
|
|
83 |
$xml->startElement('Orders');
|
84 |
$xml->writeAttribute('pages', $orders->getLastPageNumber());
|
85 |
foreach ($orders as $order) {
|
86 |
-
// check if shipping info is available with order.
|
87 |
-
$orderShipping = $order->getShippingDescription();
|
88 |
-
if ($orderShipping) {
|
89 |
$this->_writeOrder($order, $xml, $storeId);
|
90 |
-
} else {
|
91 |
-
continue;
|
92 |
-
}
|
93 |
}
|
94 |
$xml->startElement('Query');
|
95 |
$xml->writeCdata($orders->getSelectSql());
|
@@ -163,11 +157,6 @@ class Auctane_Api_Model_Action_Export
|
|
163 |
|
164 |
/* @var $item Mage_Sales_Model_Order_Item */
|
165 |
foreach ($order->getItemsCollection($helper->getIncludedProductTypes()) as $item) {
|
166 |
-
// skip the virtual products.
|
167 |
-
$isVirtual = $item->getIsVirtual();
|
168 |
-
if ($isVirtual) {
|
169 |
-
continue;
|
170 |
-
}
|
171 |
$isBundle = 0;
|
172 |
//Check for the parent bundle item type
|
173 |
$parentItem = $this->_getOrderItemParent($item);
|
@@ -178,6 +167,9 @@ class Auctane_Api_Model_Action_Export
|
|
178 |
$isBundle = 1;
|
179 |
}
|
180 |
}
|
|
|
|
|
|
|
181 |
$this->_orderItem($item, $xml, $storeId, $isBundle);
|
182 |
}
|
183 |
|
83 |
$xml->startElement('Orders');
|
84 |
$xml->writeAttribute('pages', $orders->getLastPageNumber());
|
85 |
foreach ($orders as $order) {
|
|
|
|
|
|
|
86 |
$this->_writeOrder($order, $xml, $storeId);
|
|
|
|
|
|
|
87 |
}
|
88 |
$xml->startElement('Query');
|
89 |
$xml->writeCdata($orders->getSelectSql());
|
157 |
|
158 |
/* @var $item Mage_Sales_Model_Order_Item */
|
159 |
foreach ($order->getItemsCollection($helper->getIncludedProductTypes()) as $item) {
|
|
|
|
|
|
|
|
|
|
|
160 |
$isBundle = 0;
|
161 |
//Check for the parent bundle item type
|
162 |
$parentItem = $this->_getOrderItemParent($item);
|
167 |
$isBundle = 1;
|
168 |
}
|
169 |
}
|
170 |
+
if ($item->getHasChildren() && $item->getParentItemId()) {
|
171 |
+
continue;
|
172 |
+
}
|
173 |
$this->_orderItem($item, $xml, $storeId, $isBundle);
|
174 |
}
|
175 |
|
app/code/community/Auctane/Api/etc/config.xml
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
<config>
|
20 |
<modules>
|
21 |
<Auctane_Api>
|
22 |
-
<version>1.3.
|
23 |
</Auctane_Api>
|
24 |
</modules>
|
25 |
<global>
|
19 |
<config>
|
20 |
<modules>
|
21 |
<Auctane_Api>
|
22 |
+
<version>1.3.47</version>
|
23 |
</Auctane_Api>
|
24 |
</modules>
|
25 |
<global>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Auctane_ShipStation</name>
|
4 |
-
<version>1.3.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -12,9 +12,9 @@
|
|
12 |
&amp;amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;#xD;&amp;amp;amp;#xD;&amp;amp;#xD;&amp;#xD;&#xD;
|
13 |
Compatibility with php running as cgi, allows exporting base or store price.</notes>
|
14 |
<authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
|
15 |
-
<date>2016-
|
16 |
-
<time>
|
17 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Auctane_Api.xml" hash="a95e2ff4d2c0c0e9dbd33fa50d1fdff8"/></dir></target><target name="magecommunity"><dir name="Auctane"><dir name="Api"><file name="CHANGELOG.txt" hash="ac302cdb9f343e0ec036b7a846294235"/><dir name="Helper"><file name="Data.php" hash="cf9c04c83f3bacb3c2a78aad2a53a81c"/></dir><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="LICENSE.txt" hash="34410d4f566fdc33f094525a2d9865fa"/><file name="LICENSE_AFL.txt" hash="0e3cb8112c018920eee7a316a2a69103"/><dir name="Model"><dir name="Action"><file name="Export.php" hash="
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Auctane_ShipStation</name>
|
4 |
+
<version>1.3.47</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
12 |
&amp;amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;#xD;&amp;amp;amp;#xD;&amp;amp;#xD;&amp;#xD;&#xD;
|
13 |
Compatibility with php running as cgi, allows exporting base or store price.</notes>
|
14 |
<authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
|
15 |
+
<date>2016-07-26</date>
|
16 |
+
<time>11:07:16</time>
|
17 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Auctane_Api.xml" hash="a95e2ff4d2c0c0e9dbd33fa50d1fdff8"/></dir></target><target name="magecommunity"><dir name="Auctane"><dir name="Api"><file name="CHANGELOG.txt" hash="ac302cdb9f343e0ec036b7a846294235"/><dir name="Helper"><file name="Data.php" hash="cf9c04c83f3bacb3c2a78aad2a53a81c"/></dir><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="LICENSE.txt" hash="34410d4f566fdc33f094525a2d9865fa"/><file name="LICENSE_AFL.txt" hash="0e3cb8112c018920eee7a316a2a69103"/><dir name="Model"><dir name="Action"><file name="Export.php" hash="01814fd93d99d9c37308a11734cbe622"/><file name="Shipnotify.php" hash="496a7fbeef43854480c06ac50d4eeeef"/></dir><file name="Observer.php" hash="e16263badac8fbd55aa2cb6a9ee5c537"/><dir name="Server"><file name="Adapter.php" hash="cbdb6c050722cf96bb0e424a3e4dc327"/></dir><dir name="System"><dir name="Source"><dir name="Config"><file name="Customattributes.php" hash="b8b4ea3c5c349e872de93c1dbfcc4171"/><file name="Import.php" hash="bed3f5935efde27705589afc448d5dd4"/><file name="Prices.php" hash="203d324934d8cfe0776a0ce764dc118d"/></dir></dir></dir></dir><dir name="controllers"><file name="AuctaneController.php" hash="ae73284a10d84540591b4ff9ad0814dd"/></dir><dir name="etc"><file name="api.xml" hash="41c92fc762da05e68b19f0eaf3100260"/><file name="config.xml" hash="8f4538b5911dbf68143e70dc3fd9f4de"/><file name="system.xml" hash="098b6f441ea56ca687fc1bf9f90d2d56"/></dir><dir name="sql"><dir name="auctaneapi_setup"><file name="mysql4-install-1.3.11.php" hash="17aa8f981f75f1e1d62e8dbdde2f950d"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="auctaneapi"><dir name="css"><file name="master.css" hash="0b35fa9797b3bd868b3725a85d4347af"/></dir><dir name="images"><file name="auctaneapi.png" hash="294d531f2f4f6dd85bdccd124a3057f6"/><file name="btn_bl.png" hash="093ac74aedfd1dd0addbfac3a19ced95"/><file name="header.png" hash="9228dfeb910aa6f3141d40966a6dba32"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="auctaneapi.xml" hash="a6fe62d8258e423bee3a129165c0d313"/></dir></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|