You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ch...@apache.org on 2008/04/10 18:11:04 UTC

svn commit: r646859 - /ofbiz/branches/release4.0/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java

Author: chrisg
Date: Thu Apr 10 09:10:58 2008
New Revision: 646859

URL: http://svn.apache.org/viewvc?rev=646859&view=rev
Log:
Applied fix from trunk for revision 619363

set the default ScreenLocation for all ProductStore Emails
modified patch from BJ Freeman
see OFBIZ-1281 (https://issues.apache.org/jira/browse/OFBIZ-1281)

Modified:
    ofbiz/branches/release4.0/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java

Modified: ofbiz/branches/release4.0/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release4.0/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java?rev=646859&r1=646858&r2=646859&view=diff
==============================================================================
--- ofbiz/branches/release4.0/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java (original)
+++ ofbiz/branches/release4.0/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java Thu Apr 10 09:10:58 2008
@@ -737,6 +737,14 @@
 
         defaultProductStoreEmailScreenLocation.put("PRDS_GC_PURCHASE", "component://ecommerce/widget/EmailGiftCardScreens.xml#GiftCardPurchase");
         defaultProductStoreEmailScreenLocation.put("PRDS_GC_RELOAD", "component://ecommerce/widget/EmailGiftCardScreens.xml#GiftCardReload");
+        
+        defaultProductStoreEmailScreenLocation.put("PRDS_QUO_CONFIRM", "component://order/widget/ordermgr/QuoteScreens.xml#ViewQuoteSimple");
+        
+        defaultProductStoreEmailScreenLocation.put("PRDS_PWD_RETRIEVE", "component://securityext/widget/EmailSecurityScreens.xml#PasswordEmail");
+    
+        defaultProductStoreEmailScreenLocation.put("PRDS_TELL_FRIEND", "component://ecommerce/widget/EmailProductScreens.xml#TellFriend");
+        
+        defaultProductStoreEmailScreenLocation.put("PRDS_CUST_REGISTER", "component://securityext/widget/EmailSecurityScreens.xml#PasswordEmail");
     }
 
     public static String getDefaultProductStoreEmailScreenLocation(String emailType) {