Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0030222 | Openbravo ERP | A. Platform | public | 2015-06-22 12:38 | 2015-06-23 16:47 |
|
Reporter | AugustoMauch | |
Assigned To | inigosanchez | |
Priority | high | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | 3.0PR15Q3 | Fixed in Version | 3.0PR15Q3 | |
Merge Request Status | |
Review Assigned To | caristu |
OBNetwork customer | |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | Production - Confirmed Stable |
Regression date | 2014-09-05 |
Regression introduced in release | 3.0PR14Q4 |
Regression introduced by commit | https://code.openbravo.com/erp/devel/pi/rev/dc8d0777f38d8678aef43fd4044d8801a56f39d8 [^] |
Triggers an Emergency Pack | No |
|
Summary | 0030222: Delete popup is not hidden if two or more rows are deleted at the same time |
Description | If two or more records are selected and deleted, the records are deleted properly but the "Deleting..." popup is not hidden. The user will not be able to interact with the window until he refreshes it. |
Steps To Reproduce | As F&B Admin:
- Open the Product Category window
- Create two product categories
- In grid view, select the two product categories you just created and delete them
- Check that the "Deleting..." popup is not hidden
Note that when the Delete toolbar button is pressed this message is shown in the javascript console:
Uncaught TypeError: undefined is not a function |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | depends on | backport | 0030223 | 3.0PR15Q2.3 | closed | inigosanchez | Delete popup is not hidden if two or more rows are deleted at the same time | depends on | backport | 0030224 | 3.0PR15Q1.6 | closed | inigosanchez | Delete popup is not hidden if two or more rows are deleted at the same time | caused by | defect | 0026384 | 3.0PR14Q4 | closed | inigosanchez | The tree grid view is not refreshed after deleting a record |
|
Attached Files | DeletingPopup.png (82,735) 2015-06-22 12:38 https://issues.openbravo.com/file_download.php?file_id=8221&type=bug
|
|
Issue History |
Date Modified | Username | Field | Change |
2015-06-22 12:38 | AugustoMauch | New Issue | |
2015-06-22 12:38 | AugustoMauch | Assigned To | => platform |
2015-06-22 12:38 | AugustoMauch | File Added: DeletingPopup.png | |
2015-06-22 12:38 | AugustoMauch | Modules | => Core |
2015-06-22 12:38 | AugustoMauch | Triggers an Emergency Pack | => No |
2015-06-22 13:08 | AugustoMauch | Regression level | => Production - Confirmed Stable |
2015-06-22 13:08 | AugustoMauch | Regression date | => 2014-09-05 |
2015-06-22 13:08 | AugustoMauch | Regression introduced in release | => 3.0PR14Q4 |
2015-06-22 13:08 | AugustoMauch | Regression introduced by commit | => https://code.openbravo.com/erp/devel/pi/rev/dc8d0777f38d8678aef43fd4044d8801a56f39d8 [^] |
2015-06-22 13:08 | AugustoMauch | Relationship added | caused by 0026384 |
2015-06-22 13:09 | caristu | Severity | major => minor |
2015-06-22 13:09 | AugustoMauch | Assigned To | platform => inigosanchez |
2015-06-22 13:11 | caristu | Note Added: 0078414 | |
2015-06-22 13:12 | caristu | Status | new => scheduled |
2015-06-23 10:16 | inigosanchez | Issue Monitored: caristu | |
2015-06-23 10:17 | inigosanchez | Review Assigned To | => caristu |
2015-06-23 10:18 | hgbot | Checkin | |
2015-06-23 10:18 | hgbot | Note Added: 0078419 | |
2015-06-23 10:18 | hgbot | Status | scheduled => resolved |
2015-06-23 10:18 | hgbot | Resolution | open => fixed |
2015-06-23 10:18 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/b727e3caf4c29038b59d0f7b84feeaea4c9751d1 [^] |
2015-06-23 16:02 | caristu | Note Added: 0078433 | |
2015-06-23 16:02 | caristu | Status | resolved => closed |
2015-06-23 16:02 | caristu | Fixed in Version | => 3.0PR15Q3 |
2015-06-23 16:08 | caristu | Target Version | => 3.0PR15Q3 |
2015-06-23 16:47 | hudsonbot | Checkin | |
2015-06-23 16:47 | hudsonbot | Note Added: 0078441 | |
Notes |
|
|
Updated severity to minor. This issue only affects to those windows that have a tree structure associated to it. The records are removed but the pop-up is not hidden because of the js error. |
|
|
(0078419)
|
hgbot
|
2015-06-23 10:18
|
|
Repository: erp/devel/pi
Changeset: b727e3caf4c29038b59d0f7b84feeaea4c9751d1
Author: Inigo Sanchez <inigo.sanchez <at> openbravo.com>
Date: Tue Jun 23 10:14:39 2015 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/b727e3caf4c29038b59d0f7b84feeaea4c9751d1 [^]
Fixes issue 30222: delete popup is not hidden under some circumstances
The problem was that if two or more records were selected and deleted, the records were deleted properly but the "Deleting..." popup is not hidden.
The user will not be able to interact with the window until he refreshes it. This happends when in a grid that contains a tree grid view
This happened when a grid contains a treegrid and this one is not open first. In that case this element "view.treeGrid.data.handleUpdate" has not been created yet.
To avoid the problem, it has added a condition that checks whether the properties have been started correctly and thus, if the properties can be accessed.
---
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js
---
|
|
|
|
|
|
|
|