IDEMPIERE-100 Translation Export should not export UUID. Incorporate patch from Dirk Niemeyer
(transplanted from 66e3d1131cad464c0490d1c49ac3e39df96ce66c)
This commit is contained in:
parent
75d51968cd
commit
2bac002db4
|
@ -312,7 +312,7 @@ public class Translation
|
||||||
{
|
{
|
||||||
PreparedStatement pstmt = DB.prepareStatement(sql, null);
|
PreparedStatement pstmt = DB.prepareStatement(sql, null);
|
||||||
pstmt.setString(1, Base_Table + "_Trl");
|
pstmt.setString(1, Base_Table + "_Trl");
|
||||||
pstmt.setString(2, PO.getUUIDColumnName(Base_Table));
|
pstmt.setString(2, PO.getUUIDColumnName(Base_Table + "_Trl"));
|
||||||
ResultSet rs = pstmt.executeQuery();
|
ResultSet rs = pstmt.executeQuery();
|
||||||
while (rs.next())
|
while (rs.next())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue