Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0052837
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[Modules] Advanced Warehouse Operationsmajoralways2023-06-23 01:502023-06-23 09:42
ReporteraxelmercadoView Statuspublic 
Assigned ToTriage Omni WMS 
PriorityhighResolutionduplicateFixed in Version
StatusclosedFix in branchFixed in SCM revision
ProjectionnoneETAnoneTarget Version
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionSCM revision 
Merge Request Status
Regression date
Regression introduced by commit
Regression level
Review Assigned To
Support ticket67167
OBNetwork customerOBPS
Regression introduced in release
Summary

0052837: Problem with "Blind Count" button and error in "tap" function.

DescriptionReviewing the problem reported by Practics in its client which is in version 21Q4 (See video:https://www.youtube.com/watch?v=-eRC96ZILS4 [^]) and comparing with the updated Livebuilds code, since in the latest version the problem is not reproduced, not because it has been solved, but because there is a bug in the code that allows the workflow to continue.

In the asdasdsd.js file in the "tap" function of the "blindCountOption" button in the different versions is as follows:

- In 21Q4:
tap: function() {
                this.setChecked(!this.getChecked());
                if (this.getChecked()) {
                    this.owner.owner.owner.$.initializeCountOptionFooter.hide();
                this.owner.owner.owner.$.blindCountOptionFooter.setValue(false);
                } else {
                    this.owner.owner.owner.$.initializeCountOptionFooter.show();
                }
            }

this.owner.owner.owner.$.blindCountOptionFooter.setValue(false); IN THIS LINE IS THE PROBLEM, AS IT LEAVES THE CHECK ALWAYS FALSE.

- In 23Q2:
tap: function () {
          this.setChecked(!this.getChecked());
          if (this.getChecked()) {
            this.owner.owner.owner.$.initializeCountOptionFooter.hide();
      this.$.footer.$.countUserSelectorFooter.$.blindCountOptionFooter.setValue(false);
          } else {
            this.owner.owner.owner.$.initializeCountOptionFooter.show();
          }
        }

this.$.footer.$.countUserSelectorFooter.$.blindCountOptionFooter.setValue(false); AND HERE IS THE OTHER PROBLEM, IN THE LATEST VERSION IT DOES NOT FAIL AS THIS LINE EVERY TIME THE BUTTON IS TAPPED DOES NOT EXIST (See: https://www.awesomescreenshot.com/video/18569271?key=b64bc898a3b7397f24864ffa5be031b5 [^]).
Steps To Reproduce- In BO, have the preference "Force Blind Inventory Count" with value "N"-.
- Log in to AWO POS.
- Open the menu and select the Count function.
- Open the browser developer console and verify that every time you hit the "Blind Count" check the error is generated.
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
duplicate of defect 0052811 closedmtaal Error in browser console when check Bind Count in AWO 

-  Notes
There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
2023-06-23 01:50 axelmercado New Issue
2023-06-23 01:50 axelmercado Assigned To => Triage Omni WMS
2023-06-23 01:50 axelmercado Support ticket => 67167
2023-06-23 01:50 axelmercado OBNetwork customer => OBPS
2023-06-23 09:42 mtaal Relationship added duplicate of 0052811
2023-06-23 09:42 mtaal Status new => closed
2023-06-23 09:42 mtaal Resolution open => duplicate


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker