IDEMPIERE-904 Copy Details process in GL Journal resulting wrong posting date / Thanks to Anozi Mada

This commit is contained in:
Carlos Ruiz 2013-05-04 15:06:41 -05:00
parent 9598826ba3
commit 2cee634016
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class CopyFromJournalDoc extends SvrProcess
MJournal from = new MJournal (getCtx(), m_GL_Journal_ID, get_TrxName());
MJournal to = new MJournal (getCtx(), To_GL_Journal_ID, get_TrxName());
//
int no = to.copyLinesFrom(from, from.getDateAcct(), 'x');
int no = to.copyLinesFrom(from, to.getDateAcct(), 'x');
//
return "@Copied@=" + no;
} // doIt