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

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0033755
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[Retail Modules] Return Receiptmajorunable to reproduce2016-08-19 21:472016-08-31 11:26
ReporterrbianchiniView Statuspublic 
Assigned Toranjith_qualiantech_com 
PrioritynormalResolutionfixedFixed in VersionRR16Q4
StatusclosedFix in branchFixed in SCM revision
ProjectionnoneETAnoneTarget Version
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionRR16Q2.1SCM revision 
Review Assigned Toguilleaer
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0033755: Sometimes, Returned goods are shipped to an inactive locator

DescriptionSometimes, Returned goods are shipped to an inactive locator.

I can't reproduce in a clean environment, but i can provide the client's test environment.

The client has 791 inactive locators in the warehouse and only one active locator.
Steps To Reproduce1 - Log in web pos
2 - Perform a sell
3 - Click on verified return menu and select the ticket created in previous step
4 - select all lines
5 - return the receipt
6 - Go to back end and open goods shipment window
7 - select the shipment associated with the return created in step 5
8 - switch to lines tab and realize that the locator assigned to the lines is an inactive locator
Proposed Solutionclass: POSUtils.java
function: getBinForReturns(OBPOSApplications pOSTerminal)

add a ceck to get an anctive locator:

List<Locator> lstLocators = lstWarehouses.get(0).getLocatorList();

if (lstLocators.size() > 0) {
+ for (Locator locator : lstLocators) {
+ if (locator.isActive()) {
+ return locator;
+ }
- return lstLocators.get(0);
   }
} else {
   throw new OBException("Warehouse" + lstWarehouses.get(0) + " doesn't have bins");
}
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
related to defect 0033738 closedranjith_qualiantech_com [SERQA 1604] Priorities are ignored when selecting a storage bin to deposit returned goods. 

-  Notes
(0089332)
ranjith_qualiantech_com (developer)
2016-08-24 10:16

Fixed in the changeset http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/51660f59cd892e33e55fa2eb5b631d0f4d0c6694 [^]

- Issue History
Date Modified Username Field Change
2016-08-19 21:47 rbianchini New Issue
2016-08-19 21:47 rbianchini Assigned To => Retail
2016-08-19 21:47 rbianchini Resolution time => 1473390000
2016-08-19 21:47 rbianchini Triggers an Emergency Pack => No
2016-08-20 01:25 Integritas Issue Monitored: Integritas
2016-08-23 13:48 ranjith_qualiantech_com Relationship added related to 0033738
2016-08-24 10:15 ranjith_qualiantech_com Assigned To Retail => ranjith_qualiantech_com
2016-08-24 10:15 ranjith_qualiantech_com Status new => scheduled
2016-08-24 10:16 ranjith_qualiantech_com Note Added: 0089332
2016-08-24 10:16 ranjith_qualiantech_com Status scheduled => resolved
2016-08-24 10:16 ranjith_qualiantech_com Resolution open => fixed
2016-08-31 11:26 guilleaer Review Assigned To => guilleaer
2016-08-31 11:26 guilleaer Status resolved => closed
2016-08-31 11:26 guilleaer Fixed in Version => RR16Q4


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker