details: https://code.openbravo.com/erp/devel/pi/rev/64263470f594 changeset: 15122:64263470f594 user: Antonio Moreno <antonio.moreno <at> openbravo.com> date: Thu Jan 12 09:36:34 2012 +0100 summary: Related to issue 13649. Make condition even more robust to avoid failure
details: https://code.openbravo.com/erp/devel/pi/rev/da0131b03de6 changeset: 15123:da0131b03de6 user: Antonio Moreno <antonio.moreno <at> openbravo.com> date: Thu Jan 12 09:37:13 2012 +0100 summary: Related to issue 13649. Make condition even more robust to avoid failure diffstat: src/org/openbravo/dal/xml/EntityXMLConverter.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r b5352d5513c3 -r da0131b03de6 src/org/openbravo/dal/xml/EntityXMLConverter.java --- a/src/org/openbravo/dal/xml/EntityXMLConverter.java Thu Jan 12 09:32:36 2012 +0100 +++ b/src/org/openbravo/dal/xml/EntityXMLConverter.java Thu Jan 12 09:37:13 2012 +0100 @@ -437,7 +437,7 @@ for (final Object o : childObjects) { // embed in the parent if (isOptionEmbedChildren()) { - final DataSetTable dst = (obObject != null && obObject.getEntity() != null) ? dataSetTablesByEntity + final DataSetTable dst = (getDataSet() != null && obObject.getEntity() != null) ? dataSetTablesByEntity .get(obObject.getEntity()) : null; if ((excludeAuditInfo != null && excludeAuditInfo) || (dst != null && dst.isExcludeAuditInfo())) { ------------------------------------------------------------------------------ RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now! http://p.sf.net/sfu/rsa-sfdev2dev2 _______________________________________________ Openbravo-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openbravo-commits
