Beispiel #1
0
 public RptData.tbTaskDtlListRow AddtbTaskDtlListRow(string cWHId, string cPosIdFrom, string nPalletId, string cBNo, string cOptDesc, string nItem, string cMNo, string cName, string cSpec, string cBatchNo, double fQty, string cUnit, DateTime dOptDate, string cBNoIn, string nItemIn, int nOptStation, string cWKStatusDesc, string nWorkId)
 {
     RptData.tbTaskDtlListRow row = (RptData.tbTaskDtlListRow)base.NewRow();
     row.ItemArray = new object[] {
         cWHId, cPosIdFrom, nPalletId, cBNo, cOptDesc, nItem, cMNo, cName, cSpec, cBatchNo, fQty, cUnit, dOptDate, cBNoIn, nItemIn, nOptStation,
         cWKStatusDesc, nWorkId
     };
     base.Rows.Add(row);
     return(row);
 }
Beispiel #2
0
 public void RemovetbTaskDtlListRow(RptData.tbTaskDtlListRow row)
 {
     base.Rows.Remove(row);
 }
Beispiel #3
0
 public void AddtbTaskDtlListRow(RptData.tbTaskDtlListRow row)
 {
     base.Rows.Add(row);
 }
Beispiel #4
0
 public tbTaskDtlListRowChangeEvent(RptData.tbTaskDtlListRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }