[jira] Created: (OFBIZ-2422) Delete contact from View Profile screen in eCommerce

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

[jira] Created: (OFBIZ-2422) Delete contact from View Profile screen in eCommerce

Nicolas Malin (Jira)
Delete contact from View Profile screen in eCommerce
----------------------------------------------------

                 Key: OFBIZ-2422
                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
             Project: OFBiz
          Issue Type: Sub-task
            Reporter: Vikas Mayur
            Assignee: Vikas Mayur




--
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-2422) Delete contact from View Profile screen in eCommerce

Nicolas Malin (Jira)

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

Vikas Mayur updated OFBIZ-2422:
-------------------------------

          Component/s: specialpurpose/ecommerce
          Description:
Steps:

1) Login in eCommerce app using DemoCustomer/ofbiz
2) Click on expire link against an address under Contact Information screenlet and you see the error.

Reported by Pranay Pandey.
    Affects Version/s: SVN trunk
                       Release Branch 9.04
        Fix Version/s: SVN trunk
                       Release Branch 9.04

> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Vikas Mayur
>             Fix For: Release Branch 9.04, SVN trunk
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

--
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-2422) Delete contact from View Profile screen in eCommerce

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

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

Chandan Khandelwal updated OFBIZ-2422:
--------------------------------------

    Attachment: viewprofile.patch

Here is the patch for this issue
Note : allignment of the link "Create New Quote" And " Save" is disturb due to use of form.

> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Vikas Mayur
>             Fix For: Release Branch 9.04, SVN trunk
>
>         Attachments: viewprofile.patch
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

--
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-2422) Delete contact from View Profile screen in eCommerce

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

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

Ashish Nagar commented on OFBIZ-2422:
-------------------------------------

Hello Chandan,

Is there any need to put name as *createCustRequestFromShoppingList_${shoppingList.shoppingListId}* than a simple name as *createCustRequestFromShoppingList* ?

The link {quote}<a href="<@ofbizUrl>createCustRequestFromShoppingList?shoppingListId=${shoppingList.shoppingListId}</@ofbizUrl>" class="submenutext">${uiLabelMap.OrderCreateCustRequestFromShoppingList}</a>{quote} is not under any list, so no need to name form like that.

+            <div>
+                <form name= "createCustRequestFromShoppingList_${shoppingList.shoppingListId}" method= "post" action= "<@ofbizUrl>createCustRequestFromShoppingList</@ofbizUrl>">
+                <input type= "hidden" name= "shoppingListId" value= "${shoppingList.shoppingListId}"/>
+                <a href='javascript:document.createCustRequestFromShoppingList_${shoppingList.shoppingListId}.submit()' class='submenutext'>&nbsp;${uiLabelMap.OrderCreateCustRequestFromShoppingList}&nbsp;</a>
+                </form>
+            </div>

Also, I don't think any need to put enclosing div's here. Please, let me know if you have any doubts.

Thanks,
--
Ashish Nagar


> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Vikas Mayur
>             Fix For: Release Branch 9.04, SVN trunk
>
>         Attachments: viewprofile.patch
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

--
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-2422) Delete contact from View Profile screen in eCommerce

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

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

Chandan Khandelwal updated OFBIZ-2422:
--------------------------------------

    Attachment: viewprofile.patch

updated patch for this issue.

> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Vikas Mayur
>             Fix For: Release Branch 9.04, SVN trunk
>
>         Attachments: viewprofile.patch, viewprofile.patch
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

--
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-2422) Delete contact from View Profile screen in eCommerce

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

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

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

Hi Chandan,

There is an issue in your patch :


D:\workspace\ofbizRun>patch -p0  0<viewprofile.patch
patching file specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl
patch: **** malformed patch at line 17:

BTW why everybody is putting &nbsp; around each uilabels, very mysterious...

> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Vikas Mayur
>             Fix For: Release Branch 9.04, SVN trunk
>
>         Attachments: viewprofile.patch, viewprofile.patch
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

--
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-2422) Delete contact from View Profile screen in eCommerce

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

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

Jacques Le Roux closed OFBIZ-2422.
----------------------------------

    Resolution: Fixed
      Assignee: Jacques Le Roux  (was: Vikas Mayur)

Thanks Chandan,

I have finally added a slightly modified version of your patch by hand (just removed the &nbsp; around the label) in trunk at r773697 and R9.04 at r773698.

> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Jacques Le Roux
>             Fix For: Release Branch 9.04, SVN trunk
>
>         Attachments: viewprofile.patch, viewprofile.patch
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

--
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-2422) Delete contact from View Profile screen in eCommerce

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

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

Jacques Le Roux edited comment on OFBIZ-2422 at 5/11/09 2:23 PM:
-----------------------------------------------------------------

Thanks Chandan,

I have finally added a slightly modified version of your patch by hand (just removed the & nbsp; around the label) in trunk at r773697 and R9.04 at r773698.

      was (Author: jacques.le.roux):
    Thanks Chandan,

I have finally added a slightly modified version of your patch by hand (just removed the &nbsp; around the label) in trunk at r773697 and R9.04 at r773698.
 

> Delete contact from View Profile screen in eCommerce
> ----------------------------------------------------
>
>                 Key: OFBIZ-2422
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2422
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: specialpurpose/ecommerce
>    Affects Versions: Release Branch 9.04, SVN trunk
>            Reporter: Vikas Mayur
>            Assignee: Jacques Le Roux
>             Fix For: Release Branch 9.04, SVN trunk
>
>         Attachments: viewprofile.patch, viewprofile.patch
>
>
> Steps:
> 1) Login in eCommerce app using DemoCustomer/ofbiz
> 2) Click on expire link against an address under Contact Information screenlet and you see the error.
> Reported by Pranay Pandey.

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