[jira] Created: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
45 messages Options
123
Reply | Threaded
Open this post in threaded view
|

[jira] Created: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
Some misc issues in ebay and ebayStore component.
-------------------------------------------------

                 Key: OFBIZ-4118
                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
             Project: OFBiz
          Issue Type: Bug
          Components: specialpurpose/ebay, specialpurpose/ebaystore
    Affects Versions: SVN trunk
            Reporter: Arun Patidar
             Fix For: SVN trunk


Following issues are exists in ebay and ebayStore component

1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.

2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..

3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar updated OFBIZ-4118:
--------------------------------

    Attachment: ofbiz-4118-ebayStore.patch
                ofbiz-4118-ebay.patch

Here is patches for same.

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>             Fix For: SVN trunk
>
>         Attachments: ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12983075#action_12983075 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Hi Arun,

I have commited the ebay component patch in trunk at r1060236  


About the abasy store component I have a question about a trivial detail, I see it's not a problem to apply
{code}
-                    if (categories.size() > 0) {
-                        toJsonObjectList(categories,response);
-                    }
+                    toJsonObjectList(categories,response);
{code}
But I'd prefer to keep it, since it avoids an useless call

Also are you sure it's safe to apply this snippet?
{code}
-        if (list != null) {
-            for (Map<String,Object> val : list) {
-                json = new JSONObject();
-                for (String rowKey: val.keySet()) {
-                    json.put(rowKey, val.get(rowKey));
-                }
-                jsonList.add(json);
+        String jsonStr = null;
+        for (Map<String,Object> val : list) {
{code}
What if list is null, the enhanced foor loop does not guarantee no NPE in this case

Else your patch sounds good to me, but I'm not quite sure how to test it as I have never used this component. Could you give some hints please?

Thanks

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>             Fix For: SVN trunk
>
>         Attachments: ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar updated OFBIZ-4118:
--------------------------------

    Attachment: ofbiz-4118-ebayStore.patch

Hi Jacques,

Thanks for committing ebay component patch and pointing this. Functionality is working fine without changes of EbayStoreOptions.java file. So I am uploading new updated patch.

Steps to test issue:

#1. Go to ebayStore -> main

#2 Select any demo user account and click on submit

#3 Click on Export Product Listing tab in menu

#4 Search any product from find screen

#5 Select product from list and click on Export To Ebay button

#6 Select any ebay category from  drop down

#7 Change event of this select box is not working properly due to blocking of JS.

--
Thanks

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>             Fix For: SVN trunk
>
>         Attachments: ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984063#action_12984063 ]

Arun Patidar commented on OFBIZ-4118:
-------------------------------------

Hi Jacques,

I have uploaded updated patch for ebay store component issues and provided steps to test. Please have a look and let me know if there is any issues.
Thanks in advance.

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>             Fix For: SVN trunk
>
>         Attachments: ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar updated OFBIZ-4118:
--------------------------------

    Attachment: ExportToEbay.patch


I am attaching one more patch for an issue in ebay component. Ebay category code may have more than 3 character so removed condition of ebay category code length.

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>             Fix For: SVN trunk
>
>         Attachments: ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984199#action_12984199 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Hi Arun,

Thanks for the use case.

I 1st got caught by the surprising behaviour of the eBay Category drop down (you have to select sub-categs one after the others in the same drop drow), but yes it works.
Who defined this behaviour? Did you find this original way somewhere or was it created from scratch? It's really misleading when you 1st come to it...

Anyway your patch is in trunk at r1061307  



> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>             Fix For: SVN trunk
>
>         Attachments: ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Closed: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacques Le Roux closed OFBIZ-4118.
----------------------------------

    Resolution: Fixed
      Assignee: Jacques Le Roux

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984228#action_12984228 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Thanks Arun,

Your patch is in trunk at r1061346  


> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Reopened: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar reopened OFBIZ-4118:
---------------------------------


I am still working on some issues. I will provide a patch soon.

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar updated OFBIZ-4118:
--------------------------------

    Attachment: ExportProductToEbay-ofbiz-4118.patch

Attaching patch to export single product to ebay in ebay store component.  Added require attributes in item and call request of export product to ebay after successfully verify item.

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984839#action_12984839 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Arun,

Your patch is in trunk at r1061939. I let you close the issue when you are done. BTW, do you know what the key diffs between ebay and ebay store components and why we have both?

Thanks

 


> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar updated OFBIZ-4118:
--------------------------------

    Attachment: import-order-ofbiz-4118.patch

Hi Jacques,

Attaching a patch to fix issue of import ebay orders.
Thanks.

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985102#action_12985102 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Thanks Arun,

Your patch is in trunk at r1062144  


> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun Patidar updated OFBIZ-4118:
--------------------------------

    Attachment: setShipmentMethod-ebay-ofbiz-4118.patch

Hi Jacques,

I am attaching one more patch for setting shipping method in ofbiz order during import order by ebayStore component.
FYI here ebayStore component is using EbayHelper class of ebay component, so there is dependency of ebayStore component on ebay component.

Thanks

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985106#action_12985106 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Thans for the information Arun,

I think we should extract the needed from ebay to ebaystore and then from ebay, hopefully it's not too much work.

But it's not the only dependency, EbayShippingMethod entity is also set in DemoEbayData.xml and used in EbayHelpData.xml.

Your patch is in trunk at r1062152  





> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985114#action_12985114 ]

Anil K Patel commented on OFBIZ-4118:
-------------------------------------

Jacques,
All the patches provided by Arun are fixing some issue in ebaystore application, Should we not apply them to 10.04 branch as well?

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985123#action_12985123 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Anil,

Yes you are right, I will do...

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985172#action_12985172 ]

Jacques Le Roux commented on OFBIZ-4118:
----------------------------------------

Patches backported to R10.04 (in respective order) at r1062176, r1062215, r1062217, r1062219, r1062223  

I had to handle conflicts by hand for all of them


> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Issue Comment Edited: (OFBIZ-4118) Some misc issues in ebay and ebayStore component.

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4118?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985172#action_12985172 ]

Jacques Le Roux edited comment on OFBIZ-4118 at 1/22/11 1:37 PM:
-----------------------------------------------------------------

Patches backported to R10.04 (in respective order) at r1062176, r1062215, r1062217, r1062219, r1062223, r1062226

I had to handle conflicts by hand for most of them


      was (Author: jacques.le.roux):
    Patches backported to R10.04 (in respective order) at r1062176, r1062215, r1062217, r1062219, r1062223  

I had to handle conflicts by hand for all of them

 

> Some misc issues in ebay and ebayStore component.
> -------------------------------------------------
>
>                 Key: OFBIZ-4118
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4118
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ebay, specialpurpose/ebaystore
>    Affects Versions: SVN trunk
>            Reporter: Arun Patidar
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>         Attachments: ExportProductToEbay-ofbiz-4118.patch, ExportToEbay.patch, import-order-ofbiz-4118.patch, ofbiz-4118-ebay.patch, ofbiz-4118-ebayStore.patch, ofbiz-4118-ebayStore.patch, setShipmentMethod-ebay-ofbiz-4118.patch
>
>
> Following issues are exists in ebay and ebayStore component
> 1. Not getting ebay sub category from parent category on Export Product Listing screen of ebayStore component.
> 2. Error in getting category lookup form on Export Product Listing screen of ebayStore component..
> 3. JS is blocking during Export Product to ebay from ebay component.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

123