Fix for [ 1884676 ] Fact not setting transaction
This commit is contained in:
parent
57b13fb133
commit
d19b2cd1ea
|
@ -39,7 +39,9 @@ public final class Fact
|
||||||
{
|
{
|
||||||
m_doc = document;
|
m_doc = document;
|
||||||
m_acctSchema = acctSchema;
|
m_acctSchema = acctSchema;
|
||||||
m_postingType = defaultPostingType;
|
m_postingType = defaultPostingType;
|
||||||
|
// Fix [ 1884676 ] Fact not setting transaction
|
||||||
|
m_trxName = document.getTrxName();
|
||||||
//
|
//
|
||||||
log.config(toString());
|
log.config(toString());
|
||||||
} // Fact
|
} // Fact
|
||||||
|
@ -763,7 +765,8 @@ public final class Fact
|
||||||
* @return true if all lines were saved
|
* @return true if all lines were saved
|
||||||
*/
|
*/
|
||||||
public boolean save (String trxName)
|
public boolean save (String trxName)
|
||||||
{
|
{
|
||||||
|
m_trxName = trxName;
|
||||||
// save Lines
|
// save Lines
|
||||||
for (int i = 0; i < m_lines.size(); i++)
|
for (int i = 0; i < m_lines.size(); i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue