Version Notes
Bug fixing release
Download this release
Release Info
| Developer | Futurenext |
| Extension | Futurenext_Zakeke |
| Version | 1.0.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0.2 to 1.0.0.3
- app/code/community/Futurenext/Zakeke/Block/Customize.php +1 -1
- app/code/community/Futurenext/Zakeke/etc/config.xml +1 -1
- app/design/frontend/base/default/template/zakeke/customizeButton.phtml +56 -51
- app/design/frontend/base/default/template/zakeke/sales/order/items/renderer/zakeke.phtml +349 -349
- package.xml +4 -4
app/code/community/Futurenext/Zakeke/Block/Customize.php
CHANGED
|
@@ -46,7 +46,7 @@ class Futurenext_Zakeke_Block_Customize extends Futurenext_Zakeke_Block_View
|
|
| 46 |
if ($this->isLarge()) {
|
| 47 |
$html = '<iframe id="zakeke-frame" src="' . $this->getLargeUrl() . '" style="min-height: 719px; width: 100%" frameBorder="0"></iframe>';
|
| 48 |
} else {
|
| 49 |
-
$html = '<iframe id="zakeke-frame" src="' . $this->getMobileUrl() .'" style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999999; height: 100
|
| 50 |
. '<style>body { overflow: hidden }</style>';
|
| 51 |
}
|
| 52 |
|
| 46 |
if ($this->isLarge()) {
|
| 47 |
$html = '<iframe id="zakeke-frame" src="' . $this->getLargeUrl() . '" style="min-height: 719px; width: 100%" frameBorder="0"></iframe>';
|
| 48 |
} else {
|
| 49 |
+
$html = '<iframe id="zakeke-frame" src="' . $this->getMobileUrl() .'" style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999999; height: 100%; width: 100%;" frameBorder="0"></iframe>'
|
| 50 |
. '<style>body { overflow: hidden }</style>';
|
| 51 |
}
|
| 52 |
|
app/code/community/Futurenext/Zakeke/etc/config.xml
CHANGED
|
@@ -12,7 +12,7 @@
|
|
| 12 |
<config>
|
| 13 |
<modules>
|
| 14 |
<Futurenext_Zakeke>
|
| 15 |
-
<version>1.0.0.
|
| 16 |
</Futurenext_Zakeke>
|
| 17 |
</modules>
|
| 18 |
|
| 12 |
<config>
|
| 13 |
<modules>
|
| 14 |
<Futurenext_Zakeke>
|
| 15 |
+
<version>1.0.0.3</version>
|
| 16 |
</Futurenext_Zakeke>
|
| 17 |
</modules>
|
| 18 |
|
app/design/frontend/base/default/template/zakeke/customizeButton.phtml
CHANGED
|
@@ -1,52 +1,57 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*******************************************************
|
| 3 |
-
* Copyright (C) 2016 FutureNext SRL
|
| 4 |
-
*
|
| 5 |
-
* This file is part of Zakeke.
|
| 6 |
-
*
|
| 7 |
-
* Zakeke can not be copied and/or distributed without the express
|
| 8 |
-
* permission of FutureNext SRL
|
| 9 |
-
*******************************************************/
|
| 10 |
-
|
| 11 |
-
/** @var Futurenext_Zakeke_Block_CustomizeButton $this */
|
| 12 |
-
?>
|
| 13 |
-
|
| 14 |
-
<?php if ($this->isProductCustomizable()): ?>
|
| 15 |
-
<button id="zakeke-customize-button" class="button">
|
| 16 |
-
<span><?php /* @escapeNotVerified */ echo $this->__('Customize') ?></span>
|
| 17 |
-
</button>
|
| 18 |
-
|
| 19 |
-
<script type="application/javascript">
|
| 20 |
-
(function (config) {
|
| 21 |
-
'use strict';
|
| 22 |
-
|
| 23 |
-
var zakekeButton = window.document.getElementById('zakeke-customize-button'),
|
| 24 |
-
addtoCartForm = window.document.getElementById('product_addtocart_form'),
|
| 25 |
-
observer = new MutationObserver(function() {
|
| 26 |
-
zakekeButton.removeAttribute('onclick');
|
| 27 |
-
});
|
| 28 |
-
|
| 29 |
-
observer.observe(zakekeButton, {
|
| 30 |
-
attributes: true,
|
| 31 |
-
attributeFilter: ['onclick'],
|
| 32 |
-
attributeOldValue: false,
|
| 33 |
-
childList: false,
|
| 34 |
-
characterData: false
|
| 35 |
-
});
|
| 36 |
-
|
| 37 |
-
zakekeButton.addEventListener('click', function (event) {
|
| 38 |
-
var cartForm = new VarienForm('product_addtocart_form');
|
| 39 |
-
if (zakekeButton.disabled || (cartForm && !cartForm.validator.validate())) {
|
| 40 |
-
event.preventDefault();
|
| 41 |
-
return false;
|
| 42 |
-
}
|
| 43 |
-
|
| 44 |
-
zakekeButton.disabled = true;
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
<?php endif; ?>
|
| 1 |
+
<?php
|
| 2 |
+
/*******************************************************
|
| 3 |
+
* Copyright (C) 2016 FutureNext SRL
|
| 4 |
+
*
|
| 5 |
+
* This file is part of Zakeke.
|
| 6 |
+
*
|
| 7 |
+
* Zakeke can not be copied and/or distributed without the express
|
| 8 |
+
* permission of FutureNext SRL
|
| 9 |
+
*******************************************************/
|
| 10 |
+
|
| 11 |
+
/** @var Futurenext_Zakeke_Block_CustomizeButton $this */
|
| 12 |
+
?>
|
| 13 |
+
|
| 14 |
+
<?php if ($this->isProductCustomizable()): ?>
|
| 15 |
+
<button id="zakeke-customize-button" class="button">
|
| 16 |
+
<span><?php /* @escapeNotVerified */ echo $this->__('Customize') ?></span>
|
| 17 |
+
</button>
|
| 18 |
+
|
| 19 |
+
<script type="application/javascript">
|
| 20 |
+
(function (config) {
|
| 21 |
+
'use strict';
|
| 22 |
+
|
| 23 |
+
var zakekeButton = window.document.getElementById('zakeke-customize-button'),
|
| 24 |
+
addtoCartForm = window.document.getElementById('product_addtocart_form'),
|
| 25 |
+
observer = new MutationObserver(function() {
|
| 26 |
+
zakekeButton.removeAttribute('onclick');
|
| 27 |
+
});
|
| 28 |
+
|
| 29 |
+
observer.observe(zakekeButton, {
|
| 30 |
+
attributes: true,
|
| 31 |
+
attributeFilter: ['onclick'],
|
| 32 |
+
attributeOldValue: false,
|
| 33 |
+
childList: false,
|
| 34 |
+
characterData: false
|
| 35 |
+
});
|
| 36 |
+
|
| 37 |
+
zakekeButton.addEventListener('click', function (event) {
|
| 38 |
+
var cartForm = new VarienForm('product_addtocart_form');
|
| 39 |
+
if (zakekeButton.disabled || (cartForm && !cartForm.validator.validate())) {
|
| 40 |
+
event.preventDefault();
|
| 41 |
+
return false;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
zakekeButton.disabled = true;
|
| 45 |
+
|
| 46 |
+
var resolutionInput = window.document.createElement('INPUT');
|
| 47 |
+
resolutionInput.type = 'hidden';
|
| 48 |
+
resolutionInput.name = 'resolution';
|
| 49 |
+
resolutionInput.value = window.screen.width + 'x' + window.screen.height;
|
| 50 |
+
addtoCartForm.appendChild(resolutionInput);
|
| 51 |
+
|
| 52 |
+
addtoCartForm.action = config.customizeUrl;
|
| 53 |
+
addtoCartForm.submit();
|
| 54 |
+
}, true);
|
| 55 |
+
})(<?php echo $this->getJsonConfig() ?>);
|
| 56 |
+
</script>
|
| 57 |
<?php endif; ?>
|
app/design/frontend/base/default/template/zakeke/sales/order/items/renderer/zakeke.phtml
CHANGED
|
@@ -1,349 +1,349 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*******************************************************
|
| 3 |
-
* Copyright (C) 2016 FutureNext SRL
|
| 4 |
-
*
|
| 5 |
-
* This file is part of Zakeke.
|
| 6 |
-
*
|
| 7 |
-
* Zakeke can not be copied and/or distributed without the express
|
| 8 |
-
* permission of FutureNext SRL
|
| 9 |
-
*******************************************************/
|
| 10 |
-
|
| 11 |
-
/** @var Futurenext_Zakeke_Block_SalesItemRenderer $this */
|
| 12 |
-
?>
|
| 13 |
-
<?php
|
| 14 |
-
$_item = $this->getItem();
|
| 15 |
-
$_zakekePreviews = $this->getZakekePreviews();
|
| 16 |
-
?>
|
| 17 |
-
<tr class="border" id="order-item-row-<?php echo $_item->getId() ?>">
|
| 18 |
-
<td><h3 class="product-name"><?php echo $this->escapeHtml($_item->getName()) ?></h3>
|
| 19 |
-
<div class="zakeke-preview">
|
| 20 |
-
<div style="display: flex">
|
| 21 |
-
<?php foreach ($_zakekePreviews as $preview): ?>
|
| 22 |
-
<div data-zakeke-label="<?php echo $this->quoteEscape($preview->label) ?>" style="position: relative; max-height: 186px; overflow: hidden; cursor: pointer; margin: 0px;"
|
| 23 |
-
onclick="zakekeShowPreview(this); return false;">
|
| 24 |
-
<img src="<?php echo $this->quoteEscape($preview->url) ?>" style="width: 180px">
|
| 25 |
-
</div>
|
| 26 |
-
<?php endforeach; ?>
|
| 27 |
-
</div>
|
| 28 |
-
</div>
|
| 29 |
-
<?php if ($_options = $this->getItemOptions()): ?>
|
| 30 |
-
<dl class="item-options">
|
| 31 |
-
<?php foreach ($_options as $_option) : ?>
|
| 32 |
-
<?php if (isset($_option['is_zakeke'])) continue; ?>
|
| 33 |
-
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
| 34 |
-
<?php if (!$this->getPrintStatus()): ?>
|
| 35 |
-
<?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
|
| 36 |
-
<dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>>
|
| 37 |
-
<?php echo $_formatedOptionValue['value'] ?>
|
| 38 |
-
<?php if (isset($_formatedOptionValue['full_view'])): ?>
|
| 39 |
-
<div class="truncated_full_value">
|
| 40 |
-
<dl class="item-options">
|
| 41 |
-
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
| 42 |
-
<dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
|
| 43 |
-
</dl>
|
| 44 |
-
</div>
|
| 45 |
-
<?php endif; ?>
|
| 46 |
-
</dd>
|
| 47 |
-
<?php else: ?>
|
| 48 |
-
<dd><?php echo $this->escapeHtml((isset($_option['print_value']) ? $_option['print_value'] : $_option['value'])) ?></dd>
|
| 49 |
-
<?php endif; ?>
|
| 50 |
-
<?php endforeach; ?>
|
| 51 |
-
</dl>
|
| 52 |
-
<?php endif; ?>
|
| 53 |
-
|
| 54 |
-
<?php echo $this->escapeHtml($_item->getDescription()) ?>
|
| 55 |
-
<?php if ($this->helper('giftmessage/message')->getIsMessagesAvailable('order_item', $_item) && $_item->getGiftMessageId()): ?>
|
| 56 |
-
<br/><a href="#" id="order-item-gift-message-link-<?php echo $_item->getId() ?>"
|
| 57 |
-
class="giftmessage-preview-link expand"
|
| 58 |
-
onclick="return giftMessageToogle('<?php echo $_item->getId() ?>')"><?php echo $this->__('Gift Message') ?></a>
|
| 59 |
-
<?php endif; ?>
|
| 60 |
-
</td>
|
| 61 |
-
<td><?php echo $this->escapeHtml(Mage::helper('core/string')->splitInjection($this->getSku())) ?></td>
|
| 62 |
-
|
| 63 |
-
<td class="a-right nowrap">
|
| 64 |
-
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceExclTax()): ?>
|
| 65 |
-
<span class="price-excl-tax">
|
| 66 |
-
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 67 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 68 |
-
<span class="cart-price">
|
| 69 |
-
<?php endif; ?>
|
| 70 |
-
<span class="label"><?php echo $this->__('Excl. Tax'); ?>:</span>
|
| 71 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 72 |
-
</span>
|
| 73 |
-
<?php endif; ?>
|
| 74 |
-
<?php endif; ?>
|
| 75 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 76 |
-
<span class="cart-tax-total"
|
| 77 |
-
onclick="taxToggle('eunit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 78 |
-
<?php else: ?>
|
| 79 |
-
<span class="cart-price">
|
| 80 |
-
<?php endif; ?>
|
| 81 |
-
|
| 82 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 83 |
-
<?php echo $this->getOrder()->formatPrice($this->getItem()->getPrice() + $this->getItem()->getWeeeTaxAppliedAmount() + $this->getItem()->getWeeeTaxDisposition()); ?>
|
| 84 |
-
<?php else: ?>
|
| 85 |
-
<?php echo $this->getOrder()->formatPrice($this->getItem()->getPrice()) ?>
|
| 86 |
-
<?php endif; ?>
|
| 87 |
-
</span>
|
| 88 |
-
|
| 89 |
-
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 90 |
-
|
| 91 |
-
<span class="cart-tax-info" id="eunit-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 92 |
-
style="display:none;">
|
| 93 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 94 |
-
<small>
|
| 95 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 96 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 97 |
-
: <?php echo $this->getOrder()->formatPrice($tax['amount']); ?></span>
|
| 98 |
-
<?php endforeach; ?>
|
| 99 |
-
</small>
|
| 100 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 101 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 102 |
-
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 103 |
-
: <?php echo $this->getOrder()->formatPrice($tax['amount']); ?></small></span>
|
| 104 |
-
<?php endforeach; ?>
|
| 105 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 106 |
-
<small>
|
| 107 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 108 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 109 |
-
: <?php echo $this->getOrder()->formatPrice($tax['amount']); ?></span>
|
| 110 |
-
<?php endforeach; ?>
|
| 111 |
-
</small>
|
| 112 |
-
<?php endif; ?>
|
| 113 |
-
</span>
|
| 114 |
-
|
| 115 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 116 |
-
<span class="cart-tax-total"
|
| 117 |
-
onclick="taxToggle('eunit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 118 |
-
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>
|
| 119 |
-
:<br/> <?php echo $this->getOrder()->formatPrice($this->getItem()->getPrice() + $this->getItem()->getWeeeTaxAppliedAmount() + $this->getItem()->getWeeeTaxDisposition()); ?></span>
|
| 120 |
-
</span>
|
| 121 |
-
<?php endif; ?>
|
| 122 |
-
<?php endif; ?>
|
| 123 |
-
</span>
|
| 124 |
-
<br/>
|
| 125 |
-
<?php endif; ?>
|
| 126 |
-
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceInclTax()): ?>
|
| 127 |
-
<span class="price-incl-tax">
|
| 128 |
-
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 129 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 130 |
-
<span class="cart-price">
|
| 131 |
-
<?php endif; ?>
|
| 132 |
-
<span class="label"><?php echo $this->__('Incl. Tax'); ?>:</span>
|
| 133 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 134 |
-
</span>
|
| 135 |
-
<?php endif; ?>
|
| 136 |
-
<?php endif; ?>
|
| 137 |
-
<?php $_incl = $this->helper('checkout')->getPriceInclTax($this->getItem()); ?>
|
| 138 |
-
|
| 139 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 140 |
-
<span class="cart-tax-total"
|
| 141 |
-
onclick="taxToggle('unit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 142 |
-
<?php else: ?>
|
| 143 |
-
<span class="cart-price">
|
| 144 |
-
<?php endif; ?>
|
| 145 |
-
|
| 146 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 147 |
-
<?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?>
|
| 148 |
-
<?php else: ?>
|
| 149 |
-
<?php echo $this->getOrder()->formatPrice($_incl - $this->getItem()->getWeeeTaxDisposition()) ?>
|
| 150 |
-
<?php endif; ?>
|
| 151 |
-
|
| 152 |
-
</span>
|
| 153 |
-
|
| 154 |
-
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 155 |
-
|
| 156 |
-
<span class="cart-tax-info" id="unit-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 157 |
-
style="display:none;">
|
| 158 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 159 |
-
<small>
|
| 160 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 161 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 162 |
-
: <?php echo $this->getOrder()->formatPrice($tax['amount_incl_tax']); ?></span>
|
| 163 |
-
<?php endforeach; ?>
|
| 164 |
-
</small>
|
| 165 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 166 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 167 |
-
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 168 |
-
: <?php echo $this->getOrder()->formatPrice($tax['amount_incl_tax']); ?></small></span>
|
| 169 |
-
<?php endforeach; ?>
|
| 170 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 171 |
-
<small>
|
| 172 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 173 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 174 |
-
: <?php echo $this->getOrder()->formatPrice($tax['amount_incl_tax']); ?></span>
|
| 175 |
-
<?php endforeach; ?>
|
| 176 |
-
</small>
|
| 177 |
-
<?php endif; ?>
|
| 178 |
-
</span>
|
| 179 |
-
|
| 180 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 181 |
-
<span class="cart-tax-total"
|
| 182 |
-
onclick="taxToggle('unit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 183 |
-
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>
|
| 184 |
-
:<br/> <?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span>
|
| 185 |
-
</span>
|
| 186 |
-
<?php endif; ?>
|
| 187 |
-
<?php endif; ?>
|
| 188 |
-
</span>
|
| 189 |
-
<?php endif; ?>
|
| 190 |
-
</td>
|
| 191 |
-
|
| 192 |
-
<td class="a-right nowrap">
|
| 193 |
-
<span class="nobr">
|
| 194 |
-
<?php if ($this->getItem()->getQtyOrdered() > 0): ?>
|
| 195 |
-
<?php echo $this->__('Ordered'); ?>:
|
| 196 |
-
<strong><?php echo $this->getItem()->getQtyOrdered() * 1 ?></strong><br/>
|
| 197 |
-
<?php endif; ?>
|
| 198 |
-
<?php if ($this->getItem()->getQtyShipped() > 0): ?>
|
| 199 |
-
<?php echo $this->__('Shipped'); ?>:
|
| 200 |
-
<strong><?php echo $this->getItem()->getQtyShipped() * 1 ?></strong><br/>
|
| 201 |
-
<?php endif; ?>
|
| 202 |
-
<?php if ($this->getItem()->getQtyCanceled() > 0): ?>
|
| 203 |
-
<?php echo $this->__('Canceled'); ?>:
|
| 204 |
-
<strong><?php echo $this->getItem()->getQtyCanceled() * 1 ?></strong><br/>
|
| 205 |
-
<?php endif; ?>
|
| 206 |
-
<?php if ($this->getItem()->getQtyRefunded() > 0): ?>
|
| 207 |
-
<?php echo $this->__('Refunded'); ?>:
|
| 208 |
-
<strong><?php echo $this->getItem()->getQtyRefunded() * 1 ?></strong><br/>
|
| 209 |
-
<?php endif; ?>
|
| 210 |
-
</span>
|
| 211 |
-
</td>
|
| 212 |
-
<td class="a-right nowrap">
|
| 213 |
-
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceExclTax()): ?>
|
| 214 |
-
<span class="price-excl-tax">
|
| 215 |
-
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 216 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 217 |
-
<span class="cart-price">
|
| 218 |
-
<?php endif; ?>
|
| 219 |
-
<span class="label"><?php echo $this->__('Excl. Tax'); ?>:</span>
|
| 220 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 221 |
-
</span>
|
| 222 |
-
<?php endif; ?>
|
| 223 |
-
<?php endif; ?>
|
| 224 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 225 |
-
<span class="cart-tax-total"
|
| 226 |
-
onclick="taxToggle('esubtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 227 |
-
<?php else: ?>
|
| 228 |
-
<span class="cart-price">
|
| 229 |
-
<?php endif; ?>
|
| 230 |
-
|
| 231 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 232 |
-
<?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal() + $this->getItem()->getWeeeTaxAppliedRowAmount() + $this->getItem()->getWeeeTaxRowDisposition()); ?>
|
| 233 |
-
<?php else: ?>
|
| 234 |
-
<?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal()) ?>
|
| 235 |
-
<?php endif; ?>
|
| 236 |
-
|
| 237 |
-
</span>
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 241 |
-
|
| 242 |
-
<span class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 243 |
-
style="display:none;">
|
| 244 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 245 |
-
<small>
|
| 246 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 247 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 248 |
-
: <?php echo $this->getOrder()->formatPrice($tax['row_amount']); ?></span>
|
| 249 |
-
<?php endforeach; ?>
|
| 250 |
-
</small>
|
| 251 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 252 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 253 |
-
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 254 |
-
: <?php echo $this->getOrder()->formatPrice($tax['row_amount']); ?></small></span>
|
| 255 |
-
<?php endforeach; ?>
|
| 256 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 257 |
-
<small>
|
| 258 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 259 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 260 |
-
: <?php echo $this->getOrder()->formatPrice($tax['row_amount']); ?></span>
|
| 261 |
-
<?php endforeach; ?>
|
| 262 |
-
</small>
|
| 263 |
-
<?php endif; ?>
|
| 264 |
-
</span>
|
| 265 |
-
|
| 266 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 267 |
-
<span class="cart-tax-total"
|
| 268 |
-
onclick="taxToggle('esubtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 269 |
-
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>
|
| 270 |
-
:<br/> <?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal() + $this->getItem()->getWeeeTaxAppliedRowAmount() + $this->getItem()->getWeeeTaxRowDisposition()); ?></span>
|
| 271 |
-
</span>
|
| 272 |
-
<?php endif; ?>
|
| 273 |
-
<?php endif; ?>
|
| 274 |
-
</span>
|
| 275 |
-
<br/>
|
| 276 |
-
<?php endif; ?>
|
| 277 |
-
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceInclTax()): ?>
|
| 278 |
-
<span class="price-incl-tax">
|
| 279 |
-
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 280 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 281 |
-
<span class="cart-price">
|
| 282 |
-
<?php endif; ?>
|
| 283 |
-
<span class="label"><?php echo $this->__('Incl. Tax'); ?>:</span>
|
| 284 |
-
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 285 |
-
</span>
|
| 286 |
-
<?php endif; ?>
|
| 287 |
-
<?php endif; ?>
|
| 288 |
-
<?php $_incl = $this->helper('checkout')->getSubtotalInclTax($this->getItem()); ?>
|
| 289 |
-
|
| 290 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 291 |
-
<span class="cart-tax-total"
|
| 292 |
-
onclick="taxToggle('subtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 293 |
-
<?php else: ?>
|
| 294 |
-
<span class="cart-price">
|
| 295 |
-
<?php endif; ?>
|
| 296 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 297 |
-
<?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?>
|
| 298 |
-
<?php else: ?>
|
| 299 |
-
<?php echo $this->getOrder()->formatPrice($_incl - $this->getItem()->getWeeeTaxRowDisposition()) ?>
|
| 300 |
-
<?php endif; ?>
|
| 301 |
-
|
| 302 |
-
</span>
|
| 303 |
-
|
| 304 |
-
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 305 |
-
|
| 306 |
-
<span class="cart-tax-info" id="subtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 307 |
-
style="display:none;">
|
| 308 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 309 |
-
<small>
|
| 310 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 311 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 312 |
-
: <?php echo $this->getOrder()->formatPrice($tax['row_amount_incl_tax']); ?></span>
|
| 313 |
-
<?php endforeach; ?>
|
| 314 |
-
</small>
|
| 315 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 316 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 317 |
-
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 318 |
-
: <?php echo $this->getOrder()->formatPrice($tax['row_amount_incl_tax']); ?></small></span>
|
| 319 |
-
<?php endforeach; ?>
|
| 320 |
-
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 321 |
-
<small>
|
| 322 |
-
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 323 |
-
<span class="nobr"><?php echo $tax['title']; ?>
|
| 324 |
-
: <?php echo $this->getOrder()->formatPrice($tax['row_amount_incl_tax']); ?></span>
|
| 325 |
-
<?php endforeach; ?>
|
| 326 |
-
</small>
|
| 327 |
-
<?php endif; ?>
|
| 328 |
-
</span>
|
| 329 |
-
|
| 330 |
-
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 331 |
-
<span class="cart-tax-total"
|
| 332 |
-
onclick="taxToggle('subtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 333 |
-
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>
|
| 334 |
-
:<br/> <?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?></span>
|
| 335 |
-
</span>
|
| 336 |
-
<?php endif; ?>
|
| 337 |
-
<?php endif; ?>
|
| 338 |
-
</span>
|
| 339 |
-
<?php endif; ?>
|
| 340 |
-
</td>
|
| 341 |
-
<!--
|
| 342 |
-
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceExclTax()): ?>
|
| 343 |
-
<th class="nowrap a-right"><?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal()) ?></th>
|
| 344 |
-
<?php endif; ?>
|
| 345 |
-
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceInclTax()): ?>
|
| 346 |
-
<th class="nowrap a-right"><?php echo $this->getOrder()->formatPrice($this->helper('checkout')->getSubtotalInclTax($this->getItem())); ?></th>
|
| 347 |
-
<?php endif; ?>
|
| 348 |
-
-->
|
| 349 |
-
</tr>
|
| 1 |
+
<?php
|
| 2 |
+
/*******************************************************
|
| 3 |
+
* Copyright (C) 2016 FutureNext SRL
|
| 4 |
+
*
|
| 5 |
+
* This file is part of Zakeke.
|
| 6 |
+
*
|
| 7 |
+
* Zakeke can not be copied and/or distributed without the express
|
| 8 |
+
* permission of FutureNext SRL
|
| 9 |
+
*******************************************************/
|
| 10 |
+
|
| 11 |
+
/** @var Futurenext_Zakeke_Block_SalesItemRenderer $this */
|
| 12 |
+
?>
|
| 13 |
+
<?php
|
| 14 |
+
$_item = $this->getItem();
|
| 15 |
+
$_zakekePreviews = $this->getZakekePreviews();
|
| 16 |
+
?>
|
| 17 |
+
<tr class="border" id="order-item-row-<?php echo $_item->getId() ?>">
|
| 18 |
+
<td><h3 class="product-name"><?php echo $this->escapeHtml($_item->getName()) ?></h3>
|
| 19 |
+
<div class="zakeke-preview">
|
| 20 |
+
<div style="display: flex">
|
| 21 |
+
<?php foreach ($_zakekePreviews as $preview): ?>
|
| 22 |
+
<div data-zakeke-label="<?php echo $this->quoteEscape($preview->label) ?>" style="position: relative; max-height: 186px; overflow: hidden; cursor: pointer; margin: 0px;"
|
| 23 |
+
onclick="zakekeShowPreview(this); return false;">
|
| 24 |
+
<img src="<?php echo $this->quoteEscape($preview->url) ?>" style="width: 180px">
|
| 25 |
+
</div>
|
| 26 |
+
<?php endforeach; ?>
|
| 27 |
+
</div>
|
| 28 |
+
</div>
|
| 29 |
+
<?php if ($_options = $this->getItemOptions()): ?>
|
| 30 |
+
<dl class="item-options">
|
| 31 |
+
<?php foreach ($_options as $_option) : ?>
|
| 32 |
+
<?php if (isset($_option['is_zakeke'])) continue; ?>
|
| 33 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
| 34 |
+
<?php if (!$this->getPrintStatus()): ?>
|
| 35 |
+
<?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
|
| 36 |
+
<dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>>
|
| 37 |
+
<?php echo $_formatedOptionValue['value'] ?>
|
| 38 |
+
<?php if (isset($_formatedOptionValue['full_view'])): ?>
|
| 39 |
+
<div class="truncated_full_value">
|
| 40 |
+
<dl class="item-options">
|
| 41 |
+
<dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
|
| 42 |
+
<dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
|
| 43 |
+
</dl>
|
| 44 |
+
</div>
|
| 45 |
+
<?php endif; ?>
|
| 46 |
+
</dd>
|
| 47 |
+
<?php else: ?>
|
| 48 |
+
<dd><?php echo $this->escapeHtml((isset($_option['print_value']) ? $_option['print_value'] : $_option['value'])) ?></dd>
|
| 49 |
+
<?php endif; ?>
|
| 50 |
+
<?php endforeach; ?>
|
| 51 |
+
</dl>
|
| 52 |
+
<?php endif; ?>
|
| 53 |
+
|
| 54 |
+
<?php echo $this->escapeHtml($_item->getDescription()) ?>
|
| 55 |
+
<?php if ($this->helper('giftmessage/message')->getIsMessagesAvailable('order_item', $_item) && $_item->getGiftMessageId()): ?>
|
| 56 |
+
<br/><a href="#" id="order-item-gift-message-link-<?php echo $_item->getId() ?>"
|
| 57 |
+
class="giftmessage-preview-link expand"
|
| 58 |
+
onclick="return giftMessageToogle('<?php echo $_item->getId() ?>')"><?php echo $this->__('Gift Message') ?></a>
|
| 59 |
+
<?php endif; ?>
|
| 60 |
+
</td>
|
| 61 |
+
<td><?php echo $this->escapeHtml(Mage::helper('core/string')->splitInjection($this->getSku())) ?></td>
|
| 62 |
+
|
| 63 |
+
<td class="a-right nowrap">
|
| 64 |
+
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceExclTax()): ?>
|
| 65 |
+
<span class="price-excl-tax">
|
| 66 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 67 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 68 |
+
<span class="cart-price">
|
| 69 |
+
<?php endif; ?>
|
| 70 |
+
<span class="label"><?php echo $this->__('Excl. Tax'); ?>:</span>
|
| 71 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 72 |
+
</span>
|
| 73 |
+
<?php endif; ?>
|
| 74 |
+
<?php endif; ?>
|
| 75 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 76 |
+
<span class="cart-tax-total"
|
| 77 |
+
onclick="taxToggle('eunit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 78 |
+
<?php else: ?>
|
| 79 |
+
<span class="cart-price">
|
| 80 |
+
<?php endif; ?>
|
| 81 |
+
|
| 82 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 83 |
+
<?php echo $this->getOrder()->formatPrice($this->getItem()->getPrice() + $this->getItem()->getWeeeTaxAppliedAmount() + $this->getItem()->getWeeeTaxDisposition()); ?>
|
| 84 |
+
<?php else: ?>
|
| 85 |
+
<?php echo $this->getOrder()->formatPrice($this->getItem()->getPrice()) ?>
|
| 86 |
+
<?php endif; ?>
|
| 87 |
+
</span>
|
| 88 |
+
|
| 89 |
+
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 90 |
+
|
| 91 |
+
<span class="cart-tax-info" id="eunit-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 92 |
+
style="display:none;">
|
| 93 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 94 |
+
<small>
|
| 95 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 96 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 97 |
+
: <?php echo $this->getOrder()->formatPrice($tax['amount']); ?></span>
|
| 98 |
+
<?php endforeach; ?>
|
| 99 |
+
</small>
|
| 100 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 101 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 102 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 103 |
+
: <?php echo $this->getOrder()->formatPrice($tax['amount']); ?></small></span>
|
| 104 |
+
<?php endforeach; ?>
|
| 105 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 106 |
+
<small>
|
| 107 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 108 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 109 |
+
: <?php echo $this->getOrder()->formatPrice($tax['amount']); ?></span>
|
| 110 |
+
<?php endforeach; ?>
|
| 111 |
+
</small>
|
| 112 |
+
<?php endif; ?>
|
| 113 |
+
</span>
|
| 114 |
+
|
| 115 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 116 |
+
<span class="cart-tax-total"
|
| 117 |
+
onclick="taxToggle('eunit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 118 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>
|
| 119 |
+
:<br/> <?php echo $this->getOrder()->formatPrice($this->getItem()->getPrice() + $this->getItem()->getWeeeTaxAppliedAmount() + $this->getItem()->getWeeeTaxDisposition()); ?></span>
|
| 120 |
+
</span>
|
| 121 |
+
<?php endif; ?>
|
| 122 |
+
<?php endif; ?>
|
| 123 |
+
</span>
|
| 124 |
+
<br/>
|
| 125 |
+
<?php endif; ?>
|
| 126 |
+
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceInclTax()): ?>
|
| 127 |
+
<span class="price-incl-tax">
|
| 128 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 129 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 130 |
+
<span class="cart-price">
|
| 131 |
+
<?php endif; ?>
|
| 132 |
+
<span class="label"><?php echo $this->__('Incl. Tax'); ?>:</span>
|
| 133 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 134 |
+
</span>
|
| 135 |
+
<?php endif; ?>
|
| 136 |
+
<?php endif; ?>
|
| 137 |
+
<?php $_incl = $this->helper('checkout')->getPriceInclTax($this->getItem()); ?>
|
| 138 |
+
|
| 139 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 140 |
+
<span class="cart-tax-total"
|
| 141 |
+
onclick="taxToggle('unit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 142 |
+
<?php else: ?>
|
| 143 |
+
<span class="cart-price">
|
| 144 |
+
<?php endif; ?>
|
| 145 |
+
|
| 146 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 147 |
+
<?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?>
|
| 148 |
+
<?php else: ?>
|
| 149 |
+
<?php echo $this->getOrder()->formatPrice($_incl - $this->getItem()->getWeeeTaxDisposition()) ?>
|
| 150 |
+
<?php endif; ?>
|
| 151 |
+
|
| 152 |
+
</span>
|
| 153 |
+
|
| 154 |
+
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 155 |
+
|
| 156 |
+
<span class="cart-tax-info" id="unit-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 157 |
+
style="display:none;">
|
| 158 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 159 |
+
<small>
|
| 160 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 161 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 162 |
+
: <?php echo $this->getOrder()->formatPrice($tax['amount_incl_tax']); ?></span>
|
| 163 |
+
<?php endforeach; ?>
|
| 164 |
+
</small>
|
| 165 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 166 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 167 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 168 |
+
: <?php echo $this->getOrder()->formatPrice($tax['amount_incl_tax']); ?></small></span>
|
| 169 |
+
<?php endforeach; ?>
|
| 170 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 171 |
+
<small>
|
| 172 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 173 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 174 |
+
: <?php echo $this->getOrder()->formatPrice($tax['amount_incl_tax']); ?></span>
|
| 175 |
+
<?php endforeach; ?>
|
| 176 |
+
</small>
|
| 177 |
+
<?php endif; ?>
|
| 178 |
+
</span>
|
| 179 |
+
|
| 180 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 181 |
+
<span class="cart-tax-total"
|
| 182 |
+
onclick="taxToggle('unit-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 183 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>
|
| 184 |
+
:<br/> <?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span>
|
| 185 |
+
</span>
|
| 186 |
+
<?php endif; ?>
|
| 187 |
+
<?php endif; ?>
|
| 188 |
+
</span>
|
| 189 |
+
<?php endif; ?>
|
| 190 |
+
</td>
|
| 191 |
+
|
| 192 |
+
<td class="a-right nowrap">
|
| 193 |
+
<span class="nobr">
|
| 194 |
+
<?php if ($this->getItem()->getQtyOrdered() > 0): ?>
|
| 195 |
+
<?php echo $this->__('Ordered'); ?>:
|
| 196 |
+
<strong><?php echo $this->getItem()->getQtyOrdered() * 1 ?></strong><br/>
|
| 197 |
+
<?php endif; ?>
|
| 198 |
+
<?php if ($this->getItem()->getQtyShipped() > 0): ?>
|
| 199 |
+
<?php echo $this->__('Shipped'); ?>:
|
| 200 |
+
<strong><?php echo $this->getItem()->getQtyShipped() * 1 ?></strong><br/>
|
| 201 |
+
<?php endif; ?>
|
| 202 |
+
<?php if ($this->getItem()->getQtyCanceled() > 0): ?>
|
| 203 |
+
<?php echo $this->__('Canceled'); ?>:
|
| 204 |
+
<strong><?php echo $this->getItem()->getQtyCanceled() * 1 ?></strong><br/>
|
| 205 |
+
<?php endif; ?>
|
| 206 |
+
<?php if ($this->getItem()->getQtyRefunded() > 0): ?>
|
| 207 |
+
<?php echo $this->__('Refunded'); ?>:
|
| 208 |
+
<strong><?php echo $this->getItem()->getQtyRefunded() * 1 ?></strong><br/>
|
| 209 |
+
<?php endif; ?>
|
| 210 |
+
</span>
|
| 211 |
+
</td>
|
| 212 |
+
<td class="a-right nowrap">
|
| 213 |
+
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceExclTax()): ?>
|
| 214 |
+
<span class="price-excl-tax">
|
| 215 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 216 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 217 |
+
<span class="cart-price">
|
| 218 |
+
<?php endif; ?>
|
| 219 |
+
<span class="label"><?php echo $this->__('Excl. Tax'); ?>:</span>
|
| 220 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 221 |
+
</span>
|
| 222 |
+
<?php endif; ?>
|
| 223 |
+
<?php endif; ?>
|
| 224 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 225 |
+
<span class="cart-tax-total"
|
| 226 |
+
onclick="taxToggle('esubtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 227 |
+
<?php else: ?>
|
| 228 |
+
<span class="cart-price">
|
| 229 |
+
<?php endif; ?>
|
| 230 |
+
|
| 231 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 232 |
+
<?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal() + $this->getItem()->getWeeeTaxAppliedRowAmount() + $this->getItem()->getWeeeTaxRowDisposition()); ?>
|
| 233 |
+
<?php else: ?>
|
| 234 |
+
<?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal()) ?>
|
| 235 |
+
<?php endif; ?>
|
| 236 |
+
|
| 237 |
+
</span>
|
| 238 |
+
|
| 239 |
+
|
| 240 |
+
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 241 |
+
|
| 242 |
+
<span class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 243 |
+
style="display:none;">
|
| 244 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 245 |
+
<small>
|
| 246 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 247 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 248 |
+
: <?php echo $this->getOrder()->formatPrice($tax['row_amount']); ?></span>
|
| 249 |
+
<?php endforeach; ?>
|
| 250 |
+
</small>
|
| 251 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 252 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 253 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 254 |
+
: <?php echo $this->getOrder()->formatPrice($tax['row_amount']); ?></small></span>
|
| 255 |
+
<?php endforeach; ?>
|
| 256 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 257 |
+
<small>
|
| 258 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 259 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 260 |
+
: <?php echo $this->getOrder()->formatPrice($tax['row_amount']); ?></span>
|
| 261 |
+
<?php endforeach; ?>
|
| 262 |
+
</small>
|
| 263 |
+
<?php endif; ?>
|
| 264 |
+
</span>
|
| 265 |
+
|
| 266 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 267 |
+
<span class="cart-tax-total"
|
| 268 |
+
onclick="taxToggle('esubtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 269 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>
|
| 270 |
+
:<br/> <?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal() + $this->getItem()->getWeeeTaxAppliedRowAmount() + $this->getItem()->getWeeeTaxRowDisposition()); ?></span>
|
| 271 |
+
</span>
|
| 272 |
+
<?php endif; ?>
|
| 273 |
+
<?php endif; ?>
|
| 274 |
+
</span>
|
| 275 |
+
<br/>
|
| 276 |
+
<?php endif; ?>
|
| 277 |
+
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceInclTax()): ?>
|
| 278 |
+
<span class="price-incl-tax">
|
| 279 |
+
<?php if ($this->helper('tax')->displayCartBothPrices()): ?>
|
| 280 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 281 |
+
<span class="cart-price">
|
| 282 |
+
<?php endif; ?>
|
| 283 |
+
<span class="label"><?php echo $this->__('Incl. Tax'); ?>:</span>
|
| 284 |
+
<?php if (!Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 285 |
+
</span>
|
| 286 |
+
<?php endif; ?>
|
| 287 |
+
<?php endif; ?>
|
| 288 |
+
<?php $_incl = $this->helper('checkout')->getSubtotalInclTax($this->getItem()); ?>
|
| 289 |
+
|
| 290 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 291 |
+
<span class="cart-tax-total"
|
| 292 |
+
onclick="taxToggle('subtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 293 |
+
<?php else: ?>
|
| 294 |
+
<span class="cart-price">
|
| 295 |
+
<?php endif; ?>
|
| 296 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), array(0, 1, 4), 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 297 |
+
<?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?>
|
| 298 |
+
<?php else: ?>
|
| 299 |
+
<?php echo $this->getOrder()->formatPrice($_incl - $this->getItem()->getWeeeTaxRowDisposition()) ?>
|
| 300 |
+
<?php endif; ?>
|
| 301 |
+
|
| 302 |
+
</span>
|
| 303 |
+
|
| 304 |
+
<?php if (Mage::helper('weee')->getApplied($this->getItem())): ?>
|
| 305 |
+
|
| 306 |
+
<span class="cart-tax-info" id="subtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>"
|
| 307 |
+
style="display:none;">
|
| 308 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 1, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 309 |
+
<small>
|
| 310 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 311 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 312 |
+
: <?php echo $this->getOrder()->formatPrice($tax['row_amount_incl_tax']); ?></span>
|
| 313 |
+
<?php endforeach; ?>
|
| 314 |
+
</small>
|
| 315 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 316 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 317 |
+
<span class="nobr"><small><?php echo $tax['title']; ?>
|
| 318 |
+
: <?php echo $this->getOrder()->formatPrice($tax['row_amount_incl_tax']); ?></small></span>
|
| 319 |
+
<?php endforeach; ?>
|
| 320 |
+
<?php elseif (Mage::helper('weee')->typeOfDisplay($this->getItem(), 4, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 321 |
+
<small>
|
| 322 |
+
<?php foreach (Mage::helper('weee')->getApplied($this->getItem()) as $tax): ?>
|
| 323 |
+
<span class="nobr"><?php echo $tax['title']; ?>
|
| 324 |
+
: <?php echo $this->getOrder()->formatPrice($tax['row_amount_incl_tax']); ?></span>
|
| 325 |
+
<?php endforeach; ?>
|
| 326 |
+
</small>
|
| 327 |
+
<?php endif; ?>
|
| 328 |
+
</span>
|
| 329 |
+
|
| 330 |
+
<?php if (Mage::helper('weee')->typeOfDisplay($this->getItem(), 2, 'sales') && (float)$this->getItem()->getWeeeTaxAppliedAmount()): ?>
|
| 331 |
+
<span class="cart-tax-total"
|
| 332 |
+
onclick="taxToggle('subtotal-item-tax-details<?php echo $this->getItem()->getId(); ?>', this, 'cart-tax-total-expanded');">
|
| 333 |
+
<span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>
|
| 334 |
+
:<br/> <?php echo $this->getOrder()->formatPrice($_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?></span>
|
| 335 |
+
</span>
|
| 336 |
+
<?php endif; ?>
|
| 337 |
+
<?php endif; ?>
|
| 338 |
+
</span>
|
| 339 |
+
<?php endif; ?>
|
| 340 |
+
</td>
|
| 341 |
+
<!--
|
| 342 |
+
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceExclTax()): ?>
|
| 343 |
+
<th class="nowrap a-right"><?php echo $this->getOrder()->formatPrice($this->getItem()->getRowTotal()) ?></th>
|
| 344 |
+
<?php endif; ?>
|
| 345 |
+
<?php if ($this->helper('tax')->displayCartBothPrices() || $this->helper('tax')->displayCartPriceInclTax()): ?>
|
| 346 |
+
<th class="nowrap a-right"><?php echo $this->getOrder()->formatPrice($this->helper('checkout')->getSubtotalInclTax($this->getItem())); ?></th>
|
| 347 |
+
<?php endif; ?>
|
| 348 |
+
-->
|
| 349 |
+
</tr>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Futurenext_Zakeke</name>
|
| 4 |
-
<version>1.0.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="https://www.zakeke.com/Contracts/GeneralConditions">Zakeke license</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Zakeke is an innovative cloud platform that allows any Magento store to integrate into the system a 2D and 3D complete customizer of products, giving the possibility to customize "live" products for sale to the end customer.</description>
|
| 11 |
<notes>Bug fixing release</notes>
|
| 12 |
<authors><author><name>Futurenext</name><user>futurenext</user><email>info@zakeke.com</email></author></authors>
|
| 13 |
-
<date>2017-03-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Futurenext"><dir name="Zakeke"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="2d8fb733bc0ba91d9f6663f36489fbd3"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="346b6dfd7dd8607b67c280350ac9975e"/><file name="Samples.php" hash="93c481ebd2ef25927bd836829d943fae"/></dir><file name="Downloadable.php" hash="f8b9ba9f21da82fdc42aca57b2342440"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Zakeke"><file name="Name.php" hash="6cc64337a5364971f76d56415696cd70"/></dir></dir></dir></dir></dir><file name="CartItemRenderer.php" hash="9ccdff59acc42ada9288e0788dd7860d"/><file name="CheckoutItemRenderer.php" hash="efc02e5ff750861fe849c83e7df24da1"/><dir name="Customize"><file name="Add.php" hash="6d206e080ed91ed1ffbdd7528d89be2f"/><file name="Configure.php" hash="e815ed877af5727bd20289429122107b"/></dir><file name="Customize.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Futurenext_Zakeke</name>
|
| 4 |
+
<version>1.0.0.3</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="https://www.zakeke.com/Contracts/GeneralConditions">Zakeke license</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Zakeke is an innovative cloud platform that allows any Magento store to integrate into the system a 2D and 3D complete customizer of products, giving the possibility to customize "live" products for sale to the end customer.</description>
|
| 11 |
<notes>Bug fixing release</notes>
|
| 12 |
<authors><author><name>Futurenext</name><user>futurenext</user><email>info@zakeke.com</email></author></authors>
|
| 13 |
+
<date>2017-03-28</date>
|
| 14 |
+
<time>11:46:17</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Futurenext"><dir name="Zakeke"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="2d8fb733bc0ba91d9f6663f36489fbd3"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="346b6dfd7dd8607b67c280350ac9975e"/><file name="Samples.php" hash="93c481ebd2ef25927bd836829d943fae"/></dir><file name="Downloadable.php" hash="f8b9ba9f21da82fdc42aca57b2342440"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Zakeke"><file name="Name.php" hash="6cc64337a5364971f76d56415696cd70"/></dir></dir></dir></dir></dir><file name="CartItemRenderer.php" hash="9ccdff59acc42ada9288e0788dd7860d"/><file name="CheckoutItemRenderer.php" hash="efc02e5ff750861fe849c83e7df24da1"/><dir name="Customize"><file name="Add.php" hash="6d206e080ed91ed1ffbdd7528d89be2f"/><file name="Configure.php" hash="e815ed877af5727bd20289429122107b"/></dir><file name="Customize.php" hash="5a93ac3b227b4693e4a92ac3409f6f4b"/><file name="CustomizeButton.php" hash="0289e8754309ed5ba622a4e0ce643d25"/><file name="ModuleChecker.php" hash="8df2615bc87c4e656584ee80a51a9b31"/><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><dir name="Order"><file name="Default.php" hash="f053f33c788884284d983f9340b8a104"/></dir></dir></dir></dir></dir><file name="SalesItemRenderer.php" hash="e5033cf0e41f399d27d8a4f6e9cad82f"/><file name="View.php" hash="f4f780e2c0e48bc0280bc6980d420da2"/></dir><dir name="Helper"><file name="Data.php" hash="4f4d0e717a12106f094a8ca18612f6e3"/><file name="ZakekeApi.php" hash="e078e28965e9159aa85603f3bb7abd14"/></dir><dir name="Model"><dir name="Api2"><dir name="Colors"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="0b1ad3d9656fd5b729d1f7a626359e19"/></dir></dir></dir><file name="Colors.php" hash="f9f004c13ef5357bb3d5e798208e7902"/><dir name="ProductAttribute"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="40a6a5def798a5d0e8bcee1ac8c8a4d8"/></dir></dir></dir><file name="ProductAttribute.php" hash="97ea0f12646d9f1f1ab6916ed41f04dc"/><dir name="ProductOptions"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="6c6dd2079f58a654b60c465cc1fbc357"/></dir></dir></dir><file name="ProductOptions.php" hash="5e1234a158723dc5a8e2c3ccf6e152cf"/><dir name="Settings"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="e982e900acb2a4ac267cdda95c87cd35"/></dir></dir></dir><file name="Settings.php" hash="2f7fa711c00e75d3c4afabb007145c49"/><dir name="ZakekeEnabled"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b107fafe0fa69827bebadfd66c6274d9"/></dir></dir></dir><file name="ZakekeEnabled.php" hash="0f5c210fa296b30283aa41f500c3e3b9"/></dir><file name="ModuleList.php" hash="929479d45eb4252daaff6e4a40733b09"/><file name="Observer.php" hash="37a1bb6c4e610051c7990bd6f77e42b9"/><dir name="Resource"><file name="Setup.php" hash="42a7681d56fcd5ad06f75a223ef420f1"/><dir name="ZakekeEnabled"><file name="Collection.php" hash="fdadf3c788c4b5e175e4a20501116027"/></dir><file name="ZakekeEnabled.php" hash="f32fb4b25f1f78287a38c3bd170bdbaa"/></dir><file name="ZakekeEnabled.php" hash="9b31e4606dcf8622092f638ca9f3920c"/></dir><dir name="controllers"><file name="CustomizeController.php" hash="9231d14c59e7ba4bb3ea5bbd7236c66f"/><dir name="Zakeke"><file name="ModuleCheckerController.php" hash="b92d1f5b155479a85f358f1356ccdd29"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="22cdf40e6e83327b58f9e97fa17e8f68"/><file name="api2.xml" hash="9af2352582ae62a261d07f58e64d5e77"/><file name="config.xml" hash="8c085df4e4e865282820e45c771017ed"/><file name="system.xml" hash="cd8127a7b4db087065bc856bb5b5ca60"/></dir><dir name="sql"><dir name="zakeke_setup"><file name="install-1.0.0.0.php" hash="64a3954b20b3142886446ac432a04b21"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Futurenext_Zakeke.xml" hash="f309795ee4b758943868cb1f7459fb9c"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="zakeke"><file name="preview.js" hash="a22a32209982d2dda7561cff723b49bb"/></dir></dir><dir name="css"><dir name="zakeke"><file name="productview.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zakeke"><file name="modulechecker.css" hash="e7fd6efc953f7e2aae234607a0a379a8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash="d296777d398f6af473adfb8a15477b47"/></dir><dir name="template"><dir name="zakeke"><file name="modulechecker.phtml" hash="7855639fdc8b9511798a30adb60d33d3"/><dir name="sales"><dir name="items"><dir name="column"><dir name="zakeke"><file name="name.phtml" hash="e441a8f732c2d378df0deb88b7f7f5e7"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="6294158a08ad56639c3a57a4d88c2f81"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="4421194ecc884d934f099a256062cfcb"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="74c7b3f6230f25b48dc3eb762eed7b2f"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="01cd2347f60718c6238a7e19274d83bb"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="867a37a7072be0cba7dc9f7c03cec0d4"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash="d5e2ce6707c4e307857469097caeebda"/></dir><dir name="template"><dir name="zakeke"><dir name="cart"><dir name="item"><file name="default.phtml" hash="76a04053b4e70fcaece89f3b71e594d7"/></dir><file name="minicart.phtml" hash="514c94db61f9cee5503d22ac54df9522"/></dir><dir name="checkout"><dir name="onepage"><dir name="review"><file name="item.phtml" hash="718b4a5f5e765377e0cbbb9a74ebea35"/></dir></dir></dir><dir name="customization"><file name="add.phtml" hash="c647328e435fbe6dbe61e325e7a90f89"/></dir><file name="customize.phtml" hash="5b16967774ef9109760873480f2f23c2"/><file name="customizeButton.phtml" hash="78c81b67f8bb3e63c27d36054edaeb35"/><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="9590846363b6dc7ca0cd7eaaa0c86949"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash=""/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="zakeke"><file name="customize.js" hash="efab393e72ffeedae64002dc1b8c002c"/><file name="jquery.js" hash="105112a8a757f683234e01dec3799022"/><file name="preview.js" hash="a22a32209982d2dda7561cff723b49bb"/></dir></dir></target><target name="magelocale"><dir name="it_IT"><file name="Futurenext_Zakeke.csv" hash="0a8b269e780aa6b01790451945e7e25a"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
| 18 |
</package>
|
