MPPMRP:
* getDays(...) always return 0 : casting issue * SQL query parametrization
This commit is contained in:
parent
8c3b57ab2c
commit
aab5cf0ec4
|
@ -262,13 +262,11 @@ public class MPPMRP extends X_PP_MRP
|
|||
.first();
|
||||
if (order == null)
|
||||
{
|
||||
String where = MPPProductBOM.COLUMNNAME_BOMType + "='" +
|
||||
MPPProductBOM.BOMTYPE_Make_To_Order + "' AND "+
|
||||
MPPProductBOM.COLUMNNAME_M_Product_ID + "=?";
|
||||
String where = MPPProductBOM.COLUMNNAME_BOMType+"=?"
|
||||
+" AND "+MPPProductBOM.COLUMNNAME_M_Product_ID+"=?";
|
||||
MPPProductBOM bom = new Query(ctx, MPPProductBOM.Table_Name, where, trxName)
|
||||
.setParameters(new Object[]{ol.getM_Product_ID()})
|
||||
.setParameters(new Object[]{MPPProductBOM.BOMTYPE_Make_To_Order, ol.getM_Product_ID()})
|
||||
.first();
|
||||
|
||||
if (bom != null)
|
||||
{
|
||||
MProduct product = MProduct.get(ctx,ol.getM_Product_ID());
|
||||
|
@ -726,7 +724,7 @@ public class MPPMRP extends X_PP_MRP
|
|||
+ wf.getWaitingTime()
|
||||
+ wf.getMovingTime()
|
||||
)
|
||||
* ( wf.getDurationBaseSec() / 60 / 60 ) // convert to hours
|
||||
* ( (double)wf.getDurationBaseSec() / 60 / 60 ) // convert to hours
|
||||
);
|
||||
// TODO: implement here, Victor's suggestion - https://sourceforge.net/forum/message.php?msg_id=5179460
|
||||
|
||||
|
|
Loading…
Reference in New Issue