hg merge release-1.0c (merge release1 into release2)
This commit is contained in:
commit
81fc00ffb2
|
@ -0,0 +1,7 @@
|
|||
SET SQLBLANKLINES ON
|
||||
SET DEFINE OFF
|
||||
|
||||
-- Nov 7, 2013 9:30:44 PM ICT
|
||||
UPDATE AD_Field SET SeqNo=70, IsDisplayed='Y', XPosition=1,Updated=TO_DATE('2013-11-07 21:30:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=60934
|
||||
;
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
-- Nov 7, 2013 9:30:44 PM ICT
|
||||
UPDATE AD_Field SET SeqNo=70, IsDisplayed='Y', XPosition=1,Updated=TO_TIMESTAMP('2013-11-07 21:30:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=60934
|
||||
;
|
||||
|
|
@ -23,6 +23,7 @@ import java.sql.Timestamp;
|
|||
import java.util.ArrayList;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import org.adempiere.exceptions.AdempiereException;
|
||||
import org.compiere.model.I_C_InvoiceLine;
|
||||
import org.compiere.model.MInOut;
|
||||
import org.compiere.model.MInOutLine;
|
||||
|
@ -112,7 +113,7 @@ public class InOutGenerateRMA extends SvrProcess
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
log.log(Level.SEVERE, sql, ex);
|
||||
throw new AdempiereException(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
|
@ -23,6 +23,7 @@ import java.sql.Timestamp;
|
|||
import java.util.ArrayList;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import org.adempiere.exceptions.AdempiereException;
|
||||
import org.compiere.model.MInvoice;
|
||||
import org.compiere.model.MInvoiceLine;
|
||||
import org.compiere.model.MRMA;
|
||||
|
@ -107,7 +108,7 @@ public class InvoiceGenerateRMA extends SvrProcess
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
log.log(Level.SEVERE, sql, ex);
|
||||
throw new AdempiereException(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
|
@ -24,6 +24,7 @@ import java.util.ArrayList;
|
|||
import java.util.HashMap;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import org.adempiere.exceptions.AdempiereException;
|
||||
import org.compiere.model.MClient;
|
||||
import org.compiere.model.MInOut;
|
||||
import org.compiere.model.MInOutLine;
|
||||
|
@ -196,7 +197,7 @@ public class InOutGenerate extends SvrProcess
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
log.log(Level.SEVERE, m_sql.toString(), e);
|
||||
throw new AdempiereException(e);
|
||||
}
|
||||
return generate(pstmt);
|
||||
} // doIt
|
||||
|
@ -396,7 +397,7 @@ public class InOutGenerate extends SvrProcess
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
log.log(Level.SEVERE, m_sql.toString(), e);
|
||||
throw new AdempiereException(e);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
|
@ -22,6 +22,7 @@ import java.sql.ResultSet;
|
|||
import java.sql.Timestamp;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import org.adempiere.exceptions.AdempiereException;
|
||||
import org.compiere.model.MBPartner;
|
||||
import org.compiere.model.MClient;
|
||||
import org.compiere.model.MCurrency;
|
||||
|
@ -178,7 +179,7 @@ public class InvoiceGenerate extends SvrProcess
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
log.log(Level.SEVERE, sql.toString(), e);
|
||||
throw new AdempiereException(e);
|
||||
}
|
||||
return generate(pstmt);
|
||||
} // doIt
|
||||
|
@ -324,7 +325,7 @@ public class InvoiceGenerate extends SvrProcess
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
log.log(Level.SEVERE, "", e);
|
||||
throw new AdempiereException(e);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
|
@ -47,6 +47,7 @@ public class GridTab2PackExporter implements IGridTabExporter {
|
|||
String tableName = gridTab.getTableName();
|
||||
PackOut packOut = new PackOut();
|
||||
packOut.setCtx(Env.getCtx());
|
||||
packOut.setExportDictionaryEntity(true);
|
||||
Map properties = new HashMap();
|
||||
properties.putAll(Env.getCtx());
|
||||
List<PackoutItem> packoutItems = new ArrayList<PackoutItem>();
|
||||
|
|
Loading…
Reference in New Issue