Merge c353142e9541

This commit is contained in:
Heng Sin Low 2013-03-16 00:18:51 +08:00
commit a2fd9d901b
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- Mar 13, 2013 2:23:27 PM SGT
-- Ticket #1002211: Create Help pane for Bizidium
INSERT INTO AD_Ref_List (AD_Client_ID,AD_Ref_List_ID,AD_Reference_ID,EntityType,Name,AD_Ref_List_UU,Value,CreatedBy,Created,Updated,UpdatedBy,IsActive,AD_Org_ID) VALUES (0,200135,200064,'D','All','298064ff-6e69-435f-aa0e-d156375339f5','A',100,TO_DATE('2013-03-13 14:23:25','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2013-03-13 14:23:25','YYYY-MM-DD HH24:MI:SS'),100,'Y',0)

View File

@ -536,9 +536,9 @@ public class InfoPAttributePanel extends Window implements EventListener<Event>
}
// Guarantee Date
Timestamp ts = (Timestamp)guaranteeDateField.getValue();
if (ts != null)
if (guaranteeDateField.getValue() != null)
{
Timestamp ts = new Timestamp(guaranteeDateField.getValue().getTime());
sb.append(" AND TRUNC(asi.GuaranteeDate)");
int index = guaranteeDateSelection.getSelectedIndex(); // < = >
if (index == 0)