You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ak...@apache.org on 2020/02/22 06:01:33 UTC

[ofbiz-plugins] branch trunk updated: Improvement: Quantity and Add to Cart button showing twice on Compare Products page (OFBIZ-10665)

This is an automated email from the ASF dual-hosted git repository.

akashjain pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git


The following commit(s) were added to refs/heads/trunk by this push:
     new c6067e4  Improvement: Quantity and Add to Cart button showing twice on Compare Products page (OFBIZ-10665)
c6067e4 is described below

commit c6067e44cce114b3118c56e407fbf56487bbf645
Author: akash <ak...@hotwaxsystems.com>
AuthorDate: Sat Feb 22 11:31:58 2020 +0530

    Improvement: Quantity and Add to Cart button showing twice on Compare Products page
    (OFBIZ-10665)
    
    Thanks, Ritesh Kumar and Dikpal Kanungo for your contribution.
---
 ecommerce/template/order/CompareProducts.ftl | 39 ----------------------------
 1 file changed, 39 deletions(-)

diff --git a/ecommerce/template/order/CompareProducts.ftl b/ecommerce/template/order/CompareProducts.ftl
index 5be7871..bee27af 100644
--- a/ecommerce/template/order/CompareProducts.ftl
+++ b/ecommerce/template/order/CompareProducts.ftl
@@ -51,45 +51,6 @@ under the License.
                 <#if "Y" = product.isVirtual!> ${uiLabelMap.CommonFrom} </#if><span class="${priceStyle}"><@ofbizCurrency amount=price.price isoCode=price.currencyUsed/></span>
               </#if>
             </#if>
-            <div class="productbuy">
-            <#-- check to see if introductionDate hasn't passed yet -->
-            <#if product.introductionDate?? && nowTimestamp.before(product.introductionDate)>
-              <div style="color: red;">${uiLabelMap.ProductNotYetAvailable}</div>
-            <#-- check to see if salesDiscontinuationDate has passed -->
-            <#elseif product.salesDiscontinuationDate?? && nowTimestamp.after(product.salesDiscontinuationDate)/>
-              <div style="color: red;">${uiLabelMap.ProductNoLongerAvailable}</div>
-            <#-- check to see if it is a rental item; will enter parameters on the detail screen-->
-            <#elseif "ASSET_USAGE" == product.productTypeId!/>
-              <a href="javascript:doGetViaParent('${productUrl}');" class="buttontext">${uiLabelMap.OrderMakeBooking}...</a>
-            <#elseif "ASSET_USAGE_OUT_IN" == product.productTypeId!/>
-              <a href="javascript:doGetViaParent('${productUrl}');" class="buttontext">${uiLabelMap.OrderRent}...</a>
-            <#-- check to see if it is an aggregated or configurable product; will enter parameters on the detail screen-->
-            <#elseif "AGGREGATED" == product.productTypeId! || "AGGREGATED_SERVICE" == product.productTypeId!/>
-              <a href="javascript:doGetViaParent('${productUrl}');" class="buttontext">${uiLabelMap.OrderConfigure}...</a>
-            <#-- check to see if the product is a virtual product -->
-            <#elseif product.isVirtual?? && "Y" == product.isVirtual/>
-              <a href="javascript:doGetViaParent('${productUrl}');" class="buttontext">${uiLabelMap.OrderChooseVariations}...</a>
-            <#-- check to see if the product requires an amount -->
-            <#elseif product.requireAmount?? && "Y" == product.requireAmount/>
-              <a href="javascript:doGetViaParent('${productUrl}');" class="buttontext">${uiLabelMap.OrderChooseAmount}...</a>
-            <#else>
-              <form method="post" action="<@ofbizUrl secure="${request.isSecure()?string}">additem</...@ofbizUrl>" name="compareFormAdd${product_index}">
-                <input type="hidden" name="add_product_id" value="${product.productId}"/>
-                <input type="text" size="5" name="quantity" value="1"/>
-                <input type="hidden" name="clearSearch" value="N"/>
-              </form>
-              <a href="javascript:doPostViaParent('compareFormAdd${product_index}');" class="buttontext">${uiLabelMap.OrderAddToCart}</a>
-
-              <#if prodCatMem?? && prodCatMem.quantity?? && 0.00 < prodCatMem.quantity?double>
-                <form method="post" action="<@ofbizUrl secure="${request.isSecure()?string}">additem</...@ofbizUrl>" name="compareFormAddDefault${product_index}" style="margin: 0;">
-                  <input type="hidden" name="add_product_id" value="${prodCatMem.productId!}"/>
-                  <input type="hidden" name="quantity" value="${prodCatMem.quantity!}"/>
-                  <input type="hidden" name="clearSearch" value="N"/>
-                </form>
-                <a href="javascript:doPostViaParent('compareFormAddDefault${product_index}');" class="buttontext">${uiLabelMap.CommonAddDefault}(${prodCatMem.quantity?string.number}) ${uiLabelMap.OrderToCart}</a>
-              </#if>
-               </#if>
-            </div>
           </td>
         </#list>
       </tr>