IDEMPIERE-4723 - Clean up code -> remaining org.adempiere.base/src/org/compiere/model/ classes (#846)
This commit is contained in:
parent
0167c91424
commit
2f0e426771
|
@ -816,7 +816,6 @@ public abstract class PO
|
||||||
|
|
||||||
//
|
//
|
||||||
// globalqss -- Bug 1618469 - is throwing not updateable even on new records
|
// globalqss -- Bug 1618469 - is throwing not updateable even on new records
|
||||||
// if (!p_info.isColumnUpdateable(index))
|
|
||||||
if ( ( ! p_info.isColumnUpdateable(index) ) && ( ! is_new() ) )
|
if ( ( ! p_info.isColumnUpdateable(index) ) && ( ! is_new() ) )
|
||||||
{
|
{
|
||||||
colInfo += " - NewValue=" + value + " - OldValue=" + get_Value(index);
|
colInfo += " - NewValue=" + value + " - OldValue=" + get_Value(index);
|
||||||
|
@ -1331,7 +1330,6 @@ public abstract class PO
|
||||||
{
|
{
|
||||||
setKeyInfo();
|
setKeyInfo();
|
||||||
m_IDs = new Object[] {Integer.valueOf(ID)};
|
m_IDs = new Object[] {Integer.valueOf(ID)};
|
||||||
//m_KeyColumns = new String[] {p_info.getTableName() + "_ID"};
|
|
||||||
load(trxName);
|
load(trxName);
|
||||||
}
|
}
|
||||||
else // new
|
else // new
|
||||||
|
@ -1403,7 +1401,6 @@ public abstract class PO
|
||||||
.append(get_WhereClause(false,uuID));
|
.append(get_WhereClause(false,uuID));
|
||||||
|
|
||||||
//
|
//
|
||||||
// int index = -1;
|
|
||||||
if (log.isLoggable(Level.FINEST)) log.finest(get_WhereClause(true,uuID));
|
if (log.isLoggable(Level.FINEST)) log.finest(get_WhereClause(true,uuID));
|
||||||
PreparedStatement pstmt = null;
|
PreparedStatement pstmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
|
@ -1439,7 +1436,6 @@ public abstract class PO
|
||||||
log.log(Level.SEVERE, "NO Data found for " + get_WhereClause(true,uuID), new Exception());
|
log.log(Level.SEVERE, "NO Data found for " + get_WhereClause(true,uuID), new Exception());
|
||||||
m_IDs = new Object[] {I_ZERO};
|
m_IDs = new Object[] {I_ZERO};
|
||||||
success = false;
|
success = false;
|
||||||
// throw new DBException("NO Data found for " + get_WhereClause(true));
|
|
||||||
}
|
}
|
||||||
m_createNew = false;
|
m_createNew = false;
|
||||||
// reset new values
|
// reset new values
|
||||||
|
@ -1451,14 +1447,10 @@ public abstract class PO
|
||||||
if (m_trxName != null)
|
if (m_trxName != null)
|
||||||
msg = "[" + m_trxName + "] - ";
|
msg = "[" + m_trxName + "] - ";
|
||||||
msg += get_WhereClause(true,uuID)
|
msg += get_WhereClause(true,uuID)
|
||||||
// + ", Index=" + index
|
|
||||||
// + ", Column=" + get_ColumnName(index)
|
|
||||||
// + ", " + p_info.toString(index)
|
|
||||||
+ ", SQL=" + sql.toString();
|
+ ", SQL=" + sql.toString();
|
||||||
success = false;
|
success = false;
|
||||||
m_IDs = new Object[] {I_ZERO};
|
m_IDs = new Object[] {I_ZERO};
|
||||||
log.log(Level.SEVERE, msg, e);
|
log.log(Level.SEVERE, msg, e);
|
||||||
// throw new DBException(e);
|
|
||||||
}
|
}
|
||||||
// Finish
|
// Finish
|
||||||
finally {
|
finally {
|
||||||
|
@ -1669,7 +1661,6 @@ public abstract class PO
|
||||||
while (it.hasNext())
|
while (it.hasNext())
|
||||||
{
|
{
|
||||||
String column = (String)it.next();
|
String column = (String)it.next();
|
||||||
// int index = p_info.getColumnIndex(column);
|
|
||||||
String value = (String)m_custom.get(column);
|
String value = (String)m_custom.get(column);
|
||||||
if (value != null)
|
if (value != null)
|
||||||
hmOut.put(column, value);
|
hmOut.put(column, value);
|
||||||
|
@ -1709,9 +1700,6 @@ public abstract class PO
|
||||||
protected void loadDefaults()
|
protected void loadDefaults()
|
||||||
{
|
{
|
||||||
setStandardDefaults();
|
setStandardDefaults();
|
||||||
//
|
|
||||||
/** @todo defaults from Field */
|
|
||||||
// MField.getDefault(p_info.getDefaultLogic(i));
|
|
||||||
} // loadDefaults
|
} // loadDefaults
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2403,7 +2391,6 @@ public abstract class PO
|
||||||
log.log(Level.WARNING, "afterSave", e);
|
log.log(Level.WARNING, "afterSave", e);
|
||||||
log.saveError("Error", e, false);
|
log.saveError("Error", e, false);
|
||||||
success = false;
|
success = false;
|
||||||
// throw new DBException(e);
|
|
||||||
}
|
}
|
||||||
// Call ModelValidators TYPE_AFTER_NEW/TYPE_AFTER_CHANGE - teo_sarca [ 1675490 ]
|
// Call ModelValidators TYPE_AFTER_NEW/TYPE_AFTER_CHANGE - teo_sarca [ 1675490 ]
|
||||||
if (success) {
|
if (success) {
|
||||||
|
@ -2520,13 +2507,6 @@ public abstract class PO
|
||||||
*/
|
*/
|
||||||
protected boolean beforeSave(boolean newRecord)
|
protected boolean beforeSave(boolean newRecord)
|
||||||
{
|
{
|
||||||
/** Prevents saving
|
|
||||||
log.saveError("Error", Msg.parseTranslation(getCtx(), "@C_Currency_ID@ = @C_Currency_ID@"));
|
|
||||||
log.saveError("FillMandatory", Msg.getElement(getCtx(), "PriceEntered"));
|
|
||||||
/** Issues message
|
|
||||||
log.saveWarning(AD_Message, message);
|
|
||||||
log.saveInfo (AD_Message, message);
|
|
||||||
**/
|
|
||||||
return true;
|
return true;
|
||||||
} // beforeSave
|
} // beforeSave
|
||||||
|
|
||||||
|
@ -3718,7 +3698,6 @@ public abstract class PO
|
||||||
*/
|
*/
|
||||||
protected boolean beforeDelete ()
|
protected boolean beforeDelete ()
|
||||||
{
|
{
|
||||||
// log.saveError("Error", Msg.getMsg(getCtx(), "CannotDelete"));
|
|
||||||
return true;
|
return true;
|
||||||
} // beforeDelete
|
} // beforeDelete
|
||||||
|
|
||||||
|
@ -4816,7 +4795,6 @@ public abstract class PO
|
||||||
while (it.hasNext())
|
while (it.hasNext())
|
||||||
{
|
{
|
||||||
String columnName = (String)it.next();
|
String columnName = (String)it.next();
|
||||||
// int index = p_info.getColumnIndex(columnName);
|
|
||||||
String value = (String)m_custom.get(columnName);
|
String value = (String)m_custom.get(columnName);
|
||||||
//
|
//
|
||||||
Element col = document.createElement(columnName);
|
Element col = document.createElement(columnName);
|
||||||
|
|
|
@ -126,8 +126,6 @@ public class PO_Record
|
||||||
// Parent Loop
|
// Parent Loop
|
||||||
for (int j = 0; j < s_parents.length; j++)
|
for (int j = 0; j < s_parents.length; j++)
|
||||||
{
|
{
|
||||||
// DELETE FROM AD_Attachment WHERE AD_Table_ID=1 AND Record_ID IN
|
|
||||||
// (SELECT C_InvoiceLine_ID FROM C_InvoiceLine WHERE C_Invoice_ID=1)
|
|
||||||
if (s_parents[j] == AD_Table_ID)
|
if (s_parents[j] == AD_Table_ID)
|
||||||
{
|
{
|
||||||
int AD_Table_IDchild = s_parentChilds[j];
|
int AD_Table_IDchild = s_parentChilds[j];
|
||||||
|
|
|
@ -326,121 +326,6 @@ public class ProductCost
|
||||||
return cost;
|
return cost;
|
||||||
} // getProductCosts
|
} // getProductCosts
|
||||||
|
|
||||||
/**
|
|
||||||
* Get PO Price from PriceList - and convert it to AcctSchema Currency
|
|
||||||
* @param as accounting schema
|
|
||||||
* @param onlyPOPriceList use only PO price list
|
|
||||||
* @return po price
|
|
||||||
*/
|
|
||||||
/*private BigDecimal getPriceList (MAcctSchema as, boolean onlyPOPriceList)
|
|
||||||
{
|
|
||||||
StringBuilder sql = new StringBuilder (
|
|
||||||
"SELECT pl.C_Currency_ID, pp.PriceList, pp.PriceStd, pp.PriceLimit "
|
|
||||||
+ "FROM M_PriceList pl, M_PriceList_Version plv, M_ProductPrice pp "
|
|
||||||
+ "WHERE pl.M_PriceList_ID = plv.M_PriceList_ID"
|
|
||||||
+ " AND plv.M_PriceList_Version_ID = pp.M_PriceList_Version_ID"
|
|
||||||
+ " AND pp.M_Product_ID=?");
|
|
||||||
if (onlyPOPriceList)
|
|
||||||
sql.append(" AND pl.IsSOPriceList='N'");
|
|
||||||
sql.append(" ORDER BY pl.IsSOPriceList ASC, plv.ValidFrom DESC");
|
|
||||||
int C_Currency_ID = 0;
|
|
||||||
BigDecimal PriceList = null;
|
|
||||||
BigDecimal PriceStd = null;
|
|
||||||
BigDecimal PriceLimit = null;
|
|
||||||
PreparedStatement pstmt = null;
|
|
||||||
ResultSet rs = null;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
pstmt = DB.prepareStatement(sql.toString(), null);
|
|
||||||
pstmt.setInt(1, m_M_Product_ID);
|
|
||||||
rs = pstmt.executeQuery();
|
|
||||||
if (rs.next())
|
|
||||||
{
|
|
||||||
C_Currency_ID = rs.getInt(1);
|
|
||||||
PriceList = rs.getBigDecimal(2);
|
|
||||||
PriceStd = rs.getBigDecimal(3);
|
|
||||||
PriceLimit = rs.getBigDecimal(4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (SQLException e)
|
|
||||||
{
|
|
||||||
log.log(Level.SEVERE, sql.toString(), e);
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
DB.close(rs, pstmt);
|
|
||||||
rs = null; pstmt = null;
|
|
||||||
}
|
|
||||||
// nothing found
|
|
||||||
if (C_Currency_ID == 0)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
BigDecimal price = PriceLimit; // best bet
|
|
||||||
if (price == null || price.compareTo(Env.ZERO)==0)
|
|
||||||
price = PriceStd;
|
|
||||||
if (price == null || price.compareTo(Env.ZERO)==0)
|
|
||||||
price = PriceList;
|
|
||||||
// Convert
|
|
||||||
if (price != null && price.compareTo(Env.ZERO)!=0)
|
|
||||||
price = MConversionRate.convert (as.getCtx(),
|
|
||||||
price, C_Currency_ID, as.getC_Currency_ID(),
|
|
||||||
as.getAD_Client_ID(), 0);
|
|
||||||
return price;
|
|
||||||
} // getPOPrice*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get PO Cost from Purchase Info - and convert it to AcctSchema Currency
|
|
||||||
* @param as accounting schema
|
|
||||||
* @return po cost
|
|
||||||
*/
|
|
||||||
/*private BigDecimal getPOCost (MAcctSchema as)
|
|
||||||
{
|
|
||||||
String sql = "SELECT C_Currency_ID, PriceList,PricePO,PriceLastPO "
|
|
||||||
+ "FROM M_Product_PO WHERE M_Product_ID=? "
|
|
||||||
+ "ORDER BY IsCurrentVendor DESC";
|
|
||||||
|
|
||||||
int C_Currency_ID = 0;
|
|
||||||
BigDecimal PriceList = null;
|
|
||||||
BigDecimal PricePO = null;
|
|
||||||
BigDecimal PriceLastPO = null;
|
|
||||||
PreparedStatement pstmt = null;
|
|
||||||
ResultSet rs = null;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
pstmt = DB.prepareStatement(sql, null);
|
|
||||||
pstmt.setInt(1, m_M_Product_ID);
|
|
||||||
rs = pstmt.executeQuery();
|
|
||||||
if (rs.next())
|
|
||||||
{
|
|
||||||
C_Currency_ID = rs.getInt(1);
|
|
||||||
PriceList = rs.getBigDecimal(2);
|
|
||||||
PricePO = rs.getBigDecimal(3);
|
|
||||||
PriceLastPO = rs.getBigDecimal(4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (SQLException e)
|
|
||||||
{
|
|
||||||
log.log(Level.SEVERE, sql, e);
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
DB.close(rs, pstmt);
|
|
||||||
rs = null; pstmt = null;
|
|
||||||
}
|
|
||||||
// nothing found
|
|
||||||
if (C_Currency_ID == 0)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
BigDecimal cost = PriceLastPO; // best bet
|
|
||||||
if (cost == null || cost.compareTo(Env.ZERO)==0)
|
|
||||||
cost = PricePO;
|
|
||||||
if (cost == null || cost.compareTo(Env.ZERO)==0)
|
|
||||||
cost = PriceList;
|
|
||||||
// Convert - standard precision!! - should be costing precision
|
|
||||||
if (cost != null && cost.compareTo(Env.ZERO)!=0)
|
|
||||||
cost = MConversionRate.convert (as.getCtx(),
|
|
||||||
cost, C_Currency_ID, as.getC_Currency_ID(), as.getAD_Client_ID(), as.getAD_Org_ID());
|
|
||||||
return cost;
|
|
||||||
} // getPOCost*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* String Representation
|
* String Representation
|
||||||
* @return info
|
* @return info
|
||||||
|
|
|
@ -57,9 +57,6 @@ public class SalesMgmtValidator implements ModelValidator
|
||||||
engine.addModelChange(MOrder.Table_Name, this);
|
engine.addModelChange(MOrder.Table_Name, this);
|
||||||
engine.addModelChange(MOrderLine.Table_Name, this);
|
engine.addModelChange(MOrderLine.Table_Name, this);
|
||||||
|
|
||||||
// Documents to be monitored
|
|
||||||
// engine.addDocValidate(MInvoice.Table_Name, this);
|
|
||||||
|
|
||||||
} // initialize
|
} // initialize
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -126,7 +126,6 @@ public class ScheduleUtil
|
||||||
|
|
||||||
|
|
||||||
// Resource Unavailability -------------------------------------------
|
// Resource Unavailability -------------------------------------------
|
||||||
// log.fine( "- Unavailability -");
|
|
||||||
String sql = "SELECT Description, DateFrom, DateTo "
|
String sql = "SELECT Description, DateFrom, DateTo "
|
||||||
+ "FROM S_ResourceUnavailable "
|
+ "FROM S_ResourceUnavailable "
|
||||||
+ "WHERE S_Resource_ID=?" // #1
|
+ "WHERE S_Resource_ID=?" // #1
|
||||||
|
@ -137,7 +136,6 @@ public class ScheduleUtil
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// log.fine( sql, "ID=" + S_Resource_ID + ", Start=" + m_startDate + ", End=" + m_endDate);
|
|
||||||
pstmt = DB.prepareStatement(sql, trxName);
|
pstmt = DB.prepareStatement(sql, trxName);
|
||||||
pstmt.setInt(1, m_S_Resource_ID);
|
pstmt.setInt(1, m_S_Resource_ID);
|
||||||
pstmt.setTimestamp(2, m_startDate);
|
pstmt.setTimestamp(2, m_startDate);
|
||||||
|
@ -149,7 +147,7 @@ public class ScheduleUtil
|
||||||
TimeUtil.getNextDay(rs.getTimestamp(3)), // user entered date need to convert to not including end time
|
TimeUtil.getNextDay(rs.getTimestamp(3)), // user entered date need to convert to not including end time
|
||||||
Msg.getMsg (m_ctx, "ResourceUnAvailable"), rs.getString(1),
|
Msg.getMsg (m_ctx, "ResourceUnAvailable"), rs.getString(1),
|
||||||
MAssignmentSlot.STATUS_UnAvailable);
|
MAssignmentSlot.STATUS_UnAvailable);
|
||||||
// log.fine( "- Unavailable", ma);
|
|
||||||
if (getAll)
|
if (getAll)
|
||||||
createDaySlot (list, ma);
|
createDaySlot (list, ma);
|
||||||
else
|
else
|
||||||
|
@ -175,7 +173,6 @@ public class ScheduleUtil
|
||||||
|
|
||||||
|
|
||||||
// NonBusinessDay ----------------------------------------------------
|
// NonBusinessDay ----------------------------------------------------
|
||||||
// log.fine( "- NonBusinessDay -");
|
|
||||||
// "WHERE TRUNC(Date1) BETWEEN TRUNC(?) AND TRUNC(?)" causes
|
// "WHERE TRUNC(Date1) BETWEEN TRUNC(?) AND TRUNC(?)" causes
|
||||||
// ORA-00932: inconsistent datatypes: expected NUMBER got TIMESTAMP
|
// ORA-00932: inconsistent datatypes: expected NUMBER got TIMESTAMP
|
||||||
sql = MRole.getDefault(m_ctx, false).addAccessSQL (
|
sql = MRole.getDefault(m_ctx, false).addAccessSQL (
|
||||||
|
@ -186,7 +183,6 @@ public class ScheduleUtil
|
||||||
{
|
{
|
||||||
Timestamp startDay = TimeUtil.getDay(m_startDate);
|
Timestamp startDay = TimeUtil.getDay(m_startDate);
|
||||||
Timestamp endDay = TimeUtil.getDay(m_endDate);
|
Timestamp endDay = TimeUtil.getDay(m_endDate);
|
||||||
// log.fine( sql, "Start=" + startDay + ", End=" + endDay);
|
|
||||||
pstmt = DB.prepareStatement(sql, trxName);
|
pstmt = DB.prepareStatement(sql, trxName);
|
||||||
pstmt.setTimestamp(1, startDay);
|
pstmt.setTimestamp(1, startDay);
|
||||||
pstmt.setTimestamp(2, endDay);
|
pstmt.setTimestamp(2, endDay);
|
||||||
|
@ -221,7 +217,6 @@ public class ScheduleUtil
|
||||||
|
|
||||||
|
|
||||||
// ResourceType Available --------------------------------------------
|
// ResourceType Available --------------------------------------------
|
||||||
// log.fine( "- ResourceTypeAvailability -");
|
|
||||||
sql = "SELECT Name, IsTimeSlot,TimeSlotStart,TimeSlotEnd, " // 1..4
|
sql = "SELECT Name, IsTimeSlot,TimeSlotStart,TimeSlotEnd, " // 1..4
|
||||||
+ "IsDateSlot,OnMonday,OnTuesday,OnWednesday," // 5..8
|
+ "IsDateSlot,OnMonday,OnTuesday,OnWednesday," // 5..8
|
||||||
+ "OnThursday,OnFriday,OnSaturday,OnSunday " // 9..12
|
+ "OnThursday,OnFriday,OnSaturday,OnSunday " // 9..12
|
||||||
|
@ -384,7 +379,7 @@ public class ScheduleUtil
|
||||||
private void layoutSlots (ArrayList<MAssignmentSlot> list, ArrayList<MAssignmentSlot> clean)
|
private void layoutSlots (ArrayList<MAssignmentSlot> list, ArrayList<MAssignmentSlot> clean)
|
||||||
{
|
{
|
||||||
int size = list.size();
|
int size = list.size();
|
||||||
// System.out.println("Start List=" + size + ", Clean=" + clean.size());
|
|
||||||
if (size == 0)
|
if (size == 0)
|
||||||
return;
|
return;
|
||||||
else if (size == 1)
|
else if (size == 1)
|
||||||
|
@ -615,7 +610,6 @@ public class ScheduleUtil
|
||||||
//
|
//
|
||||||
m_S_ResourceType_ID = rs.getInt(4);
|
m_S_ResourceType_ID = rs.getInt(4);
|
||||||
m_C_UOM_ID = rs.getInt(5);
|
m_C_UOM_ID = rs.getInt(5);
|
||||||
// log.fine( "- Resource_ID=" + m_S_ResourceType_ID + ",IsAvailable=" + m_isAvailable);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
m_isAvailable = false;
|
m_isAvailable = false;
|
||||||
|
@ -645,7 +639,6 @@ public class ScheduleUtil
|
||||||
private void createTimeSlot (ArrayList<MAssignmentSlot> list,
|
private void createTimeSlot (ArrayList<MAssignmentSlot> list,
|
||||||
Timestamp startTime, Timestamp endTime)
|
Timestamp startTime, Timestamp endTime)
|
||||||
{
|
{
|
||||||
// log.fine( "MSchedule.createTimeSlot");
|
|
||||||
GregorianCalendar cal = new GregorianCalendar(Language.getLoginLanguage().getLocale());
|
GregorianCalendar cal = new GregorianCalendar(Language.getLoginLanguage().getLocale());
|
||||||
cal.setTimeInMillis(m_startDate.getTime());
|
cal.setTimeInMillis(m_startDate.getTime());
|
||||||
// End Date for Comparison
|
// End Date for Comparison
|
||||||
|
@ -709,7 +702,6 @@ public class ScheduleUtil
|
||||||
boolean OnMonday, boolean OnTuesday, boolean OnWednesday,
|
boolean OnMonday, boolean OnTuesday, boolean OnWednesday,
|
||||||
boolean OnThursday, boolean OnFriday, boolean OnSaturday, boolean OnSunday)
|
boolean OnThursday, boolean OnFriday, boolean OnSaturday, boolean OnSunday)
|
||||||
{
|
{
|
||||||
// log.fine( "MSchedule.createDaySlot");
|
|
||||||
GregorianCalendar cal = new GregorianCalendar(Language.getLoginLanguage().getLocale());
|
GregorianCalendar cal = new GregorianCalendar(Language.getLoginLanguage().getLocale());
|
||||||
cal.setTimeInMillis(m_startDate.getTime());
|
cal.setTimeInMillis(m_startDate.getTime());
|
||||||
// End Date for Comparison
|
// End Date for Comparison
|
||||||
|
@ -753,7 +745,6 @@ public class ScheduleUtil
|
||||||
*/
|
*/
|
||||||
private void createDaySlot (ArrayList<MAssignmentSlot> list, MAssignmentSlot ma)
|
private void createDaySlot (ArrayList<MAssignmentSlot> list, MAssignmentSlot ma)
|
||||||
{
|
{
|
||||||
// log.fine( "MSchedule.createDaySlot", ma);
|
|
||||||
//
|
//
|
||||||
Timestamp start = ma.getStartTime();
|
Timestamp start = ma.getStartTime();
|
||||||
GregorianCalendar calStart = new GregorianCalendar();
|
GregorianCalendar calStart = new GregorianCalendar();
|
||||||
|
@ -842,8 +833,6 @@ public class ScheduleUtil
|
||||||
calEnd.set(Calendar.MILLISECOND, 0);
|
calEnd.set(Calendar.MILLISECOND, 0);
|
||||||
calEnd.add(Calendar.DAY_OF_YEAR, 1);
|
calEnd.add(Calendar.DAY_OF_YEAR, 1);
|
||||||
}
|
}
|
||||||
//System.out.println("Start=" + new Timestamp(cal.getTimeInMillis()));
|
|
||||||
//System.out.println("Endt=" + new Timestamp(calEnd.getTimeInMillis()));
|
|
||||||
|
|
||||||
// Set end Slot Time
|
// Set end Slot Time
|
||||||
GregorianCalendar calEndSlot = new GregorianCalendar();
|
GregorianCalendar calEndSlot = new GregorianCalendar();
|
||||||
|
|
|
@ -366,7 +366,6 @@ public class Scriptlet
|
||||||
{
|
{
|
||||||
if (key != null && key.length() > 0)
|
if (key != null && key.length() > 0)
|
||||||
{
|
{
|
||||||
// log.fine( "Scriptlet.setEnvironment " + key, value);
|
|
||||||
if (value == null)
|
if (value == null)
|
||||||
m_ctx.remove(key);
|
m_ctx.remove(key);
|
||||||
else
|
else
|
||||||
|
|
|
@ -237,8 +237,6 @@ public class SetGetUtil
|
||||||
if (s_log.isLoggable(Level.FINEST))
|
if (s_log.isLoggable(Level.FINEST))
|
||||||
{
|
{
|
||||||
s_log.finest("Entering: From=" + from+ " - To=" + to);
|
s_log.finest("Entering: From=" + from+ " - To=" + to);
|
||||||
// s_log.finest("includeFields=" + ARHIPAC.toString(includeFields));
|
|
||||||
// s_log.finest("excludeFields=" + ARHIPAC.toString(excludeFields));
|
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
if (to == null || from == null)
|
if (to == null || from == null)
|
||||||
|
@ -515,7 +513,6 @@ public class SetGetUtil
|
||||||
}
|
}
|
||||||
else if (o instanceof PO)
|
else if (o instanceof PO)
|
||||||
{
|
{
|
||||||
// return ((PO)o).is_UserEntry();
|
|
||||||
return false; // TODO
|
return false; // TODO
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -787,7 +784,6 @@ public class SetGetUtil
|
||||||
String errmsg = tab.setValue(name, value);
|
String errmsg = tab.setValue(name, value);
|
||||||
if (errmsg != null && errmsg.length() > 0)
|
if (errmsg != null && errmsg.length() > 0)
|
||||||
{
|
{
|
||||||
//~ log.saveError("Error", errmsg);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -167,15 +167,6 @@ public class Tax
|
||||||
int billC_BPartner_Location_ID, int shipC_BPartner_Location_ID,
|
int billC_BPartner_Location_ID, int shipC_BPartner_Location_ID,
|
||||||
boolean IsSOTrx, String trxName)
|
boolean IsSOTrx, String trxName)
|
||||||
{
|
{
|
||||||
/* ship location from warehouse is plainly ignored below */
|
|
||||||
// if (M_Warehouse_ID <= 0)
|
|
||||||
// M_Warehouse_ID = Env.getContextAsInt(ctx, "M_Warehouse_ID");
|
|
||||||
// if (M_Warehouse_ID <= 0)
|
|
||||||
// {
|
|
||||||
// throw new TaxForChangeNotFoundException(C_Charge_ID, AD_Org_ID, M_Warehouse_ID,
|
|
||||||
// billC_BPartner_Location_ID, shipC_BPartner_Location_ID,
|
|
||||||
// "@NotFound@ @M_Warehouse_ID@");
|
|
||||||
// }
|
|
||||||
int C_TaxCategory_ID = 0;
|
int C_TaxCategory_ID = 0;
|
||||||
int shipFromC_Location_ID = 0;
|
int shipFromC_Location_ID = 0;
|
||||||
int shipToC_Location_ID = 0;
|
int shipToC_Location_ID = 0;
|
||||||
|
|
Loading…
Reference in New Issue