Peer review for 11830 - changed the whereClause not equivalent (the fix duplicated the bind variable)
FR: [ 2214883 ] Remove SQL code and Replace for Query Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2214883
This commit is contained in:
parent
d2fc48c00e
commit
0a44f15fc6
|
@ -158,7 +158,7 @@ public class MDistribution extends X_GL_Distribution
|
||||||
return retValue;
|
return retValue;
|
||||||
final String whereClause = "Account_ID=?";
|
final String whereClause = "Account_ID=?";
|
||||||
|
|
||||||
List<MDistribution> list = new Query(ctx,I_GL_Distribution.Table_Name,whereClause+"=?",null)
|
List<MDistribution> list = new Query(ctx,I_GL_Distribution.Table_Name,whereClause,null)
|
||||||
.setParameters(Account_ID)
|
.setParameters(Account_ID)
|
||||||
.list();
|
.list();
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue