Fix [2879030] - Import don't show error
https://sourceforge.net/tracker/index.php?func=detail&aid=2879030&group_id=176962&atid=879332
This commit is contained in:
parent
edfe71b546
commit
9d3a423dcd
|
@ -251,7 +251,7 @@ public class ImportPriceList extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning("No Mandatory BreakValue=" + no);
|
log.warning("No Mandatory BreakValue=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
int noInsertpp = 0;
|
int noInsertpp = 0;
|
||||||
|
@ -431,7 +431,7 @@ public class ImportPriceList extends SvrProcess
|
||||||
pstmt_setImported.setInt(2, I_PriceList_ID);
|
pstmt_setImported.setInt(2, I_PriceList_ID);
|
||||||
no = pstmt_setImported.executeUpdate();
|
no = pstmt_setImported.executeUpdate();
|
||||||
//
|
//
|
||||||
commit();
|
commitEx();
|
||||||
} // for all I_PriceList
|
} // for all I_PriceList
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,7 +92,7 @@ public class UpdateRoleMenu extends SvrProcess
|
||||||
boolean active = "Y".equals(rs.getString(2));
|
boolean active = "Y".equals(rs.getString(2));
|
||||||
addUpdateRole(getCtx(), p_role_id, menuId, active, get_TrxName());
|
addUpdateRole(getCtx(), p_role_id, menuId, active, get_TrxName());
|
||||||
}
|
}
|
||||||
commit();
|
commitEx();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
|
@ -62,7 +62,7 @@ public class UpdateSequenceNo extends SvrProcess {
|
||||||
get_TrxName());
|
get_TrxName());
|
||||||
insertStmt.setString(1, year);
|
insertStmt.setString(1, year);
|
||||||
insertStmt.executeUpdate();
|
insertStmt.executeUpdate();
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
rollback();
|
rollback();
|
||||||
|
|
|
@ -123,7 +123,7 @@ public class AllocationAuto extends SvrProcess
|
||||||
{
|
{
|
||||||
countBP++;
|
countBP++;
|
||||||
countAlloc += count;
|
countAlloc += count;
|
||||||
commit();
|
commitEx();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -155,7 +155,7 @@ public class AllocationAuto extends SvrProcess
|
||||||
{
|
{
|
||||||
countBP++;
|
countBP++;
|
||||||
countAlloc += count;
|
countAlloc += count;
|
||||||
commit();
|
commitEx();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
package org.compiere.process;
|
package org.compiere.process;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
import java.sql.SQLException;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
|
@ -100,8 +101,9 @@ public class BPartnerValidate extends SvrProcess
|
||||||
/**
|
/**
|
||||||
* Check BP
|
* Check BP
|
||||||
* @param bp bp
|
* @param bp bp
|
||||||
|
* @throws SQLException
|
||||||
*/
|
*/
|
||||||
private void checkBP (MBPartner bp)
|
private void checkBP (MBPartner bp) throws SQLException
|
||||||
{
|
{
|
||||||
addLog(0, null, null, bp.getName() + ":");
|
addLog(0, null, null, bp.getName() + ":");
|
||||||
// See also VMerge.postMerge
|
// See also VMerge.postMerge
|
||||||
|
@ -117,7 +119,7 @@ public class BPartnerValidate extends SvrProcess
|
||||||
addLog(0, null, bp.getTotalOpenBalance(), Msg.getElement(getCtx(), "TotalOpenBalance"));
|
addLog(0, null, bp.getTotalOpenBalance(), Msg.getElement(getCtx(), "TotalOpenBalance"));
|
||||||
addLog(0, null, bp.getActualLifeTimeValue(), Msg.getElement(getCtx(), "ActualLifeTimeValue"));
|
addLog(0, null, bp.getActualLifeTimeValue(), Msg.getElement(getCtx(), "ActualLifeTimeValue"));
|
||||||
//
|
//
|
||||||
commit();
|
commitEx();
|
||||||
} // checkBP
|
} // checkBP
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -135,7 +135,7 @@ public class CostUpdate extends SvrProcess
|
||||||
m_ass = MAcctSchema.getClientAcctSchema(getCtx(), client.getAD_Client_ID());
|
m_ass = MAcctSchema.getClientAcctSchema(getCtx(), client.getAD_Client_ID());
|
||||||
for (int i = 0; i < m_ass.length; i++)
|
for (int i = 0; i < m_ass.length; i++)
|
||||||
createNew(m_ass[i]);
|
createNew(m_ass[i]);
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// Update Cost
|
// Update Cost
|
||||||
int counter = update();
|
int counter = update();
|
||||||
|
|
|
@ -252,7 +252,7 @@ public class ImportAccount extends SvrProcess
|
||||||
no = DB.executeUpdate(sql.toString(), get_TrxName());
|
no = DB.executeUpdate(sql.toString(), get_TrxName());
|
||||||
log.fine("Found ElementValue=" + no);
|
log.fine("Found ElementValue=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
int noInsert = 0;
|
int noInsert = 0;
|
||||||
|
@ -332,7 +332,7 @@ public class ImportAccount extends SvrProcess
|
||||||
addLog (0, null, new BigDecimal (noInsert), "@C_ElementValue_ID@: @Inserted@");
|
addLog (0, null, new BigDecimal (noInsert), "@C_ElementValue_ID@: @Inserted@");
|
||||||
addLog (0, null, new BigDecimal (noUpdate), "@C_ElementValue_ID@: @Updated@");
|
addLog (0, null, new BigDecimal (noUpdate), "@C_ElementValue_ID@: @Updated@");
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// ***** Set Parent
|
// ***** Set Parent
|
||||||
sql = new StringBuffer ("UPDATE I_ElementValue i "
|
sql = new StringBuffer ("UPDATE I_ElementValue i "
|
||||||
|
@ -399,7 +399,7 @@ public class ImportAccount extends SvrProcess
|
||||||
}
|
}
|
||||||
addLog (0, null, new BigDecimal (noParentUpdate), "@ParentElementValue_ID@: @Updated@");
|
addLog (0, null, new BigDecimal (noParentUpdate), "@ParentElementValue_ID@: @Updated@");
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// Reset Processing Flag
|
// Reset Processing Flag
|
||||||
sql = new StringBuffer ("UPDATE I_ElementValue "
|
sql = new StringBuffer ("UPDATE I_ElementValue "
|
||||||
|
|
|
@ -276,7 +276,7 @@ implements ImportProcess
|
||||||
|
|
||||||
ModelValidationEngine.get().fireImportValidate(this, null, null, ImportValidator.TIMING_AFTER_VALIDATE);
|
ModelValidationEngine.get().fireImportValidate(this, null, null, ImportValidator.TIMING_AFTER_VALIDATE);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
if (p_IsValidateOnly)
|
if (p_IsValidateOnly)
|
||||||
{
|
{
|
||||||
return "Validated";
|
return "Validated";
|
||||||
|
@ -573,7 +573,7 @@ implements ImportProcess
|
||||||
impBP.setProcessed(true);
|
impBP.setProcessed(true);
|
||||||
impBP.setProcessing(false);
|
impBP.setProcessing(false);
|
||||||
impBP.saveEx();
|
impBP.saveEx();
|
||||||
commit();
|
commitEx();
|
||||||
} // for all I_Product
|
} // for all I_Product
|
||||||
DB.close(rs, pstmt);
|
DB.close(rs, pstmt);
|
||||||
}
|
}
|
||||||
|
|
|
@ -357,7 +357,7 @@ public class ImportBankStatement extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.info("Duplicates=" + no);
|
log.info("Duplicates=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
//Import Bank Statement
|
//Import Bank Statement
|
||||||
sql = new StringBuffer("SELECT * FROM I_BankStatement"
|
sql = new StringBuffer("SELECT * FROM I_BankStatement"
|
||||||
|
|
|
@ -227,7 +227,7 @@ public class ImportConversionRate extends SvrProcess
|
||||||
// if (no != 0)
|
// if (no != 0)
|
||||||
// log.warn ("Inconsistent Rates =" + no);
|
// log.warn ("Inconsistent Rates =" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
/*********************************************************************/
|
/*********************************************************************/
|
||||||
|
|
||||||
int noInsert = 0;
|
int noInsert = 0;
|
||||||
|
|
|
@ -574,7 +574,7 @@ public class ImportGLJournal extends SvrProcess
|
||||||
pstmt = null;
|
pstmt = null;
|
||||||
|
|
||||||
// globalqss (moved the commit here to save the error messages)
|
// globalqss (moved the commit here to save the error messages)
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// Count Errors
|
// Count Errors
|
||||||
int errors = DB.getSQLValue(get_TrxName(),
|
int errors = DB.getSQLValue(get_TrxName(),
|
||||||
|
|
|
@ -133,7 +133,7 @@ public class ImportInOutConfirm extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("Invalid Qty=" + no);
|
log.warning ("Invalid Qty=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
/*********************************************************************/
|
/*********************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -210,7 +210,7 @@ public class ImportInventory extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("No QtyCount=" + no);
|
log.warning ("No QtyCount=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
/*********************************************************************/
|
/*********************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -476,7 +476,7 @@ public class ImportInvoice extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("Invalid Tax=" + no);
|
log.warning ("Invalid Tax=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -- New BPartner ---------------------------------------------------
|
// -- New BPartner ---------------------------------------------------
|
||||||
|
|
||||||
|
@ -609,7 +609,7 @@ public class ImportInvoice extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("No BPartner=" + no);
|
log.warning ("No BPartner=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -- New Invoices -----------------------------------------------------
|
// -- New Invoices -----------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -475,7 +475,7 @@ public class ImportOrder extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("Invalid Tax=" + no);
|
log.warning ("Invalid Tax=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -- New BPartner ---------------------------------------------------
|
// -- New BPartner ---------------------------------------------------
|
||||||
|
|
||||||
|
@ -609,7 +609,7 @@ public class ImportOrder extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("No BPartner=" + no);
|
log.warning ("No BPartner=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -- New Orders -----------------------------------------------------
|
// -- New Orders -----------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -404,7 +404,7 @@ public class ImportPayment extends SvrProcess
|
||||||
if (no != 0)
|
if (no != 0)
|
||||||
log.warning ("No DocType=" + no);
|
log.warning ("No DocType=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
//Import Bank Statement
|
//Import Bank Statement
|
||||||
sql = new StringBuffer("SELECT * FROM I_Payment"
|
sql = new StringBuffer("SELECT * FROM I_Payment"
|
||||||
|
|
|
@ -378,7 +378,7 @@ public class ImportProduct extends SvrProcess
|
||||||
}
|
}
|
||||||
log.fine("C_TaxCategory_ID=" + C_TaxCategory_ID);
|
log.fine("C_TaxCategory_ID=" + C_TaxCategory_ID);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
int noInsert = 0;
|
int noInsert = 0;
|
||||||
|
@ -628,7 +628,7 @@ public class ImportProduct extends SvrProcess
|
||||||
pstmt_setImported.setInt(2, I_Product_ID);
|
pstmt_setImported.setInt(2, I_Product_ID);
|
||||||
no = pstmt_setImported.executeUpdate();
|
no = pstmt_setImported.executeUpdate();
|
||||||
//
|
//
|
||||||
commit();
|
commitEx();
|
||||||
} // for all I_Product
|
} // for all I_Product
|
||||||
rs.close();
|
rs.close();
|
||||||
pstmt.close();
|
pstmt.close();
|
||||||
|
|
|
@ -238,7 +238,7 @@ public class ImportReportLine extends SvrProcess
|
||||||
no = DB.executeUpdate(sql.toString(), get_TrxName());
|
no = DB.executeUpdate(sql.toString(), get_TrxName());
|
||||||
log.fine("Set PA_ReportLine_ID=" + no);
|
log.fine("Set PA_ReportLine_ID=" + no);
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
|
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
int noInsertLine = 0;
|
int noInsertLine = 0;
|
||||||
|
@ -463,7 +463,7 @@ public class ImportReportLine extends SvrProcess
|
||||||
log.finest("Delete ReportSource with Null Account= " + no + ", I_ReportLine_ID=" + I_ReportLine_ID + ", PA_ReportSource_ID=" + PA_ReportSource_ID);
|
log.finest("Delete ReportSource with Null Account= " + no + ", I_ReportLine_ID=" + I_ReportLine_ID + ", PA_ReportSource_ID=" + PA_ReportSource_ID);
|
||||||
// End afalcone 22/02/2007 - F.R. [ 1642250 ] Import ReportLine / Very Slow Reports
|
// End afalcone 22/02/2007 - F.R. [ 1642250 ] Import ReportLine / Very Slow Reports
|
||||||
|
|
||||||
commit();
|
commitEx();
|
||||||
}
|
}
|
||||||
rs.close();
|
rs.close();
|
||||||
pstmt.close();
|
pstmt.close();
|
||||||
|
|
|
@ -215,6 +215,7 @@ public abstract class SvrProcess implements ProcessCall
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Commit
|
* Commit
|
||||||
|
* @deprecated suggested to use commitEx instead
|
||||||
*/
|
*/
|
||||||
protected void commit()
|
protected void commit()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue