Openbravo Issue Tracking System - Retail Modules | ||||||||||||||||||||||||||||||||||||||||
View Issue Details | ||||||||||||||||||||||||||||||||||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | |||||||||||||||||||||||||||||||||||
0027415 | Retail Modules | Web POS | public | 2014-08-22 10:19 | 2015-03-06 16:57 | |||||||||||||||||||||||||||||||||||
Reporter | Orekaria | |||||||||||||||||||||||||||||||||||||||
Assigned To | aaroncalero | |||||||||||||||||||||||||||||||||||||||
Priority | normal | Severity | major | Reproducibility | always | |||||||||||||||||||||||||||||||||||
Status | closed | Resolution | fixed | |||||||||||||||||||||||||||||||||||||
Platform | OS | 5 | OS Version | |||||||||||||||||||||||||||||||||||||
Product Version | ||||||||||||||||||||||||||||||||||||||||
Target Version | RR15Q2 | Fixed in Version | RR15Q2 | |||||||||||||||||||||||||||||||||||||
Merge Request Status | ||||||||||||||||||||||||||||||||||||||||
Review Assigned To | marvintm | |||||||||||||||||||||||||||||||||||||||
OBNetwork customer | ||||||||||||||||||||||||||||||||||||||||
Support ticket | ||||||||||||||||||||||||||||||||||||||||
Regression level | ||||||||||||||||||||||||||||||||||||||||
Regression date | ||||||||||||||||||||||||||||||||||||||||
Regression introduced in release | ||||||||||||||||||||||||||||||||||||||||
Regression introduced by commit | ||||||||||||||||||||||||||||||||||||||||
Triggers an Emergency Pack | No | |||||||||||||||||||||||||||||||||||||||
Summary | 0027415: Stabilization: alert("") should never be used | |||||||||||||||||||||||||||||||||||||||
Description | It stops the javascript heap The browser alert is not shown in the screenshots The test logic to detect when one is present is almost a hack. Also, the tests cannot access the content of the alert Is also not seen when in a hangout call | |||||||||||||||||||||||||||||||||||||||
Steps To Reproduce | In the WebPOS login page Try to login with wrong credentials Verify that an alert is shown | |||||||||||||||||||||||||||||||||||||||
Proposed Solution | in ob-login.js change this code: var params; OB.UTIL.showLoggingOut(false); OB.MobileApp.model.on('loginfail', function (status, data) { var msg; if (data && data.messageTitle) { msg = data.messageTitle; } if (data && data.messageText) { msg += (msg ? '\n' : '') + data.messageText; } msg = msg || 'Invalid user name or password.\nPlease try again.'; alert(msg); if (this.$.password) { this.$.password.setValue(''); } if (this.$.username) { this.$.username.focus(); } }, this); for this one: OB.MobileApp.model.on('loginfail', function (status, data) { var me = this; var msgTittle = 'Error'; var msgText = 'Invalid user name or password. Please try again.'; if (data && data.messageTitle) { msgTittle = data.messageTitle; } if (data && data.messageText) { msgText = data.messageText; } OB.UTIL.showConfirmation.display(msgTittle, msgText, [{ label: 'OK', isConfirmButton: true, action: function () { if (me.$.password) { me.$.password.setValue(''); } OB.MobileApp.model.navigate('login'); } }], { onHideFunction: function () { if (me.$.password) { me.$.password.setValue(''); } OB.MobileApp.model.navigate('login'); } }); }, this); | |||||||||||||||||||||||||||||||||||||||
Additional Information | ||||||||||||||||||||||||||||||||||||||||
Tags | No tags attached. | |||||||||||||||||||||||||||||||||||||||
Relationships |
| |||||||||||||||||||||||||||||||||||||||
Attached Files | issue-27415-posterminal.diff (4,040) 2014-12-17 10:59 https://issues.openbravo.com/file_download.php?file_id=7601&type=bug issue-27415-mobile-core.diff (7,794) 2014-12-17 11:01 https://issues.openbravo.com/file_download.php?file_id=7602&type=bug | |||||||||||||||||||||||||||||||||||||||
Issue History | ||||||||||||||||||||||||||||||||||||||||
Date Modified | Username | Field | Change | |||||||||||||||||||||||||||||||||||||
2014-08-22 10:19 | Orekaria | New Issue | ||||||||||||||||||||||||||||||||||||||
2014-08-22 10:19 | Orekaria | Assigned To | => Orekaria | |||||||||||||||||||||||||||||||||||||
2014-08-22 10:19 | Orekaria | Triggers an Emergency Pack | => No | |||||||||||||||||||||||||||||||||||||
2014-08-22 10:19 | Orekaria | Relationship added | blocks 0027329 | |||||||||||||||||||||||||||||||||||||
2014-08-22 10:20 | Orekaria | Relationship added | blocks 0026771 | |||||||||||||||||||||||||||||||||||||
2014-09-14 17:05 | Orekaria | Target Version | RR14Q4 => RR15Q1 | |||||||||||||||||||||||||||||||||||||
2014-09-14 17:07 | Orekaria | Proposed Solution updated | ||||||||||||||||||||||||||||||||||||||
2014-12-08 11:51 | mtaal | Target Version | RR15Q1 => RR15Q2 | |||||||||||||||||||||||||||||||||||||
2014-12-16 23:27 | mtaal | Relationship added | has duplicate 0022172 | |||||||||||||||||||||||||||||||||||||
2014-12-16 23:33 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||
2014-12-16 23:33 | hgbot | Note Added: 0072584 | ||||||||||||||||||||||||||||||||||||||
2014-12-17 10:57 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||
2014-12-17 10:57 | hgbot | Note Added: 0072604 | ||||||||||||||||||||||||||||||||||||||
2014-12-17 10:59 | mtaal | File Added: issue-27415-posterminal.diff | ||||||||||||||||||||||||||||||||||||||
2014-12-17 11:01 | mtaal | File Added: issue-27415-mobile-core.diff | ||||||||||||||||||||||||||||||||||||||
2014-12-17 12:46 | mtaal | Relationship added | has duplicate 0021087 | |||||||||||||||||||||||||||||||||||||
2015-02-03 17:35 | aaroncalero | Assigned To | Orekaria => aaroncalero | |||||||||||||||||||||||||||||||||||||
2015-02-03 17:38 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||
2015-02-03 17:38 | hgbot | Note Added: 0074042 | ||||||||||||||||||||||||||||||||||||||
2015-02-03 17:43 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||
2015-02-03 17:43 | hgbot | Note Added: 0074044 | ||||||||||||||||||||||||||||||||||||||
2015-02-03 17:43 | hgbot | Status | new => resolved | |||||||||||||||||||||||||||||||||||||
2015-02-03 17:43 | hgbot | Resolution | open => fixed | |||||||||||||||||||||||||||||||||||||
2015-02-03 17:43 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/7df040939eecdaefb786784b64a2a3af9c638c35 [^] | |||||||||||||||||||||||||||||||||||||
2015-02-06 19:20 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||
2015-02-06 19:20 | hgbot | Note Added: 0074263 | ||||||||||||||||||||||||||||||||||||||
2015-02-26 17:32 | dmitry_mezentsev | Note Added: 0074979 | ||||||||||||||||||||||||||||||||||||||
2015-03-06 15:41 | marvintm | Review Assigned To | => marvintm | |||||||||||||||||||||||||||||||||||||
2015-03-06 15:41 | marvintm | Status | resolved => closed | |||||||||||||||||||||||||||||||||||||
2015-03-06 15:41 | marvintm | Fixed in Version | => RR15Q2 | |||||||||||||||||||||||||||||||||||||
2015-03-06 16:55 | Orekaria | Relationship added | blocks 0028933 | |||||||||||||||||||||||||||||||||||||
2015-03-06 16:57 | Orekaria | Note Added: 0075259 | ||||||||||||||||||||||||||||||||||||||
2015-03-06 16:57 | Orekaria | Note Edited: 0075259 | bug_revision_view_page.php?bugnote_id=0075259#r7890 |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|