IDEMPIERE-723 java.util.Date cannot be cast to java.sql.Timestamp in Info Product
This commit is contained in:
parent
596393e625
commit
dca7c443e2
|
@ -536,9 +536,9 @@ public class InfoPAttributePanel extends Window implements EventListener<Event>
|
||||||
}
|
}
|
||||||
|
|
||||||
// Guarantee Date
|
// Guarantee Date
|
||||||
Timestamp ts = (Timestamp)guaranteeDateField.getValue();
|
if (guaranteeDateField.getValue() != null)
|
||||||
if (ts != null)
|
|
||||||
{
|
{
|
||||||
|
Timestamp ts = new Timestamp(guaranteeDateField.getValue().getTime());
|
||||||
sb.append(" AND TRUNC(asi.GuaranteeDate)");
|
sb.append(" AND TRUNC(asi.GuaranteeDate)");
|
||||||
int index = guaranteeDateSelection.getSelectedIndex(); // < = >
|
int index = guaranteeDateSelection.getSelectedIndex(); // < = >
|
||||||
if (index == 0)
|
if (index == 0)
|
||||||
|
|
Loading…
Reference in New Issue