FR [2556068] - 2Pack Export Import Official Dictionary
https://sourceforge.net/tracker/index.php?func=detail&aid=2556068&group_id=176962&atid=879335
This commit is contained in:
parent
c1b8fd3f32
commit
7f297edd63
|
@ -67,14 +67,11 @@ public class ProcessElementHandler extends AbstractElementHandler {
|
||||||
Object_Status = "Update";
|
Object_Status = "Update";
|
||||||
} else {
|
} else {
|
||||||
m_Process = new X_AD_Process(ctx, id, getTrxName(ctx));
|
m_Process = new X_AD_Process(ctx, id, getTrxName(ctx));
|
||||||
id = DB.getNextID(Env.getAD_Client_ID(ctx),
|
if (id <= 0 && atts.getValue("AD_Process_ID") != null && Integer.parseInt(atts.getValue("AD_Process_ID")) <= PackOut.MAX_OFFICIAL_ID)
|
||||||
"AD_Process", getTrxName(ctx));
|
m_Process.setAD_Process_ID(Integer.parseInt(atts.getValue("AD_Process_ID")));
|
||||||
m_Process.setAD_Process_ID(id);
|
|
||||||
Object_Status = "New";
|
Object_Status = "New";
|
||||||
AD_Backup_ID = 0;
|
AD_Backup_ID = 0;
|
||||||
}
|
}
|
||||||
if (id <= 0 && atts.getValue("AD_Process_ID") != null && Integer.parseInt(atts.getValue("AD_Process_ID")) <= PackOut.MAX_OFFICIAL_ID)
|
|
||||||
m_Process.setAD_Process_ID(Integer.parseInt(atts.getValue("AD_Process_ID")));
|
|
||||||
|
|
||||||
String name = atts.getValue("Name");
|
String name = atts.getValue("Name");
|
||||||
m_Process.setName(name);
|
m_Process.setName(name);
|
||||||
|
|
Loading…
Reference in New Issue