Openbravo Issue Tracking System - Retail Modules |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0031509 | Retail Modules | Web POS | public | 2015-11-16 17:17 | 2015-12-07 11:08 |
|
Reporter | aaroncalero | |
Assigned To | ranjith_qualiantech_com | |
Priority | normal | Severity | major | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | RR16Q1 | |
Merge Request Status | |
Review Assigned To | guilleaer |
OBNetwork customer | OBPS |
Support ticket | |
Regression level | Coding ( Testing ) |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | https://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/6c0bf987f86b267b90c0c88364de92f79a02b338 [^] |
Triggers an Emergency Pack | No |
|
Summary | 0031509: [SERQA 398] Opening the EDIT panel always focuses on the last line of the ticket |
Description | In web pos, when we have a ticket with several lines, going to the EDIT tab will always set the focus to the last line, regardless of the previously selected line.
This issue is working fine on Q3.2 |
Steps To Reproduce | Login in web pos
Create a receipt with several lines.
Select the first line (the EDIT panel will be shown with the values of the selected line)
Click on the EDIT button.
>> The last line will be autoselected and the EDIT tab values will change to show the values of the last line. |
Proposed Solution | Clicking on the EDIT button should never change the selected line. |
Additional Information | |
Tags | SER-QA |
Relationships | causes | defect | 0032734 | | closed | ranjith_qualiantech_com | Overall performance loss after clicking on receipt lines several times |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2015-11-16 17:17 | aaroncalero | New Issue | |
2015-11-16 17:17 | aaroncalero | Assigned To | => Retail |
2015-11-16 17:17 | aaroncalero | OBNetwork customer | => Yes |
2015-11-16 17:17 | aaroncalero | Resolution time | => 1448838000 |
2015-11-16 17:17 | aaroncalero | Regression level | => Coding ( Testing ) |
2015-11-16 17:17 | aaroncalero | Regression introduced by commit | => https://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/6c0bf987f86b267b90c0c88364de92f79a02b338 [^] |
2015-11-16 17:17 | aaroncalero | Triggers an Emergency Pack | => No |
2015-11-18 20:30 | Orekaria | Note Added: 0081964 | |
2015-11-18 22:37 | Orekaria | Status | new => acknowledged |
2015-11-20 10:26 | ranjith_qualiantech_com | Assigned To | Retail => ranjith_qualiantech_com |
2015-11-20 10:26 | ranjith_qualiantech_com | Status | acknowledged => scheduled |
2015-11-27 10:39 | hgbot | Checkin | |
2015-11-27 10:39 | hgbot | Note Added: 0082409 | |
2015-11-27 10:39 | hgbot | Status | scheduled => resolved |
2015-11-27 10:39 | hgbot | Resolution | open => fixed |
2015-11-27 10:39 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/c3305a61a5f79b970e7c02a16a302ad6045beed5 [^] |
2015-11-27 10:40 | hgbot | Checkin | |
2015-11-27 10:40 | hgbot | Note Added: 0082411 | |
2015-12-01 11:43 | agete | Tag Attached: SER-QA | |
2015-12-01 11:44 | agete | Summary | Opening the EDIT panel always focuses on the last line of the ticket => [SERQA 398]Opening the EDIT panel always focuses on the last line of the ticket |
2015-12-01 13:39 | agete | Summary | [SERQA 398]Opening the EDIT panel always focuses on the last line of the ticket => [SERQA 398] Opening the EDIT panel always focuses on the last line of the ticket |
2015-12-07 11:08 | guilleaer | Review Assigned To | => guilleaer |
2015-12-07 11:08 | guilleaer | Status | resolved => closed |
2015-12-07 11:08 | guilleaer | Fixed in Version | => RR16Q1 |
2016-04-20 17:20 | Orekaria | Relationship added | causes 0032734 |
Notes |
|
(0081964)
|
Orekaria
|
2015-11-18 20:30
|
|
Verify if this code is involved:
if (!options.isManual) {
// The tap was not manual. So consider the last line added
var lines = this.model.get('order').get('lines');
var lastLine;
if (lines && lines.length > 0) {
lastLine = lines.models[lines.length - 1];
}
if (lastLine) {
lastLine.trigger('selected', lastLine);
}
}
if (!this.disabled) {
this.doTabChange({
tabPanel: this.tabPanel,
keyboard: 'toolbarscan',
edit: true
});
} |
|
|
(0082409)
|
hgbot
|
2015-11-27 10:39
|
|
|
|
(0082411)
|
hgbot
|
2015-11-27 10:40
|
|
Repository: tools/automation/pi-mobile
Changeset: eab92fde96e85795b86ebf1d88e784709c6f7fab
Author: Ranjith <ranjith <at> qualiantech.com>
Date: Fri Nov 27 15:09:04 2015 +0530
URL: http://code.openbravo.com/tools/automation/pi-mobile/rev/eab92fde96e85795b86ebf1d88e784709c6f7fab [^]
Verifies issue 31509: Added automated test 'I31509_EditReceiptLineBasedOnLastSelection'
---
A src-test/org/openbravo/test/mobile/retail/pack/selenium/tests/receipts/I31509_EditReceiptLineBasedOnLastSelection.java
---
|
|