[jira] [Updated] (OFBIZ-4780) Auto-completer request should be async.

2012-04-06 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4780:


Attachment: selectAll.patch

Here is the patch for the fix.

 Auto-completer request should be async.
 ---

 Key: OFBIZ-4780
 URL: https://issues.apache.org/jira/browse/OFBIZ-4780
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, SVN trunk
Reporter: Deepak Dixit
Assignee: Jacques Le Roux
Priority: Minor
 Fix For: Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4780.patch, selectAll.patch


 Currently auto-completer uses sync call to prepare auto-completer source 
 (result list). 
 Due to this user can't perform any other operation on lookup field and user 
 should have to wait until response came.
 In general, synchronous requests should never be used because they tend to 
 block the execution of anything else on the page (or even the entire browser 
 UI), which isn't good.
 Also ajax-loader image not display on google chrome browser due to sync 
 request.
 Need to use async request for auto-completer.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4780) Auto-completer request should be async.

2012-04-03 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4780:


Attachment: OFBIZ-4780.patch

Here is the patch to fix this issue.

Added LAST_AUTOCOMP_REF global js variable to store the last auto-completer 
reference (jqXHR). If new ajax request is initiated then abort the 
LAST_AUTOCOMP_REF if exists and assign current jqXHR as LAST_AUTOCOMP_REF.

Also skip the RequestHandlerException for ajax call to support abort() method. 
If we call abort() method on jqXHR then request handler throws Broken pipe 
exception because request is aborted by client(Browser), to handle this skip 
the RequestHandlerException for ajax request.



 Auto-completer request should be async.
 ---

 Key: OFBIZ-4780
 URL: https://issues.apache.org/jira/browse/OFBIZ-4780
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, SVN trunk
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4780.patch


 Currently auto-completer uses sync call to prepare auto-completer source 
 (result list). 
 Due to this user can't perform any other operation on lookup field and user 
 should have to wait until response came.
 In general, synchronous requests should never be used because they tend to 
 block the execution of anything else on the page (or even the entire browser 
 UI), which isn't good.
 Also ajax-loader image not display on google chrome browser due to sync 
 request.
 Need to use async request for auto-completer.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4734) User behaviour issue on auto-completer.

2012-03-20 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4734:


Attachment: OFBIZ-4734-Trunk.patch
OFBIZ-4734-Release11.04.patch

Added spinner image for the auto-completer request.
Also added the No Records Found message if no matches found for the 
auto-completer search.

Thanks Nitesh Suryawanshi for the Patch and Rishi Solanki for the discussion. 

 User behaviour issue on auto-completer.
 ---

 Key: OFBIZ-4734
 URL: https://issues.apache.org/jira/browse/OFBIZ-4734
 Project: OFBiz
  Issue Type: Bug
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4734-Release11.04.patch, OFBIZ-4734-Trunk.patch


 Currently if user type in auto-completer text box and if matches found then 
 list display as auto-completer result list but if no matches found then user 
 didn't know that result will come or not, even no matches found.
 Change behaviour is when user type in text box then spinner (ajax loader 
 image) shows wchich tells user that search is in progress.
 If matches found or not found spinner disapperars and reult/ no result 
 message listed in auto-completer relsult list.
 Now user won't see any abnormal behaviour at ui.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4735) User behaviour issue on Lookup.

2012-03-20 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4735:


Attachment: OFBIZ-4735.patch
OFBIZ-4735-11.04.patch

Added ajax-loader image on the find screenlet title bar.

Thansk Anil Gupta for tht patch and Rishi Solanki for the discussion.

 User behaviour issue on Lookup.
 ---

 Key: OFBIZ-4735
 URL: https://issues.apache.org/jira/browse/OFBIZ-4735
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4735-11.04.patch, OFBIZ-4735.patch


 Currently if user perform search or use pagination in lookup and if matches 
 found then list display but if no matches found then user didn't know that 
 result will come or not, even no matches found.
 Change behaviour should be when user perform search or use pagination then 
 spinner (ajax loader image) shows wchich tells user that search is in 
 progress.
 If matches found or not found spinner disappears.
 Now user won't see any abnormal behaviour at ui.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4732) Not able to add Order Item Type for PO while adding item to existing PO.

2012-03-19 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4732:


Attachment: OFBIZ-4732-Trunk.patch
OFBIZ-4732-11.04.patch
OFBIZ-4732-10.04.patch

Here is the patch for the issue.

 Not able to add Order Item Type for PO while adding item to existing PO.
 

 Key: OFBIZ-4732
 URL: https://issues.apache.org/jira/browse/OFBIZ-4732
 Project: OFBiz
  Issue Type: Bug
  Components: order
Affects Versions: Release Branch 10.04, Release Branch 11.04, SVN trunk
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 10.04, Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4732-10.04.patch, OFBIZ-4732-11.04.patch, 
 OFBIZ-4732-Trunk.patch


 If we are creating PO then user can add order item type from show cart 
 screen, so there should be an option to add order item type while adding item 
 to existing PO on edit item screen.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4710) If user try to receive an cancelled Order then receive inventory page showing error.

2012-02-22 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4710:


Attachment: OFBIZ-4710.patch

Here is the patch for the fix.
- Passed andCondition from the purchase order lookup screen for autocompletor.
- Added check in ReeiveInventory groovy for cancelled order status.

 If user try to receive an cancelled Order then receive inventory page showing 
 error.
 

 Key: OFBIZ-4710
 URL: https://issues.apache.org/jira/browse/OFBIZ-4710
 Project: OFBiz
  Issue Type: Bug
  Components: product
