Special treatment for EntityType it's a Table reference but must be treated as String
bug reported by guyferd on IRC channel
This commit is contained in:
parent
551d71c9ae
commit
2b2bfd2017
|
@ -15,7 +15,7 @@
|
|||
* or via info@compiere.org or http://www.compiere.org/license.html *
|
||||
*
|
||||
* Copyright (C) 2005 Robert Klein. robeklein@hotmail.com
|
||||
* _____________________________________________
|
||||
* Contributor(s): Carlos Ruiz - globalqss
|
||||
*****************************************************************************/
|
||||
package org.compiere.PackOut;
|
||||
|
||||
|
@ -246,7 +246,10 @@ public class PackRoll extends SvrProcess
|
|||
columnIDName = tableName+"_ID";
|
||||
}
|
||||
//Update columns that are Strings adjusting for single quotes
|
||||
if (v_AD_Reference_ID == 10 || v_AD_Reference_ID == 14 || v_AD_Reference_ID == 34 || v_AD_Reference_ID == 17)
|
||||
if (v_AD_Reference_ID == 10 || v_AD_Reference_ID == 14 || v_AD_Reference_ID == 34 || v_AD_Reference_ID == 17
|
||||
// Carlos Ruiz globalqss, special treatment for EntityType
|
||||
// it's a Table reference but must be treated as String
|
||||
|| (v_AD_Reference_ID == 18 && columnName.equalsIgnoreCase("EntityType")))
|
||||
if (rs2.getObject("ColValue").toString().equals("null")){
|
||||
;//Ignore null values
|
||||
}
|
||||
|
@ -295,7 +298,6 @@ public class PackRoll extends SvrProcess
|
|||
+ " WHERE AD_Package_Imp_Detail_ID = "+ rs.getInt("AD_Package_Imp_Detail_ID"));
|
||||
no = DB.executeUpdate(sqlD.toString(), null);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
rs2.close ();
|
||||
|
|
Loading…
Reference in New Issue