📄 mtable.java
字号:
/**
* Check if the current row needs to be saved.
* @param onlyRealChange if true the value of a field was actually changed
* (e.g. for new records, which have not been changed) - default false
* @return true it needs to be saved
*/
public boolean needSave(boolean onlyRealChange)
{
return needSave(m_rowChanged, onlyRealChange);
} // needSave
/**
* Check if the row needs to be saved.
* - only if nothing was changed
* @return true it needs to be saved
*/
public boolean needSave()
{
return needSave(m_rowChanged, false);
} // needSave
/**
* Check if the row needs to be saved.
* - only when row changed
* - only if nothing was changed
* @param newRow to check
* @return true it needs to be saved
*/
public boolean needSave(int newRow)
{
return needSave(newRow, false);
} // needSave
/**
* Check if the row needs to be saved.
* - only when row changed
* - only if nothing was changed
* @param newRow to check
* @param onlyRealChange if true the value of a field was actually changed
* (e.g. for new records, which have not been changed) - default false
* @return true it needs to be saved
*/
public boolean needSave(int newRow, boolean onlyRealChange)
{
log.fine("Row=" + newRow +
", Changed=" + m_rowChanged + "/" + m_changed); // m_rowChanged set in setValueAt
// nothing done
if (!m_changed && m_rowChanged == -1)
return false;
// E.g. New unchanged records
if (m_changed && m_rowChanged == -1 && onlyRealChange)
return false;
// same row
if (newRow == m_rowChanged)
return false;
return true;
} // needSave
/*************************************************************************/
public static final char SAVE_OK = 'O'; // the only OK condition
public static final char SAVE_ERROR = 'E';
public static final char SAVE_ACCESS = 'A';
public static final char SAVE_MANDATORY = 'M';
public static final char SAVE_ABORT = 'U';
/**
* Check if it needs to be saved and save it.
* @param newRow row
* @param manualCmd manual command to save
* @return true if not needed to be saved or successful saved
*/
public boolean dataSave (int newRow, boolean manualCmd)
{
log.fine("Row=" + newRow +
", Changed=" + m_rowChanged + "/" + m_changed); // m_rowChanged set in setValueAt
// nothing done
if (!m_changed && m_rowChanged == -1)
return true;
// same row, don't save yet
if (newRow == m_rowChanged)
return true;
return (dataSave(manualCmd) == SAVE_OK);
} // dataSave
/**
* Save unconditional.
* @param manualCmd if true, no vetoable PropertyChange will be fired for save confirmation
* @return OK Or Error condition
* Error info (Access*, FillMandatory, SaveErrorNotUnique,
* SaveErrorRowNotFound, SaveErrorDataChanged) is saved in the log
*/
public char dataSave (boolean manualCmd)
{
// cannot save
if (!m_open)
{
log.warning ("Error - Open=" + m_open);
return SAVE_ERROR;
}
// no need - not changed - row not positioned - no Value changed
if (m_rowChanged == -1)
{
log.config("NoNeed - Changed=" + m_changed + ", Row=" + m_rowChanged);
// return SAVE_ERROR;
if (!manualCmd)
return SAVE_OK;
}
// Value not changed
if (m_rowData == null)
{
log.fine("No Changes");
return SAVE_ERROR;
}
if (m_readOnly)
// If Processed - not editable (Find always editable) -> ok for changing payment terms, etc.
{
log.warning("IsReadOnly - ignored");
dataIgnore();
return SAVE_ACCESS;
}
// row not positioned - no Value changed
if (m_rowChanged == -1)
{
if (m_newRow != -1) // new row and nothing changed - might be OK
m_rowChanged = m_newRow;
else
{
fireDataStatusEEvent("SaveErrorNoChange", "", false);
return SAVE_ERROR;
}
}
// Can we change?
int[] co = getClientOrg(m_rowChanged);
int AD_Client_ID = co[0];
int AD_Org_ID = co[1];
if (!MRole.getDefault(m_ctx, false).canUpdate(AD_Client_ID, AD_Org_ID, m_AD_Table_ID, 0, true))
{
fireDataStatusEEvent(CLogger.retrieveError());
dataIgnore();
return SAVE_ACCESS;
}
log.info("Row=" + m_rowChanged);
// inform about data save action, if not manually initiated
try
{
if (!manualCmd)
m_vetoableChangeSupport.fireVetoableChange(PROPERTY, 0, m_rowChanged);
}
catch (PropertyVetoException pve)
{
log.warning(pve.getMessage());
dataIgnore();
return SAVE_ABORT;
}
// get updated row data
MSort sort = (MSort)m_sort.get(m_rowChanged);
Object[] rowData = (Object[])m_buffer.get(sort.index);
// Check Mandatory
String missingColumns = getMandatory(rowData);
if (missingColumns.length() != 0)
{
// Trace.printStack(false, false);
fireDataStatusEEvent("FillMandatory", missingColumns + "\n", true);
return SAVE_MANDATORY;
}
/**
* Update row *****
*/
int Record_ID = 0;
if (!m_inserting)
Record_ID = getKeyID(m_rowChanged);
try
{
if (!m_tableName.endsWith("_Trl")) // translation tables have no model
return dataSavePO (Record_ID);
}
catch (Exception e)
{
if (e instanceof ClassNotFoundException)
log.warning(m_tableName + " - " + e.getLocalizedMessage());
else
{
log.log(Level.SEVERE, "Persistency Issue - "
+ m_tableName + ": " + e.getLocalizedMessage(), e);
return SAVE_ERROR;
}
}
/** Manual Update of Row (i.e. not via PO class) **/
log.info("NonPO");
boolean error = false;
lobReset();
//
String is = null;
final String ERROR = "ERROR: ";
final String INFO = "Info: ";
// Update SQL with specific where clause
StringBuffer select = new StringBuffer("SELECT ");
for (int i = 0; i < m_fields.size(); i++)
{
MField field = (MField)m_fields.get(i);
if (field.isVirtualColumn())
continue;
if (i > 0)
select.append(",");
select.append(field.getColumnSQL(true)); // ColumnName or Virtual Column
}
//
select.append(" FROM ").append(m_tableName);
StringBuffer singleRowWHERE = new StringBuffer();
StringBuffer multiRowWHERE = new StringBuffer();
// Create SQL & RowID
if (m_inserting)
select.append(" WHERE 1=2");
else // FOR UPDATE causes - ORA-01002 fetch out of sequence
select.append(" WHERE ").append(getWhereClause(rowData));
PreparedStatement pstmt = null;
try
{
pstmt = DB.prepareStatement (select.toString(),
ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE, null);
ResultSet rs = pstmt.executeQuery();
// only one row
if (!(m_inserting || rs.next()))
{
rs.close();
pstmt.close();
fireDataStatusEEvent("SaveErrorRowNotFound", "", true);
dataRefresh(m_rowChanged);
return SAVE_ERROR;
}
Object[] rowDataDB = null;
// Prepare
boolean manualUpdate = ResultSet.CONCUR_READ_ONLY == rs.getConcurrency();
if (DB.isRemoteObjects())
manualUpdate = true;
if (manualUpdate)
createUpdateSqlReset();
if (m_inserting)
{
if (manualUpdate)
log.fine("Prepare inserting ... manual");
else
{
log.fine("Prepare inserting ... RowSet");
rs.moveToInsertRow ();
}
}
else
{
log.fine("Prepare updating ... manual=" + manualUpdate);
// get current Data in DB
rowDataDB = readData (rs);
}
/** Data:
* m_rowData = original Data
* rowData = updated Data
* rowDataDB = current Data in DB
* 1) Difference between original & updated Data? N:next
* 2) Difference between original & current Data? Y:don't update
* 3) Update current Data
* 4) Refresh to get last Data (changed by trigger, ...)
*/
// Constants for Created/Updated(By)
Timestamp now = new Timestamp(System.currentTimeMillis());
int user = Env.getContextAsInt(m_ctx, "#AD_User_ID");
/**
* for every column
*/
int size = m_fields.size();
int colRs = 1;
for (int col = 0; col < size; col++)
{
MField field = (MField)m_fields.get (col);
if (field.isVirtualColumn())
continue;
String columnName = field.getColumnName ();
// log.fine(columnName + "= " + m_rowData[col] + " <> DB: " + rowDataDB[col] + " -> " + rowData[col]);
// RowID, Virtual Column
if (field.getDisplayType () == DisplayType.RowID
|| field.isVirtualColumn())
; // ignore
// New Key
else if (field.isKey () && m_inserting)
{
if (columnName.endsWith ("_ID") || columnName.toUpperCase().endsWith ("_ID"))
{
int insertID = DB.getNextID (m_ctx, m_tableName, null); // no trx
if (manualUpdate)
createUpdateSql (columnName, String.valueOf (insertID));
else
rs.updateInt (colRs, insertID); // ***
singleRowWHERE.append (columnName).append ("=").append (insertID);
//
is = INFO + columnName + " -> " + insertID + " (Key)";
}
else // Key with String value
{
String str = rowData[col].toString ();
if (manualUpdate)
createUpdateSql (columnName, DB.TO_STRING (str));
else
rs.updateString (colRs, str); // ***
singleRowWHERE = new StringBuffer(); // overwrite
singleRowWHERE.append (columnName).append ("=").append (DB.TO_STRING(str));
//
is = INFO + columnName + " -> " + str + " (StringKey)";
}
log.fine(is);
} // New Key
// New DocumentNo
else if (columnName.equals ("DocumentNo"))
{
boolean newDocNo = false;
String docNo = (String)rowData[col];
// we need to have a doc number
if (docNo == null || docNo.length () == 0)
newDocNo = true;
// Preliminary ID from CalloutSystem
else if (docNo.startsWith ("<") && docNo.endsWith (">"))
newDocNo = true;
if (newDocNo || m_inserting)
{
String insertDoc = null;
// always overwrite if insering with mandatory DocType DocNo
if (m_inserting)
insertDoc = DB.getDocumentNo (m_ctx, m_WindowNo,
m_tableName, true, null); // only doc type - no trx
log.fine("DocumentNo entered=" + docNo + ", DocTypeInsert=" + insertDoc + ", newDocNo=" + newDocNo);
// can we use entered DocNo?
if (insertDoc == null || insertDoc.length () == 0)
{
if (!newDocNo && docNo != null && docNo.length () > 0)
insertDoc = docNo;
else // get a number from DocType or Table
insertDoc = DB.getDocumentNo (m_ctx, m_WindowNo,
m_tableName, false, null); // no trx
}
// There might not be an automatic document no for this document
if (insertDoc == null || insertDoc.length () == 0)
{
// in case DB function did not return a value
if (docNo != null && docNo.length () != 0)
insertDoc = (String)rowData[col];
else
{
error = true;
is = ERROR + field.getColumnName () + "= " + rowData[col] + " NO DocumentNo";
log.fine(is);
break;
}
}
//
if (manualUpdate)
createUpdateSql (columnName, DB.TO_STRING (insertDoc));
else
rs.updateString (colRs, insertDoc); // ***
//
is = INFO + columnName + " -> " + insertDoc + " (DocNo)";
log.fine(is);
}
} // New DocumentNo
// New Value(key)
else if (columnName.equals ("Value") && m_inserting)
{
String value = (String)rowData[col];
// Get from Sequence, if not entered
if (value == null || value.length () == 0)
{
value = DB.getDocumentNo (m_ctx, m_WindowNo, m_tableName, false, null);
// No Value
if (value == null || value.length () == 0)
{
error = true;
is = ERROR + field.getColumnName () + "= " + rowData[col]
+ " No Value";
log.fine(is);
break;
}
}
if (manualUpdate)
createUpdateSql (columnName, DB.TO_STRING (value));
else
rs.updateString (colRs, value); // ***
//
is = INFO + columnName + " -> " + value + " (Value)";
log.fine(is);
} // New Value(key)
// Updated - check database
else if (columnName.equals ("Updated"))
{
if (m_compareDB && !m_inserting && !m_rowData[col].equals (rowDataDB[col])) // changed
{
error = true;
is = ERROR + field.getColumnName () + "= " + m_rowData[col]
+ " != DB: " + rowDataDB[col];
log.fine(is);
break;
}
if (manualUpdate)
createUpdateSql (columnName, DB.TO_DATE (now, false));
else
rs.updateTimestamp (colRs, now); // ***
//
is = INFO + "Updated/By -> " + now + " - " + user;
log.fine(is);
} // Updated
// UpdatedBy - update
else if (columnName.equals ("UpdatedBy"))
{
if (manualUpdate)
createUpdateSql (columnName, String.valueOf (user));
else
rs.updateInt (colRs, user); // ***
} // UpdatedBy
// Created
else if (m_inserting && columnName.equals ("Created"))
{
if (manualUpdate)
createUpdateSql (columnName, DB.TO_DATE (now, false));
else
rs.updateTimestamp (colRs, now); // ***
} // Created
// CreatedBy
else if (m_inserting && columnName.equals ("CreatedBy"))
{
if (manualUpdate)
createUpdateSql (columnName, String.valueOf (user));
else
rs.updateInt (colRs, user); // ***
} // CreatedBy
// Nothing changed & null
else if (m_rowData[col] == null && rowData[col] == null)
{
if (m_inserting)
{
if (manualUpdate)
createUpdateSql (columnName, "NULL");
else
rs.updateNull (colRs); // ***
is = INFO + columnName + "= NULL";
log.fine(is);
}
}
// *** Data changed ***
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -