Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0000314Openbravo ERP03. Procurement managementpublic2008-05-15 13:452008-12-02 13:01
maria_perez 
gorkaion 
normalmajoralways
closedfixed 
20Ubuntu
2.35 
2.35pi 
No
Core
No
0000314: Wrong documentno in receipts created from pending goods
In Procurement Management --> Transactions --> Pending goods receipt. We select a pending purchase order, select quantity, warehouse and reception date and click on the Process Button.

Then a good receipt is generated with a document number which is not correct according to the document type.

Patch found:

In file --> src/org/openbravo/erpCommon/ad_forms/MaterialReceiptPending.java

The line:

strDocumentno = Utility.getDocumentNo(this, vars, "", "M_InOut", Utility.getContext(this, vars, "C_DocTypeTarget_ID", docTargetType), Utility.getContext(this, vars, "C_DocType_ID", docTargetType), false, true);

has been changed to:

strDocumentno = Utility.getDocumentNo(this, vars, "", "M_InOut", docTargetType.equals("")?Utility.getContext(this, vars, "C_DocTypeTarget_ID", docTargetType):docTargetType, Utility.getContext(this, vars, "C_DocType_ID", docTargetType), false, true);

In order to use the variable docTargetType as input parameter in method getDocumentNo, instead of the session variable C_DocTypeTarget_ID, which is used in the current code.

In Procurement Management --> Transactions --> Pending goods receipt. We select a pending purchase order, select quantity, warehouse and reception date and click on the Process Button.
No tags attached.
depends on backport 0000429 closed gorkaion Wrong documentno in receipts created from pending goods 
Issue History
2008-05-15 13:45maria_perezNew Issue
2008-05-15 13:45maria_perezAssigned To => cromero
2008-05-19 18:57cromeroAssigned Tocromero => gorkaion
2008-05-19 18:57cromeroStatusnew => acknowledged
2008-05-26 12:16psarobeStatusacknowledged => scheduled
2008-05-29 19:43gorkaionStatusscheduled => resolved
2008-05-29 19:43gorkaionsvn_revision => 4679
2008-05-29 19:43gorkaionResolutionopen => fixed
2008-05-29 19:43gorkaionNote Added: 0000387
2008-06-11 12:46cromeroTarget Version => 2.40
2008-06-11 14:29cromeroTarget Version2.40 => 2.35
2008-06-16 06:55pjuvaraSeverityminor => major
2008-08-20 19:08psarobeRegression testing => No
2008-08-20 19:08psarobeStatusresolved => closed
2008-08-20 19:08psarobeFixed in Version => trunk
2008-12-02 13:01jaimetorresf_bug_id0 => 2377021

Notes
(0000387)
gorkaion   
2008-05-29 19:43   
Fixed the java and xsql file to get the correct Document No.