Merge 574380d24685
This commit is contained in:
commit
d6086f7df5
|
@ -319,7 +319,7 @@ public class MPackage extends X_M_Package
|
|||
if (line.getM_PackageMPS_ID() == 0)
|
||||
continue;
|
||||
|
||||
MPackageMPS packageMPS = new MPackageMPS(getCtx(), line.getM_PackageMPS_ID(), get_TrxName());
|
||||
MPackageMPS packageMPS = new MPackageMPS(getCtx(), line.getM_PackageMPS_ID(), null);
|
||||
packageMPS.setMasterTrackingNo(line.getMasterTrackingNo());
|
||||
packageMPS.setTrackingNo(line.getTrackingNo());
|
||||
packageMPS.setPrice(line.getPrice());
|
||||
|
@ -369,12 +369,14 @@ public class MPackage extends X_M_Package
|
|||
log.log(Level.SEVERE, "processOnline", e);
|
||||
setErrorMessage(Msg.getMsg(Env.getCtx(), "ShippingNotProcessed") + ": " + e.getMessage());
|
||||
}
|
||||
|
||||
finally
|
||||
{
|
||||
if (trx != null)
|
||||
{
|
||||
trx.commit();
|
||||
trx.close();
|
||||
}
|
||||
}
|
||||
|
||||
return ok;
|
||||
}
|
||||
|
|
|
@ -342,6 +342,7 @@ public class Process {
|
|||
if (!processOK || pi.isError())
|
||||
{
|
||||
r.setSummary(pi.getSummary());
|
||||
r.setError(pi.getSummary());
|
||||
r.setLogInfo(pi.getLogInfo(true));
|
||||
r.setIsError( true );
|
||||
processOK = false;
|
||||
|
@ -349,6 +350,7 @@ public class Process {
|
|||
else
|
||||
{
|
||||
r.setSummary(pi.getSummary());
|
||||
r.setError(pi.getSummary());
|
||||
r.setLogInfo(pi.getLogInfo(true));
|
||||
r.setIsError( false );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue