BF [ 1890206 ] getLines without reload not assigning trx - fixed for MPaySelectionCheck
This commit is contained in:
parent
e6ffe66916
commit
79cfb4f56b
|
@ -720,8 +720,10 @@ public final class MPaySelectionCheck extends X_C_PaySelectionCheck
|
||||||
*/
|
*/
|
||||||
public MPaySelectionLine[] getPaySelectionLines (boolean requery)
|
public MPaySelectionLine[] getPaySelectionLines (boolean requery)
|
||||||
{
|
{
|
||||||
if (m_lines != null && !requery)
|
if (m_lines != null && !requery) {
|
||||||
|
set_TrxName(m_lines, get_TrxName());
|
||||||
return m_lines;
|
return m_lines;
|
||||||
|
}
|
||||||
ArrayList<MPaySelectionLine> list = new ArrayList<MPaySelectionLine>();
|
ArrayList<MPaySelectionLine> list = new ArrayList<MPaySelectionLine>();
|
||||||
String sql = "SELECT * FROM C_PaySelectionLine WHERE C_PaySelectionCheck_ID=? ORDER BY Line";
|
String sql = "SELECT * FROM C_PaySelectionLine WHERE C_PaySelectionCheck_ID=? ORDER BY Line";
|
||||||
PreparedStatement pstmt = null;
|
PreparedStatement pstmt = null;
|
||||||
|
|
Loading…
Reference in New Issue