IDEMPIERE-2027:Accounting Fact Reconcilation - Refresh Button Doesn't make sense
This commit is contained in:
parent
9d959afca7
commit
dc9f9ef963
|
@ -292,27 +292,40 @@ implements IFormController, EventListener<Event>, WTableModelListener, ValueChan
|
||||||
|
|
||||||
if (Account_ID != 0)
|
if (Account_ID != 0)
|
||||||
m_Account_ID = Account_ID;
|
m_Account_ID = Account_ID;
|
||||||
|
else
|
||||||
|
m_Account_ID = 0;
|
||||||
|
|
||||||
if(fieldOrg.getValue()!=null)
|
if(fieldOrg.getValue()!=null)
|
||||||
m_AD_Org_ID = (Integer)fieldOrg.getValue();
|
m_AD_Org_ID = (Integer)fieldOrg.getValue();
|
||||||
|
else
|
||||||
|
m_AD_Org_ID = 0;
|
||||||
|
|
||||||
if(fieldAcctSchema.getValue()!=null)
|
if(fieldAcctSchema.getValue()!=null)
|
||||||
m_C_AcctSchema_ID = (Integer)fieldAcctSchema.getValue();
|
m_C_AcctSchema_ID = (Integer)fieldAcctSchema.getValue();
|
||||||
|
else
|
||||||
|
m_C_AcctSchema_ID = 0;
|
||||||
|
|
||||||
m_isReconciled = isReconciled.isChecked();
|
m_isReconciled = isReconciled.isChecked();
|
||||||
|
|
||||||
if(fieldBPartner.getValue()!=null)
|
if(fieldBPartner.getValue()!=null)
|
||||||
m_C_BPartner_ID = (Integer)fieldBPartner.getValue();
|
m_C_BPartner_ID = (Integer)fieldBPartner.getValue();
|
||||||
|
else
|
||||||
|
m_C_BPartner_ID = 0;
|
||||||
|
|
||||||
if((Integer)fieldProduct.getValue()!=null)
|
if((Integer)fieldProduct.getValue()!=null)
|
||||||
m_M_Product_ID = (Integer)fieldProduct.getValue();
|
m_M_Product_ID = (Integer)fieldProduct.getValue();
|
||||||
|
else
|
||||||
|
m_M_Product_ID = 0;
|
||||||
|
|
||||||
if(fieldDateAcct.getValue()!=null)
|
if(fieldDateAcct.getValue()!=null)
|
||||||
m_DateAcct = (Timestamp)fieldDateAcct.getValue();
|
m_DateAcct = (Timestamp)fieldDateAcct.getValue();
|
||||||
|
else
|
||||||
|
m_DateAcct = null;
|
||||||
|
|
||||||
if(fieldDateAcct2.getValue()!=null)
|
if(fieldDateAcct2.getValue()!=null)
|
||||||
m_DateAcct2 = (Timestamp)fieldDateAcct2.getValue();
|
m_DateAcct2 = (Timestamp)fieldDateAcct2.getValue();
|
||||||
|
else
|
||||||
|
m_DateAcct2 = null;
|
||||||
// Set Model
|
// Set Model
|
||||||
Vector<Vector<Object>> data = getData();
|
Vector<Vector<Object>> data = getData();
|
||||||
Vector<String> columnNames = getColumnNames();
|
Vector<String> columnNames = getColumnNames();
|
||||||
|
|
Loading…
Reference in New Issue