구매내역 색상 및 필터 정렬 기능 추가, 삭제시 데이터 숨김처리하게
This commit is contained in:
6
SubProject/FCM0000/dsMSSQL.Designer.cs
generated
6
SubProject/FCM0000/dsMSSQL.Designer.cs
generated
@@ -5547,7 +5547,7 @@ namespace FCM0000 {
|
||||
this.columnedate.MaxLength = 10;
|
||||
this.columnindate.MaxLength = 10;
|
||||
this.columnpo.MaxLength = 50;
|
||||
this.columndept.MaxLength = 50;
|
||||
this.columndept.MaxLength = 500;
|
||||
this.columnwuid.AllowDBNull = false;
|
||||
this.columnwuid.MaxLength = 20;
|
||||
this.columnwdate.AllowDBNull = false;
|
||||
@@ -17745,7 +17745,7 @@ SELECT TOP (10) idx, pdate, state, process, receive, sc, request, sid, pumname,
|
||||
this._commandCollection[0].CommandText = @"SELECT TOP (10) idx, pdate, state, process, receive, sc, request, sid, pumname, pumidx, pumscale, pumunit, pumqty, pumprice, pumamt, supply, supplyidx, project, projectidx, asset, edate, indate,
|
||||
po, dept, import, wuid, wdate
|
||||
FROM Purchase
|
||||
WHERE (state <> 'Cancled') AND (pumidx = @pumidx)
|
||||
WHERE (state <> 'Cancled') AND (pumidx = @pumidx) AND (ISNULL(isdel, 0) = 0)
|
||||
ORDER BY pdate DESC";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pumidx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "pumidx", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
@@ -17754,7 +17754,7 @@ ORDER BY pdate DESC";
|
||||
this._commandCollection[1].CommandText = @"SELECT TOP (10) idx, pdate, state, process, receive, sc, request, sid, pumname, pumidx, pumscale, pumunit, pumqty, pumprice, pumamt, supply, supplyidx, project, projectidx, asset, edate, indate,
|
||||
po, dept, import, wuid, wdate
|
||||
FROM Purchase
|
||||
WHERE (ISNULL(indate, '') <> '') AND (pumidx = @pumidx)
|
||||
WHERE (ISNULL(indate, '') <> '') AND (pumidx = @pumidx) AND (ISNULL(isdel, 0) = 0)
|
||||
ORDER BY indate DESC";
|
||||
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pumidx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "pumidx", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
|
||||
Reference in New Issue
Block a user