Author: jacopoc
Date: Wed Jul 29 10:46:05 2009
New Revision: 798851
URL: http://svn.apache.org/viewvc?rev=798851&view=rev
Log:
Fixed wrong field name for the quantity IN parameters for eBay product exports.
Modified:
ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java
ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl
Modified:
ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java?rev=798851&r1=798850&r2=798851&view=diff
==============================================================================
---
ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java
(original)
+++
ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java
Wed Jul 29 10:46:05 2009
@@ -187,7 +187,7 @@
GenericValue prod = (GenericValue)productsListItr.next();
String title = parseText(prod.getString("internalName"));
String description =
parseText(prod.getString("internalName"));
- String qnt = (String)context.get("qnt");
+ String qnt = (String)context.get("quantity");
Element itemElem =
UtilXml.addChildElement(itemRequestElem, "Item", itemDocument);
UtilXml.addChildElementValue(itemElem, "Country",
(String)context.get("country"), itemDocument);
Modified:
ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl?rev=798851&r1=798850&r2=798851&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl
(original)
+++ ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl
Wed Jul 29 10:46:05 2009
@@ -90,7 +90,7 @@
<td align="right"
class="label">${uiLabelMap.CommonQuantity}</td>
<td> </td>
<td>
- <input type="text" name="qnt" size="12" maxlength="12"
value="1"/>
+ <input type="text" name="quantity" size="12"
maxlength="12" value="1"/>
</td>
</tr>
<tr>
@@ -139,7 +139,7 @@
<td align="right"
class="label">${uiLabelMap.FormFieldTitle_payPalEmail}</td>
<td> </td>
<td>
- <input type="text" name="quantity" size="50"
maxlength="50"/>
+ <input type="text" name="payPalEmail" size="50"
maxlength="50"/>
</td>
</tr>
<tr>