Affects Versions: Release 10.04, Release Branch 11.04, SVN trunk
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 10.04, Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4710.patch


  - If user try to receive an cancelled order then receive inventory page 
 showing error.
  - Autocompletor for lookup purchase order displaying redundant order id.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4646) Autocompleter fails lookup fieldFormName contains (?)

2012-01-05 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4646:


Attachment: OFBIZ-4646-Trunk.patch
OFBIZ-4646-Release-11-04.patch

Here is the patch for this issue.

 Autocompleter fails lookup fieldFormName contains (?)
 -

 Key: OFBIZ-4646
 URL: https://issues.apache.org/jira/browse/OFBIZ-4646
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, SVN trunk
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4646-Release-11-04.patch, OFBIZ-4646-Trunk.patch


 Autocompleter fails if autocompleter fails lookup fieldFormName contains (?),
 For regenerating issue go to 
 https://demo-trunk.ofbiz.apache.org/facility/control/ReceiveInventory?facilityId=WebStoreWarehouse
  , enter any product id to receive, Now on receive inventory page search 
 Facility Location via autocompleter then it will show the lookup screen 
 instead of search result.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4646) Autocompleter fails if lookup fieldFormName contains (?)

2012-01-05 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4646:


Summary: Autocompleter fails if lookup fieldFormName contains (?)  (was: 
Autocompleter fails lookup fieldFormName contains (?))

 Autocompleter fails if lookup fieldFormName contains (?)
 

 Key: OFBIZ-4646
 URL: https://issues.apache.org/jira/browse/OFBIZ-4646
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, SVN trunk
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4646-Release-11-04.patch, OFBIZ-4646-Trunk.patch


 Autocompleter fails if autocompleter fails lookup fieldFormName contains (?),
 For regenerating issue go to 
 https://demo-trunk.ofbiz.apache.org/facility/control/ReceiveInventory?facilityId=WebStoreWarehouse
  , enter any product id to receive, Now on receive inventory page search 
 Facility Location via autocompleter then it will show the lookup screen 
 instead of search result.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4393) View entity condition-expr doesn't handle null

2011-11-13 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4393:


Attachment: OFBIZ-4393-release.patch

Here is the patch for release 10.04 and 11.04.

 View entity condition-expr doesn't handle null
 --

 Key: OFBIZ-4393
 URL: https://issues.apache.org/jira/browse/OFBIZ-4393
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 10.04, Release Branch 11.04, SVN trunk
 Environment: Rev 1165137
Reporter: Anne Jessel
Assignee: Adrian Crum
 Fix For: SVN trunk

 Attachments: OFBIZ-4393-release.patch, 
 OFBIZ-4393-view-entity_condition-expr_null.patch, 
 OFBIZ-4393-view-entity_condition-expr_null.patch, 
 OFBIZ-4393-view-entity_condition-expr_null.patch

   Original Estimate: 2h
  Remaining Estimate: 2h

 condition-expr tag in view-entity can't be used to compare a field with null. 
 An absent value attribute is read as an empty string, and the code currently 
 checks for value being null to know when to compare against null.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4484) Removing product association from catalog product assoc page, result page shows error message.

2011-10-15 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4484:


Attachment: OFBIZ-4484.patch

Used request-redirect for UpdateProductAssoc request to fix the issue.

 Removing product association from catalog product assoc page, result page 
 shows error message.
 --

 Key: OFBIZ-4484
 URL: https://issues.apache.org/jira/browse/OFBIZ-4484
 Project: OFBiz
  Issue Type: Bug
  Components: product
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 10.04, Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4484.patch


 Removing product association from catalog product assoc page, result page 
 shows error message.
 Association not found: Product Id=, Product Id To=, Association Type Id=, 
 From Date=

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4484) Removing product association from catalog product assoc page, result page shows error message.

2011-10-15 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4484:


Attachment: Screen shot 2011-10-15 at 4.25.31 PM.png

 Removing product association from catalog product assoc page, result page 
 shows error message.
 --

 Key: OFBIZ-4484
 URL: https://issues.apache.org/jira/browse/OFBIZ-4484
 Project: OFBiz
  Issue Type: Bug
  Components: product
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 10.04, Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4484.patch, Screen shot 2011-10-15 at 4.25.31 
 PM.png


 Removing product association from catalog product assoc page, result page 
 shows error message.
 Association not found: Product Id=, Product Id To=, Association Type Id=, 
 From Date=

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4484) Removing product association from catalog product assoc page, result page shows error message.

2011-10-15 Thread Deepak Dixit (Updated) (JIRA)

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

Deepak Dixit updated OFBIZ-4484:


Attachment: Screen shot 2011-10-15 at 6.09.06 PM.png

 Removing product association from catalog product assoc page, result page 
 shows error message.
 --

 Key: OFBIZ-4484
 URL: https://issues.apache.org/jira/browse/OFBIZ-4484
 Project: OFBiz
  Issue Type: Bug
  Components: product
Reporter: Deepak Dixit
Priority: Minor
 Fix For: Release Branch 10.04, Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4484.patch, Screen shot 2011-10-15 at 4.25.31 
 PM.png, Screen shot 2011-10-15 at 6.09.06 PM.png


 Removing product association from catalog product assoc page, result page 
 shows error message.
 Association not found: Product Id=, Product Id To=, Association Type Id=, 
 From Date=

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira