Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0024574 | Openbravo ERP | B. User interface | public | 2013-08-23 14:45 | 2014-05-23 07:24 |
|
Reporter | jonalegriaesarte | |
Assigned To | shankarb | |
Priority | normal | Severity | major | Reproducibility | have not tried |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | 3.0MP27 | Fixed in Version | 3.0MP27 | |
Merge Request Status | |
Review Assigned To | AugustoMauch |
OBNetwork customer | OBPS |
Web browser | |
Modules | Core |
Support ticket | 23054 |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0024574: Filter is not working fine in some special cases |
Description | Filter is not working fine in some special cases. For example, if the name of two organizations is very similar, it is not working fine. |
Steps To Reproduce | - Create two organizations: test A and test B A
- Create two business partners, one in each organization
- If the user writes a text in the filter, the system should list all the entries that contains this text. This is working fine.
- If the user selects one organization in the drop down list, the system should list all the entries that belongs to the filter (or filters) selected. This is not working fine. |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | related to | defect | 0026645 | | closed | alostale | Tables and Tabledirs are not working in Internet Explorer 7 and 9 |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2013-08-23 14:45 | jonalegriaesarte | New Issue | |
2013-08-23 14:45 | jonalegriaesarte | Assigned To | => AugustoMauch |
2013-08-23 14:45 | jonalegriaesarte | Modules | => Core |
2013-08-23 14:45 | jonalegriaesarte | OBNetwork customer | => Yes |
2013-08-23 14:45 | jonalegriaesarte | Support ticket | => 23054 |
2013-08-23 14:45 | jonalegriaesarte | Triggers an Emergency Pack | => No |
2013-08-26 04:34 | shankarb | Assigned To | AugustoMauch => shankarb |
2013-08-27 05:19 | shankarb | Review Assigned To | => AugustoMauch |
2013-08-27 05:19 | shankarb | Issue Monitored: AugustoMauch | |
2013-08-27 05:20 | hgbot | Checkin | |
2013-08-27 05:20 | hgbot | Note Added: 0060773 | |
2013-08-27 05:20 | hgbot | Status | new => resolved |
2013-08-27 05:20 | hgbot | Resolution | open => fixed |
2013-08-27 05:20 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/b15fbad4f98e3b6b136e6c90198a9297f0db1576 [^] |
2013-08-27 09:15 | AugustoMauch | Note Added: 0060779 | |
2013-08-27 09:15 | AugustoMauch | Status | resolved => closed |
2013-08-27 09:15 | AugustoMauch | Fixed in Version | => 3.0MP27 |
2013-08-29 13:17 | hudsonbot | Checkin | |
2013-08-29 13:17 | hudsonbot | Note Added: 0060810 | |
2013-08-30 15:00 | hgbot | Checkin | |
2013-08-30 15:00 | hgbot | Note Added: 0060845 | |
2013-09-02 18:18 | hudsonbot | Checkin | |
2013-09-02 18:18 | hudsonbot | Note Added: 0060872 | |
2014-05-22 16:47 | alostale | Relationship added | duplicate of 0026645 |
2014-05-22 16:47 | alostale | Relationship replaced | related to 0026645 |
2014-05-22 17:10 | hgbot | Checkin | |
2014-05-22 17:10 | hgbot | Note Added: 0067374 | |
2014-05-23 07:24 | hudsonbot | Checkin | |
2014-05-23 07:24 | hudsonbot | Note Added: 0067395 | |
Notes |
|
(0060773)
|
hgbot
|
2013-08-27 05:20
|
|
Repository: erp/devel/pi
Changeset: b15fbad4f98e3b6b136e6c90198a9297f0db1576
Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com>
Date: Mon Aug 26 17:44:12 2013 +0530
URL: http://code.openbravo.com/erp/devel/pi/rev/b15fbad4f98e3b6b136e6c90198a9297f0db1576 [^]
Fixes Issue 0024574: Filter is not working fine in some special cases
When list items are filtered by selecting the option from dropdown, the filter applied is filtering using contains. Hence if the filter is 'test A', 'test B A' will also be shown.
When selecting values, == is appended to each selected item to filter the exact value.
When showing picklist, == is trimmed from value so that the values are selected properly in the dropdown.
---
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-list-filter.js
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-list.js
---
|
|
|
|
Code reviewed and verified in pi@327ce5aac264 |
|
|
|
|
|
(0060845)
|
hgbot
|
2013-08-30 15:00
|
|
Repository: erp/devel/pi
Changeset: 6b80b8d83087d03767b9fa658b2662923e63ed3b
Author: Shankar Balachandran <shankar.balachandran <at> openbravo.com>
Date: Fri Aug 30 18:28:25 2013 +0530
URL: http://code.openbravo.com/erp/devel/pi/rev/6b80b8d83087d03767b9fa658b2662923e63ed3b [^]
Related to issue 24574 : Prevent incorrect filtering in list and composite identifiers
In case of list reference, the search key is passed instead of name, so the approach to add double equals before prevents filter.
Added check to continue in case of list reference. Similarly in the case the field has multiple identifiers, then the filtering is not done by adding double equals.
---
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-list-filter.js
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-list.js
---
|
|
|
|
|
|
(0067374)
|
hgbot
|
2014-05-22 17:10
|
|
Repository: erp/devel/pi
Changeset: 1cbe9f023742a2bc78a8b1bac1106106924145b2
Author: Asier Lostalé <asier.lostale <at> openbravo.com>
Date: Thu May 22 16:57:06 2014 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/1cbe9f023742a2bc78a8b1bac1106106924145b2 [^]
related to issue 26645, related to issue 24574: clean up
---
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/formitem/ob-formitem-list.js
---
|
|
|
|
|