Version Notes
- Remove type casting from templates
- Add search term tagging
- Bug fixes
Download this release
Release Info
Developer | Nosto |
Extension | Nosto_Tagging |
Version | 2.6.11 |
Comparing to | |
See all releases |
Code changes from version 2.6.12 to 2.6.11
app/code/community/Nosto/Tagging/Model/Export/Collection/Order.php
CHANGED
@@ -54,7 +54,7 @@ class Nosto_Tagging_Model_Export_Collection_Order extends NostoOrderCollection i
|
|
54 |
foreach ($item->getPurchasedItems() as $orderItem) {
|
55 |
$data['purchased_items'][] = array(
|
56 |
'product_id' => $orderItem->getProductId(),
|
57 |
-
'quantity' =>
|
58 |
'name' => $orderItem->getName(),
|
59 |
'unit_price' => Nosto::helper('price')->format($orderItem->getUnitPrice()),
|
60 |
'price_currency_code' => strtoupper($orderItem->getCurrencyCode()),
|
54 |
foreach ($item->getPurchasedItems() as $orderItem) {
|
55 |
$data['purchased_items'][] = array(
|
56 |
'product_id' => $orderItem->getProductId(),
|
57 |
+
'quantity' => $orderItem->getQuantity(),
|
58 |
'name' => $orderItem->getName(),
|
59 |
'unit_price' => Nosto::helper('price')->format($orderItem->getUnitPrice()),
|
60 |
'price_currency_code' => strtoupper($orderItem->getCurrencyCode()),
|
app/code/community/Nosto/Tagging/Model/Meta/Order.php
CHANGED
@@ -229,7 +229,7 @@ class Nosto_Tagging_Model_Meta_Order extends Mage_Core_Model_Abstract implements
|
|
229 |
'nosto_tagging/meta_order_item',
|
230 |
array(
|
231 |
'productId' => $this->buildItemProductId($item),
|
232 |
-
'quantity' =>
|
233 |
'name' => $this->buildItemName($item),
|
234 |
'unitPrice' => $nostoPriceHelper->getItemFinalPriceInclTax($item),
|
235 |
'currencyCode' => $order->getOrderCurrencyCode()
|
229 |
'nosto_tagging/meta_order_item',
|
230 |
array(
|
231 |
'productId' => $this->buildItemProductId($item),
|
232 |
+
'quantity' => $item->getQtyOrdered(),
|
233 |
'name' => $this->buildItemName($item),
|
234 |
'unitPrice' => $nostoPriceHelper->getItemFinalPriceInclTax($item),
|
235 |
'currencyCode' => $order->getOrderCurrencyCode()
|
app/code/community/Nosto/Tagging/etc/config.xml
CHANGED
@@ -29,7 +29,7 @@
|
|
29 |
<config>
|
30 |
<modules>
|
31 |
<Nosto_Tagging>
|
32 |
-
<version>2.6.
|
33 |
</Nosto_Tagging>
|
34 |
</modules>
|
35 |
<global>
|
29 |
<config>
|
30 |
<modules>
|
31 |
<Nosto_Tagging>
|
32 |
+
<version>2.6.11</version>
|
33 |
</Nosto_Tagging>
|
34 |
</modules>
|
35 |
<global>
|
package.xml
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Nosto_Tagging</name>
|
4 |
-
<version>2.6.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Personalization for Magento</summary>
|
10 |
<description>Increase your conversion rate and average order value by delivering your customers personalized product recommendations throughout their shopping journey.</description>
|
11 |
-
<notes>-
|
12 |
<authors>
|
13 |
<author>
|
14 |
<name>Nosto</name>
|
@@ -17,7 +17,7 @@
|
|
17 |
</author>
|
18 |
</authors>
|
19 |
<date>2016-04-22</date>
|
20 |
-
<time>
|
21 |
<contents>
|
22 |
<target name="magecommunity">
|
23 |
<dir name="Nosto">
|
@@ -56,7 +56,7 @@
|
|
56 |
<file name="Customer.php" hash="6d992a43a75f29836ed1450e130df560"/>
|
57 |
<dir name="Export">
|
58 |
<dir name="Collection">
|
59 |
-
<file name="Order.php" hash="
|
60 |
</dir>
|
61 |
</dir>
|
62 |
<dir name="Meta">
|
@@ -72,7 +72,7 @@
|
|
72 |
<file name="Item.php" hash="d28e1c901b168ad381696dde605551db"/>
|
73 |
<file name="Status.php" hash="795b2e53be043aeb0b27bbd500e2c412"/>
|
74 |
</dir>
|
75 |
-
<file name="Order.php" hash="
|
76 |
<file name="Product.php" hash="77997c199edc6f9c29d29e138b8abff1"/>
|
77 |
</dir>
|
78 |
<file name="Observer.php" hash="ba384c965a2df4044cab0a84bbeacd38"/>
|
@@ -108,7 +108,7 @@
|
|
108 |
<dir name="etc">
|
109 |
<file name="adminhtml.xml" hash="7ea210738a77630f299a14b442f3b8d0"/>
|
110 |
<file name="cache.xml" hash="e874fbbf2eb89b325deb1a62afbcfb4d"/>
|
111 |
-
<file name="config.xml" hash="
|
112 |
<file name="system.xml" hash="7deba6544a09d7af8c07e6b5edc0975a"/>
|
113 |
</dir>
|
114 |
<dir name="sql">
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Nosto_Tagging</name>
|
4 |
+
<version>2.6.11</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Personalization for Magento</summary>
|
10 |
<description>Increase your conversion rate and average order value by delivering your customers personalized product recommendations throughout their shopping journey.</description>
|
11 |
+
<notes>- Remove type casting from templates&#xD;- Add search term tagging&#xD;- Bug fixes</notes>
|
12 |
<authors>
|
13 |
<author>
|
14 |
<name>Nosto</name>
|
17 |
</author>
|
18 |
</authors>
|
19 |
<date>2016-04-22</date>
|
20 |
+
<time>11:48:05</time>
|
21 |
<contents>
|
22 |
<target name="magecommunity">
|
23 |
<dir name="Nosto">
|
56 |
<file name="Customer.php" hash="6d992a43a75f29836ed1450e130df560"/>
|
57 |
<dir name="Export">
|
58 |
<dir name="Collection">
|
59 |
+
<file name="Order.php" hash="c342dc1c1523b9e05255d200c879faab"/>
|
60 |
</dir>
|
61 |
</dir>
|
62 |
<dir name="Meta">
|
72 |
<file name="Item.php" hash="d28e1c901b168ad381696dde605551db"/>
|
73 |
<file name="Status.php" hash="795b2e53be043aeb0b27bbd500e2c412"/>
|
74 |
</dir>
|
75 |
+
<file name="Order.php" hash="4dfb4ee6425ca5f856ac56001f68753e"/>
|
76 |
<file name="Product.php" hash="77997c199edc6f9c29d29e138b8abff1"/>
|
77 |
</dir>
|
78 |
<file name="Observer.php" hash="ba384c965a2df4044cab0a84bbeacd38"/>
|
108 |
<dir name="etc">
|
109 |
<file name="adminhtml.xml" hash="7ea210738a77630f299a14b442f3b8d0"/>
|
110 |
<file name="cache.xml" hash="e874fbbf2eb89b325deb1a62afbcfb4d"/>
|
111 |
+
<file name="config.xml" hash="129ecf2782480b02199a0dad77d20205"/>
|
112 |
<file name="system.xml" hash="7deba6544a09d7af8c07e6b5edc0975a"/>
|
113 |
</dir>
|
114 |
<dir name="sql">
|