IDEMPIERE-100 Translation Export should not export UUID. Incorporate patch from Dirk Niemeyer

(transplanted from 66e3d1131cad464c0490d1c49ac3e39df96ce66c)
This commit is contained in:
Dirk Niemeyer 2011-12-11 10:17:42 +08:00
parent 75d51968cd
commit 2bac002db4
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ public class Translation
{
PreparedStatement pstmt = DB.prepareStatement(sql, null);
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();
while (rs.next())
{