프로젝트편집에 일 업무현황 등록과 todo 항목 추가
This commit is contained in:
@@ -62,9 +62,16 @@ namespace JobReportMailService
|
|||||||
var userdata = db.vGroupUser.Where(t => t.id == userinfo.id).FirstOrDefault();
|
var userdata = db.vGroupUser.Where(t => t.id == userinfo.id).FirstOrDefault();
|
||||||
if (userdata != null && string.IsNullOrEmpty(userdata.outdate) == false) continue;
|
if (userdata != null && string.IsNullOrEmpty(userdata.outdate) == false) continue;
|
||||||
|
|
||||||
|
//이 대상의 이메일이 받는 사람에 제외되어있다면 처리하지 않는다.
|
||||||
|
var exxptolist = MailJW.exceptmail.ToUpper().Split(';');
|
||||||
|
if(exxptolist.Contains(userdata.email.ToUpper())==false)
|
||||||
|
{
|
||||||
//모두대상으로 처리한다
|
//모두대상으로 처리한다
|
||||||
|
if(userdata.email.ToUpper() != ("BongSeok.Jung@amkor.co.kr").ToUpper())
|
||||||
uids.Add(userinfo.id, userinfo.name);
|
uids.Add(userinfo.id, userinfo.name);
|
||||||
}
|
}
|
||||||
|
else Console.WriteLine("주간 제외대상자임 " + userdata.email );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Console.WriteLine($"{uids.Count} 명의 전체 사용자가 확인 되었습니다");
|
Console.WriteLine($"{uids.Count} 명의 전체 사용자가 확인 되었습니다");
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
|
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
|
||||||
// 기본값으로 할 수 있습니다.
|
// 기본값으로 할 수 있습니다.
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
[assembly: AssemblyVersion("20.12.28.0950")]
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
[assembly: AssemblyFileVersion("20.12.28.0950")]
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
201027 chi 개인별/월별 근무시간 합계표 차트 -> 폼 변경
|
210107 chi 파트리스트 구매현황 화면 추가
|
||||||
|
201027 chi 개인별/월별 근무시간 합계표 차트 -> 폼 변경
|
||||||
201007 chi 부서로그인 기능 추가, 구매내역 메일 보내기 기능
|
201007 chi 부서로그인 기능 추가, 구매내역 메일 보내기 기능
|
||||||
200921 chi 파트리스트 저장시 sid 의 공백이 제거되게함
|
200921 chi 파트리스트 저장시 sid 의 공백이 제거되게함
|
||||||
200812 chi 1일최대근무시간 8시간 적용
|
200812 chi 1일최대근무시간 8시간 적용
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
|
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
|
||||||
// 지정되도록 할 수 있습니다.
|
// 지정되도록 할 수 있습니다.
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("20.12.16.0930")]
|
[assembly: AssemblyVersion("21.01.07.1300")]
|
||||||
[assembly: AssemblyFileVersion("20.12.16.0930")]
|
[assembly: AssemblyFileVersion("21.01.07.1300")]
|
||||||
|
|||||||
@@ -207,9 +207,9 @@ namespace Project._Common
|
|||||||
foreach(ListViewItem item in items)
|
foreach(ListViewItem item in items)
|
||||||
{
|
{
|
||||||
|
|
||||||
string sn = item.SubItems[0].Text;
|
string sn = item.SubItems[0].Text; //이름
|
||||||
string cn = item.SubItems[1].Text;
|
string cn = item.SubItems[1].Text; //숏네임
|
||||||
string disp = item.SubItems[2].Text;// lv.SubItems.Add(disp);
|
string disp = item.SubItems[2].Text;// 디스플레이네임
|
||||||
string dept = item.SubItems[3].Text; // lv.SubItems.Add(dept);
|
string dept = item.SubItems[3].Text; // lv.SubItems.Add(dept);
|
||||||
string title = item.SubItems[4].Text;// lv.SubItems.Add(title);
|
string title = item.SubItems[4].Text;// lv.SubItems.Add(title);
|
||||||
string tel = item.SubItems[5].Text; // lv.SubItems.Add(tel);
|
string tel = item.SubItems[5].Text; // lv.SubItems.Add(tel);
|
||||||
@@ -223,7 +223,7 @@ namespace Project._Common
|
|||||||
//이 대상의 id가 잇는지 체크한다.
|
//이 대상의 id가 잇는지 체크한다.
|
||||||
if(taUser.ExistID(pager) > 0)
|
if(taUser.ExistID(pager) > 0)
|
||||||
{
|
{
|
||||||
taUser.UpdateDept(dept, pager);
|
taUser.UpdateDept(dept, sn , title, pager);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
21
Project/dsMSSQL.Designer.cs
generated
21
Project/dsMSSQL.Designer.cs
generated
@@ -6973,9 +6973,12 @@ SELECT id, password, nameE, name, dept, grade, email, level, indate, outdate, te
|
|||||||
this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||||
this._commandCollection[6] = new global::System.Data.SqlClient.SqlCommand();
|
this._commandCollection[6] = new global::System.Data.SqlClient.SqlCommand();
|
||||||
this._commandCollection[6].Connection = this.Connection;
|
this._commandCollection[6].Connection = this.Connection;
|
||||||
this._commandCollection[6].CommandText = "UPDATE Users\r\nSET dept = @dept\r\nWHERE (id = @Original_id); ";
|
this._commandCollection[6].CommandText = "UPDATE Users\r\nSET dept = @dept,name=@name,ads_title=@title\r\nWHERE (id = " +
|
||||||
|
"@Original_id); ";
|
||||||
this._commandCollection[6].CommandType = global::System.Data.CommandType.Text;
|
this._commandCollection[6].CommandType = global::System.Data.CommandType.Text;
|
||||||
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@dept", global::System.Data.SqlDbType.VarChar, 100, global::System.Data.ParameterDirection.Input, 0, 0, "dept", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@dept", global::System.Data.SqlDbType.VarChar, 100, global::System.Data.ParameterDirection.Input, 0, 0, "dept", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||||
|
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@name", global::System.Data.SqlDbType.NVarChar, 100, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||||
|
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@title", global::System.Data.SqlDbType.NVarChar, 100, global::System.Data.ParameterDirection.Input, 0, 0, "ads_title", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||||
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_id", global::System.Data.SqlDbType.VarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, "id", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_id", global::System.Data.SqlDbType.VarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, "id", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -7676,7 +7679,7 @@ SELECT id, password, nameE, name, dept, grade, email, level, indate, outdate, te
|
|||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, false)]
|
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, false)]
|
||||||
public virtual int UpdateDept(string dept, string Original_id) {
|
public virtual int UpdateDept(string dept, string name, string title, string Original_id) {
|
||||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[6];
|
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[6];
|
||||||
if ((dept == null)) {
|
if ((dept == null)) {
|
||||||
command.Parameters[0].Value = global::System.DBNull.Value;
|
command.Parameters[0].Value = global::System.DBNull.Value;
|
||||||
@@ -7684,11 +7687,23 @@ SELECT id, password, nameE, name, dept, grade, email, level, indate, outdate, te
|
|||||||
else {
|
else {
|
||||||
command.Parameters[0].Value = ((string)(dept));
|
command.Parameters[0].Value = ((string)(dept));
|
||||||
}
|
}
|
||||||
|
if ((name == null)) {
|
||||||
|
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
command.Parameters[1].Value = ((string)(name));
|
||||||
|
}
|
||||||
|
if ((title == null)) {
|
||||||
|
command.Parameters[2].Value = global::System.DBNull.Value;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
command.Parameters[2].Value = ((string)(title));
|
||||||
|
}
|
||||||
if ((Original_id == null)) {
|
if ((Original_id == null)) {
|
||||||
throw new global::System.ArgumentNullException("Original_id");
|
throw new global::System.ArgumentNullException("Original_id");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
command.Parameters[1].Value = ((string)(Original_id));
|
command.Parameters[3].Value = ((string)(Original_id));
|
||||||
}
|
}
|
||||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||||
|
|||||||
@@ -201,10 +201,12 @@ SELECT id, password, nameE, name, dept, grade, email, level, indate, outdate, te
|
|||||||
<UpdateCommand>
|
<UpdateCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
<CommandText>UPDATE Users
|
<CommandText>UPDATE Users
|
||||||
SET dept = @dept
|
SET dept = @dept,name=@name,ads_title=@title
|
||||||
WHERE (id = @Original_id); </CommandText>
|
WHERE (id = @Original_id); </CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="dept" ColumnName="dept" DataSourceName="EE.dbo.Users" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@dept" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="dept" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="dept" ColumnName="dept" DataSourceName="EE.dbo.Users" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@dept" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="dept" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="name" ColumnName="name" DataSourceName="EE.dbo.Users" DataTypeServer="nvarchar(100)" DbType="String" Direction="Input" ParameterName="@name" Precision="0" ProviderType="NVarChar" Scale="0" Size="100" SourceColumn="name" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="title" ColumnName="ads_title" DataSourceName="EE.dbo.Users" DataTypeServer="nvarchar(100)" DbType="String" Direction="Input" ParameterName="@title" Precision="0" ProviderType="NVarChar" Scale="0" Size="100" SourceColumn="ads_title" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="Original_id" ColumnName="id" DataSourceName="EE.dbo.Users" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@Original_id" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="id" SourceColumnNullMapping="false" SourceVersion="Original" />
|
<Parameter AllowDbNull="false" AutogeneratedName="Original_id" ColumnName="id" DataSourceName="EE.dbo.Users" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@Original_id" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="id" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
@@ -1051,7 +1053,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
<xs:element name="dsMSSQL" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="dsMSSQL" msprop:Generator_UserDSName="dsMSSQL">
|
<xs:element name="dsMSSQL" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="dsMSSQL" msprop:Generator_UserDSName="dsMSSQL">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||||
<xs:element name="Users" msprop:Generator_TableClassName="UsersDataTable" msprop:Generator_TableVarName="tableUsers" msprop:Generator_RowChangedName="UsersRowChanged" msprop:Generator_TablePropName="Users" msprop:Generator_RowDeletingName="UsersRowDeleting" msprop:Generator_RowChangingName="UsersRowChanging" msprop:Generator_RowEvHandlerName="UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="UsersRowDeleted" msprop:Generator_RowClassName="UsersRow" msprop:Generator_UserTableName="Users" msprop:Generator_RowEvArgName="UsersRowChangeEvent">
|
<xs:element name="Users" msprop:Generator_TableClassName="UsersDataTable" msprop:Generator_TableVarName="tableUsers" msprop:Generator_TablePropName="Users" msprop:Generator_RowDeletingName="UsersRowDeleting" msprop:Generator_RowChangingName="UsersRowChanging" msprop:Generator_RowEvHandlerName="UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="UsersRowDeleted" msprop:Generator_UserTableName="Users" msprop:Generator_RowChangedName="UsersRowChanged" msprop:Generator_RowEvArgName="UsersRowChangeEvent" msprop:Generator_RowClassName="UsersRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="id" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnPropNameInTable="idColumn" msprop:Generator_UserColumnName="id">
|
<xs:element name="id" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnPropNameInTable="idColumn" msprop:Generator_UserColumnName="id">
|
||||||
@@ -1192,7 +1194,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="Projects" msprop:Generator_TableClassName="ProjectsDataTable" msprop:Generator_TableVarName="tableProjects" msprop:Generator_TablePropName="Projects" msprop:Generator_RowDeletingName="ProjectsRowDeleting" msprop:Generator_RowChangingName="ProjectsRowChanging" msprop:Generator_RowEvHandlerName="ProjectsRowChangeEventHandler" msprop:Generator_RowDeletedName="ProjectsRowDeleted" msprop:Generator_UserTableName="Projects" msprop:Generator_RowChangedName="ProjectsRowChanged" msprop:Generator_RowEvArgName="ProjectsRowChangeEvent" msprop:Generator_RowClassName="ProjectsRow">
|
<xs:element name="Projects" msprop:Generator_TableClassName="ProjectsDataTable" msprop:Generator_TableVarName="tableProjects" msprop:Generator_RowChangedName="ProjectsRowChanged" msprop:Generator_TablePropName="Projects" msprop:Generator_RowDeletingName="ProjectsRowDeleting" msprop:Generator_RowChangingName="ProjectsRowChanging" msprop:Generator_RowEvHandlerName="ProjectsRowChangeEventHandler" msprop:Generator_RowDeletedName="ProjectsRowDeleted" msprop:Generator_RowClassName="ProjectsRow" msprop:Generator_UserTableName="Projects" msprop:Generator_RowEvArgName="ProjectsRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -1263,7 +1265,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="Items" msprop:Generator_TableClassName="ItemsDataTable" msprop:Generator_TableVarName="tableItems" msprop:Generator_RowChangedName="ItemsRowChanged" msprop:Generator_TablePropName="Items" msprop:Generator_RowDeletingName="ItemsRowDeleting" msprop:Generator_RowChangingName="ItemsRowChanging" msprop:Generator_RowEvHandlerName="ItemsRowChangeEventHandler" msprop:Generator_RowDeletedName="ItemsRowDeleted" msprop:Generator_RowClassName="ItemsRow" msprop:Generator_UserTableName="Items" msprop:Generator_RowEvArgName="ItemsRowChangeEvent">
|
<xs:element name="Items" msprop:Generator_TableClassName="ItemsDataTable" msprop:Generator_TableVarName="tableItems" msprop:Generator_TablePropName="Items" msprop:Generator_RowDeletingName="ItemsRowDeleting" msprop:Generator_RowChangingName="ItemsRowChanging" msprop:Generator_RowEvHandlerName="ItemsRowChangeEventHandler" msprop:Generator_RowDeletedName="ItemsRowDeleted" msprop:Generator_UserTableName="Items" msprop:Generator_RowChangedName="ItemsRowChanged" msprop:Generator_RowEvArgName="ItemsRowChangeEvent" msprop:Generator_RowClassName="ItemsRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -1321,7 +1323,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="Inventory" msprop:Generator_TableClassName="InventoryDataTable" msprop:Generator_TableVarName="tableInventory" msprop:Generator_RowChangedName="InventoryRowChanged" msprop:Generator_TablePropName="Inventory" msprop:Generator_RowDeletingName="InventoryRowDeleting" msprop:Generator_RowChangingName="InventoryRowChanging" msprop:Generator_RowEvHandlerName="InventoryRowChangeEventHandler" msprop:Generator_RowDeletedName="InventoryRowDeleted" msprop:Generator_RowClassName="InventoryRow" msprop:Generator_UserTableName="Inventory" msprop:Generator_RowEvArgName="InventoryRowChangeEvent">
|
<xs:element name="Inventory" msprop:Generator_TableClassName="InventoryDataTable" msprop:Generator_TableVarName="tableInventory" msprop:Generator_TablePropName="Inventory" msprop:Generator_RowDeletingName="InventoryRowDeleting" msprop:Generator_RowChangingName="InventoryRowChanging" msprop:Generator_RowEvHandlerName="InventoryRowChangeEventHandler" msprop:Generator_RowDeletedName="InventoryRowDeleted" msprop:Generator_UserTableName="Inventory" msprop:Generator_RowChangedName="InventoryRowChanged" msprop:Generator_RowEvArgName="InventoryRowChangeEvent" msprop:Generator_RowClassName="InventoryRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -1391,7 +1393,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="LineCode" msprop:Generator_TableClassName="LineCodeDataTable" msprop:Generator_TableVarName="tableLineCode" msprop:Generator_RowChangedName="LineCodeRowChanged" msprop:Generator_TablePropName="LineCode" msprop:Generator_RowDeletingName="LineCodeRowDeleting" msprop:Generator_RowChangingName="LineCodeRowChanging" msprop:Generator_RowEvHandlerName="LineCodeRowChangeEventHandler" msprop:Generator_RowDeletedName="LineCodeRowDeleted" msprop:Generator_RowClassName="LineCodeRow" msprop:Generator_UserTableName="LineCode" msprop:Generator_RowEvArgName="LineCodeRowChangeEvent">
|
<xs:element name="LineCode" msprop:Generator_TableClassName="LineCodeDataTable" msprop:Generator_TableVarName="tableLineCode" msprop:Generator_TablePropName="LineCode" msprop:Generator_RowDeletingName="LineCodeRowDeleting" msprop:Generator_RowChangingName="LineCodeRowChanging" msprop:Generator_RowEvHandlerName="LineCodeRowChangeEventHandler" msprop:Generator_RowDeletedName="LineCodeRowDeleted" msprop:Generator_UserTableName="LineCode" msprop:Generator_RowChangedName="LineCodeRowChanged" msprop:Generator_RowEvArgName="LineCodeRowChangeEvent" msprop:Generator_RowClassName="LineCodeRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -1435,7 +1437,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="UserGroup" msprop:Generator_TableClassName="UserGroupDataTable" msprop:Generator_TableVarName="tableUserGroup" msprop:Generator_RowChangedName="UserGroupRowChanged" msprop:Generator_TablePropName="UserGroup" msprop:Generator_RowDeletingName="UserGroupRowDeleting" msprop:Generator_RowChangingName="UserGroupRowChanging" msprop:Generator_RowEvHandlerName="UserGroupRowChangeEventHandler" msprop:Generator_RowDeletedName="UserGroupRowDeleted" msprop:Generator_RowClassName="UserGroupRow" msprop:Generator_UserTableName="UserGroup" msprop:Generator_RowEvArgName="UserGroupRowChangeEvent">
|
<xs:element name="UserGroup" msprop:Generator_TableClassName="UserGroupDataTable" msprop:Generator_TableVarName="tableUserGroup" msprop:Generator_TablePropName="UserGroup" msprop:Generator_RowDeletingName="UserGroupRowDeleting" msprop:Generator_RowChangingName="UserGroupRowChanging" msprop:Generator_RowEvHandlerName="UserGroupRowChangeEventHandler" msprop:Generator_RowDeletedName="UserGroupRowDeleted" msprop:Generator_UserTableName="UserGroup" msprop:Generator_RowChangedName="UserGroupRowChanged" msprop:Generator_RowEvArgName="UserGroupRowChangeEvent" msprop:Generator_RowClassName="UserGroupRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="dept" msprop:Generator_ColumnVarNameInTable="columndept" msprop:Generator_ColumnPropNameInRow="dept" msprop:Generator_ColumnPropNameInTable="deptColumn" msprop:Generator_UserColumnName="dept">
|
<xs:element name="dept" msprop:Generator_ColumnVarNameInTable="columndept" msprop:Generator_ColumnPropNameInRow="dept" msprop:Generator_ColumnPropNameInTable="deptColumn" msprop:Generator_UserColumnName="dept">
|
||||||
@@ -1464,7 +1466,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="SPMaster" msprop:Generator_TableClassName="SPMasterDataTable" msprop:Generator_TableVarName="tableSPMaster" msprop:Generator_RowChangedName="SPMasterRowChanged" msprop:Generator_TablePropName="SPMaster" msprop:Generator_RowDeletingName="SPMasterRowDeleting" msprop:Generator_RowChangingName="SPMasterRowChanging" msprop:Generator_RowEvHandlerName="SPMasterRowChangeEventHandler" msprop:Generator_RowDeletedName="SPMasterRowDeleted" msprop:Generator_RowClassName="SPMasterRow" msprop:Generator_UserTableName="SPMaster" msprop:Generator_RowEvArgName="SPMasterRowChangeEvent">
|
<xs:element name="SPMaster" msprop:Generator_TableClassName="SPMasterDataTable" msprop:Generator_TableVarName="tableSPMaster" msprop:Generator_TablePropName="SPMaster" msprop:Generator_RowDeletingName="SPMasterRowDeleting" msprop:Generator_RowChangingName="SPMasterRowChanging" msprop:Generator_RowEvHandlerName="SPMasterRowChangeEventHandler" msprop:Generator_RowDeletedName="SPMasterRowDeleted" msprop:Generator_UserTableName="SPMaster" msprop:Generator_RowChangedName="SPMasterRowChanged" msprop:Generator_RowEvArgName="SPMasterRowChangeEvent" msprop:Generator_RowClassName="SPMasterRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
|
<xs:element name="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
|
||||||
@@ -1580,7 +1582,7 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="EETGW_GroupUser" msprop:Generator_TableClassName="EETGW_GroupUserDataTable" msprop:Generator_TableVarName="tableEETGW_GroupUser" msprop:Generator_RowChangedName="EETGW_GroupUserRowChanged" msprop:Generator_TablePropName="EETGW_GroupUser" msprop:Generator_RowDeletingName="EETGW_GroupUserRowDeleting" msprop:Generator_RowChangingName="EETGW_GroupUserRowChanging" msprop:Generator_RowEvHandlerName="EETGW_GroupUserRowChangeEventHandler" msprop:Generator_RowDeletedName="EETGW_GroupUserRowDeleted" msprop:Generator_RowClassName="EETGW_GroupUserRow" msprop:Generator_UserTableName="EETGW_GroupUser" msprop:Generator_RowEvArgName="EETGW_GroupUserRowChangeEvent">
|
<xs:element name="EETGW_GroupUser" msprop:Generator_TableClassName="EETGW_GroupUserDataTable" msprop:Generator_TableVarName="tableEETGW_GroupUser" msprop:Generator_TablePropName="EETGW_GroupUser" msprop:Generator_RowDeletingName="EETGW_GroupUserRowDeleting" msprop:Generator_RowChangingName="EETGW_GroupUserRowChanging" msprop:Generator_RowEvHandlerName="EETGW_GroupUserRowChangeEventHandler" msprop:Generator_RowDeletedName="EETGW_GroupUserRowDeleted" msprop:Generator_UserTableName="EETGW_GroupUser" msprop:Generator_RowChangedName="EETGW_GroupUserRowChanged" msprop:Generator_RowEvArgName="EETGW_GroupUserRowChangeEvent" msprop:Generator_RowClassName="EETGW_GroupUserRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
|
|||||||
27
Project/fMain.Designer.cs
generated
27
Project/fMain.Designer.cs
generated
@@ -56,6 +56,7 @@
|
|||||||
this.managementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.managementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.mn_purchase = new System.Windows.Forms.ToolStripMenuItem();
|
this.mn_purchase = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.mn_project = new System.Windows.Forms.ToolStripMenuItem();
|
this.mn_project = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.목록ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.mn_dailyhistory = new System.Windows.Forms.ToolStripMenuItem();
|
this.mn_dailyhistory = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.비용절감ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.비용절감ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.mn_jago = new System.Windows.Forms.ToolStripMenuItem();
|
this.mn_jago = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
@@ -109,6 +110,7 @@
|
|||||||
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
|
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
|
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
|
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
|
||||||
|
this.구매진행현황ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.cmTab.SuspendLayout();
|
this.cmTab.SuspendLayout();
|
||||||
this.statusStrip1.SuspendLayout();
|
this.statusStrip1.SuspendLayout();
|
||||||
this.menuStrip1.SuspendLayout();
|
this.menuStrip1.SuspendLayout();
|
||||||
@@ -319,12 +321,22 @@
|
|||||||
//
|
//
|
||||||
// mn_project
|
// mn_project
|
||||||
//
|
//
|
||||||
|
this.mn_project.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.목록ToolStripMenuItem,
|
||||||
|
this.구매진행현황ToolStripMenuItem});
|
||||||
this.mn_project.Image = ((System.Drawing.Image)(resources.GetObject("mn_project.Image")));
|
this.mn_project.Image = ((System.Drawing.Image)(resources.GetObject("mn_project.Image")));
|
||||||
this.mn_project.Name = "mn_project";
|
this.mn_project.Name = "mn_project";
|
||||||
this.mn_project.Size = new System.Drawing.Size(208, 24);
|
this.mn_project.Size = new System.Drawing.Size(208, 24);
|
||||||
this.mn_project.Text = "프로젝트";
|
this.mn_project.Text = "프로젝트";
|
||||||
this.mn_project.Click += new System.EventHandler(this.프로젝트ToolStripMenuItem_Click);
|
this.mn_project.Click += new System.EventHandler(this.프로젝트ToolStripMenuItem_Click);
|
||||||
//
|
//
|
||||||
|
// 목록ToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.목록ToolStripMenuItem.Name = "목록ToolStripMenuItem";
|
||||||
|
this.목록ToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
|
||||||
|
this.목록ToolStripMenuItem.Text = "목록";
|
||||||
|
this.목록ToolStripMenuItem.Click += new System.EventHandler(this.목록ToolStripMenuItem_Click);
|
||||||
|
//
|
||||||
// mn_dailyhistory
|
// mn_dailyhistory
|
||||||
//
|
//
|
||||||
this.mn_dailyhistory.Image = ((System.Drawing.Image)(resources.GetObject("mn_dailyhistory.Image")));
|
this.mn_dailyhistory.Image = ((System.Drawing.Image)(resources.GetObject("mn_dailyhistory.Image")));
|
||||||
@@ -357,21 +369,21 @@
|
|||||||
// 관리ToolStripMenuItem
|
// 관리ToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.관리ToolStripMenuItem.Name = "관리ToolStripMenuItem";
|
this.관리ToolStripMenuItem.Name = "관리ToolStripMenuItem";
|
||||||
this.관리ToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
|
this.관리ToolStripMenuItem.Size = new System.Drawing.Size(140, 24);
|
||||||
this.관리ToolStripMenuItem.Text = "재고 관리";
|
this.관리ToolStripMenuItem.Text = "재고 관리";
|
||||||
this.관리ToolStripMenuItem.Click += new System.EventHandler(this.관리ToolStripMenuItem_Click);
|
this.관리ToolStripMenuItem.Click += new System.EventHandler(this.관리ToolStripMenuItem_Click);
|
||||||
//
|
//
|
||||||
// 재고현황ToolStripMenuItem
|
// 재고현황ToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.재고현황ToolStripMenuItem.Name = "재고현황ToolStripMenuItem";
|
this.재고현황ToolStripMenuItem.Name = "재고현황ToolStripMenuItem";
|
||||||
this.재고현황ToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
|
this.재고현황ToolStripMenuItem.Size = new System.Drawing.Size(140, 24);
|
||||||
this.재고현황ToolStripMenuItem.Text = "재고 현황";
|
this.재고현황ToolStripMenuItem.Text = "재고 현황";
|
||||||
this.재고현황ToolStripMenuItem.Click += new System.EventHandler(this.재고현황ToolStripMenuItem_Click);
|
this.재고현황ToolStripMenuItem.Click += new System.EventHandler(this.재고현황ToolStripMenuItem_Click);
|
||||||
//
|
//
|
||||||
// pMP현황ToolStripMenuItem
|
// pMP현황ToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.pMP현황ToolStripMenuItem.Name = "pMP현황ToolStripMenuItem";
|
this.pMP현황ToolStripMenuItem.Name = "pMP현황ToolStripMenuItem";
|
||||||
this.pMP현황ToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
|
this.pMP현황ToolStripMenuItem.Size = new System.Drawing.Size(140, 24);
|
||||||
this.pMP현황ToolStripMenuItem.Text = "PMP 현황";
|
this.pMP현황ToolStripMenuItem.Text = "PMP 현황";
|
||||||
this.pMP현황ToolStripMenuItem.Click += new System.EventHandler(this.pMP현황ToolStripMenuItem_Click);
|
this.pMP현황ToolStripMenuItem.Click += new System.EventHandler(this.pMP현황ToolStripMenuItem_Click);
|
||||||
//
|
//
|
||||||
@@ -785,6 +797,13 @@
|
|||||||
this.toolStripButton4.ToolTipText = "PMP 자료 보기(베타)";
|
this.toolStripButton4.ToolTipText = "PMP 자료 보기(베타)";
|
||||||
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click_1);
|
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click_1);
|
||||||
//
|
//
|
||||||
|
// 구매진행현황ToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.구매진행현황ToolStripMenuItem.Name = "구매진행현황ToolStripMenuItem";
|
||||||
|
this.구매진행현황ToolStripMenuItem.Size = new System.Drawing.Size(180, 24);
|
||||||
|
this.구매진행현황ToolStripMenuItem.Text = "구매진행현황";
|
||||||
|
this.구매진행현황ToolStripMenuItem.Click += new System.EventHandler(this.구매진행현황ToolStripMenuItem_Click);
|
||||||
|
//
|
||||||
// fMain
|
// fMain
|
||||||
//
|
//
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||||
@@ -896,6 +915,8 @@
|
|||||||
private System.Windows.Forms.ToolStripMenuItem 근로명부ToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem 근로명부ToolStripMenuItem;
|
||||||
private System.Windows.Forms.ToolStripStatusLabel lbSvr;
|
private System.Windows.Forms.ToolStripStatusLabel lbSvr;
|
||||||
private System.Windows.Forms.ToolStripMenuItem 비용절감ToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem 비용절감ToolStripMenuItem;
|
||||||
|
private System.Windows.Forms.ToolStripMenuItem 목록ToolStripMenuItem;
|
||||||
|
private System.Windows.Forms.ToolStripMenuItem 구매진행현황ToolStripMenuItem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -639,7 +639,7 @@ namespace Project
|
|||||||
|
|
||||||
private void 프로젝트ToolStripMenuItem_Click(object sender, EventArgs e)
|
private void 프로젝트ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
menu_projecT_list();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void 업무일지ToolStripMenuItem_Click(object sender, EventArgs e)
|
private void 업무일지ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
@@ -1054,5 +1054,21 @@ namespace Project
|
|||||||
{
|
{
|
||||||
menu_save_cost();
|
menu_save_cost();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void 목록ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
menu_projecT_list();
|
||||||
|
}
|
||||||
|
void menu_projectPartStatus_list()
|
||||||
|
{
|
||||||
|
string formkey = "PROJECTPARTST";
|
||||||
|
if (!ShowForm(formkey))
|
||||||
|
AddForm(formkey, new FPJ0000.fPartBuyStatus());
|
||||||
|
|
||||||
|
}
|
||||||
|
private void 구매진행현황ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
menu_projectPartStatus_list();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -153,26 +153,6 @@
|
|||||||
Mi4wAwEBAAAh+QQBAAAXACwAAAAAEAAQAAAIggAvCBwo0IJBCwQTFqwAAQEDhAoXTpgoYQDEhBYqTKDA
|
Mi4wAwEBAAAh+QQBAAAXACwAAAAAEAAQAAAIggAvCBwo0IJBCwQTFqwAAQEDhAoXTpgoYQDEhBYqTKDA
|
||||||
kYKEBRclciRAoMEDCREuZtw40oKCCihVauxIIYEBmCkJruxYoWfMggYPsOyJU+WAABMqCJDgM+eFg0iV
|
kYKEBRclciRAoMEDCREuZtw40oKCCihVauxIIYEBmCkJruxYoWfMggYPsOyJU+WAABMqCJDgM+eFg0iV
|
||||||
Aigg4WfBo0kFADAYwWnBABSkQjSIcYDYiAMtBHCwFW3ag24HBgQAOw==
|
Aigg4WfBo0kFADAYwWnBABSkQjSIcYDYiAMtBHCwFW3ag24HBgQAOw==
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="codesToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
R0lGODlhEAAQAIQAAHan1azQ4ldvj9vp9HSQruTr80lVa+vx9pu811SRuXifuj13uYyz2VFhe4Gt2UNL
|
|
||||||
XPL1+Orv+ufu9YOqxYyzzNHW3SkxQz5FVWag2T6CuZe3y5G0t+Do7+r0/77a9f///yH/C05FVFNDQVBF
|
|
||||||
Mi4wAwEBAAAh+QQAAAAAACwAAAAAEAAQAAAIrwA/CBxIsKDAAQESIkBAYYICBQQICCAgMMAACQMyaswo
|
|
||||||
oUKDih0SZMiwoKTJBQcEVDyAoEMHDy5hdnAg4eMHBBIQeNjJcyeDAjYRRNAQs+hMoAIpRNjQs6eDAgYE
|
|
||||||
TshpVCYAqAIV5GzKU0GBB1klMKjqEgMHsB8IiOW60+wFgQQgIGDgoC4AABgwADjw9oOAChAkSChAmIPh
|
|
||||||
AxUswBXAuEEDAwYePLhwwYJNg5gFBgQAOw==
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="메일양식ToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
R0lGODlhEAAQAIQfAHWSrbTY+6nU/I+74/r8/drj7FlxkUlVa9Xp/eLs9cvT2oWpxG+bwqPQ+57N++v1
|
|
||||||
/lJgeabK7JnB5kNLXJG0z5nA1oyw0SkxQz5FVb7e/aC91tHl8qXB2n2gu////////yH/C05FVFNDQVBF
|
|
||||||
Mi4wAwEBAAAh+QQBAAAfACwAAAAAEAAQAAAIpAA/CBxIsKDBgwQ9KFzIsKHCDRUqUFhAsQOAiwAMQFBY
|
|
||||||
gYDHjyAJKNjogQIBChoQZAgQAEGCiQUOKFxAIEMEDhsQPEDAQEKDBzI9dKiZIYOFowwENPg5QeHQlRIi
|
|
||||||
SJAwYIADBwWaegCQIMAACQEEKK2KFYNCrgMihBXbwEHVBGY9GFCQIEGBu3jvKrhw1oBfCBAOHJgwAQOG
|
|
||||||
CyQdKlaIsLHjggEBADs=
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="commonToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="commonToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
@@ -325,6 +305,26 @@
|
|||||||
JDzo4OEBBAgUMGiwkGBFBAcODAAAYMEAjh4ZIBgwQAAAAgZOdkTIQEGCAQRICoAZACVNBQACkHxpQEDP
|
JDzo4OEBBAgUMGiwkGBFBAcODAAAYMEAjh4ZIBgwQAAAAgZOdkTIQEGCAQRICoAZACVNBQACkHxpQEDP
|
||||||
jg5qLhgKQIDTowIrJoA5NGKDABIbNpjqlEGBAguyag3QEiLYsDOjPgwQYEFYsQUdRpSY1qDCugzzBgQA
|
jg5qLhgKQIDTowIrJoA5NGKDABIbNpjqlEGBAguyag3QEiLYsDOjPgwQYEFYsQUdRpSY1qDCugzzBgQA
|
||||||
Ow==
|
Ow==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="codesToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
R0lGODlhEAAQAIQAAHan1azQ4ldvj9vp9HSQruTr80lVa+vx9pu811SRuXifuj13uYyz2VFhe4Gt2UNL
|
||||||
|
XPL1+Orv+ufu9YOqxYyzzNHW3SkxQz5FVWag2T6CuZe3y5G0t+Do7+r0/77a9f///yH/C05FVFNDQVBF
|
||||||
|
Mi4wAwEBAAAh+QQAAAAAACwAAAAAEAAQAAAIrwA/CBxIsKDAAQESIkBAYYICBQQICCAgMMAACQMyaswo
|
||||||
|
oUKDih0SZMiwoKTJBQcEVDyAoEMHDy5hdnAg4eMHBBIQeNjJcyeDAjYRRNAQs+hMoAIpRNjQs6eDAgYE
|
||||||
|
TshpVCYAqAIV5GzKU0GBB1klMKjqEgMHsB8IiOW60+wFgQQgIGDgoC4AABgwADjw9oOAChAkSChAmIPh
|
||||||
|
AxUswBXAuEEDAwYePLhwwYJNg5gFBgQAOw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="메일양식ToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
R0lGODlhEAAQAIQfAHWSrbTY+6nU/I+74/r8/drj7FlxkUlVa9Xp/eLs9cvT2oWpxG+bwqPQ+57N++v1
|
||||||
|
/lJgeabK7JnB5kNLXJG0z5nA1oyw0SkxQz5FVb7e/aC91tHl8qXB2n2gu////////yH/C05FVFNDQVBF
|
||||||
|
Mi4wAwEBAAAh+QQBAAAfACwAAAAAEAAQAAAIpAA/CBxIsKDBgwQ9KFzIsKHCDRUqUFhAsQOAiwAMQFBY
|
||||||
|
gYDHjyAJKNjogQIBChoQZAgQAEGCiQUOKFxAIEMEDhsQPEDAQEKDBzI9dKiZIYOFowwENPg5QeHQlRIi
|
||||||
|
SJAwYIADBwWaegCQIMAACQEEKK2KFYNCrgMihBXbwEHVBGY9GFCQIEGBu3jvKrhw1oBfCBAOHJgwAQOG
|
||||||
|
CyQdKlaIsLHjggEBADs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
@@ -375,16 +375,16 @@
|
|||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJFSURBVDhPjVPtS1NxGP1B3r+gj/0PfUhXQgQJYWUqRFFC
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJFSURBVDhPjVPtS1NxGP1B3r+gj/0PfUhXQgQJYWUqRFFC
|
||||||
QwoXhVCNrK1o6oJoA+mDkJrIvjRlkJQUgTUGEkL2ShFrRvu2INjUEdu8u3e9nJ7zu1eWqNADD/fDvec5
|
QwoXhVCNrK1o6oJoA+mDkJrIvjRlkJQUgXUZSEjvRRFrRvu2INjUEdu8210vp+f87pUlKvTAw/1w73nO
|
||||||
z3POuep/K2so31dDzcuzIG0vGOq39B/39dYlH49lDJUnIN9zAkvB81geuIiVsB/yDu5nG0vYvIsNKpdr
|
85xzrvrfyhjK99VQ8/LMS9vPDfVb+o/7evOSj8fShsoRkOs5hsXgWSwNnMdy2A95B/ez9SVs3oUGlc02
|
||||||
3omlwDkUb/lRGgmgFNqH1Ugzfs72oxrcYkB2m4qlDWXmz3ahGOnDj+utMKMe2CN7UBtz+ldqAPaNTQZk
|
b8di4AwKN/wojgRQDO3BSqQZP2f7UQluMiCzRcVShrJyp7tQiPThx9VWWFEP7JFdqI05/Ss5APvaBgMy
|
||||||
G9S0rFZb7r+A0t0AKuFdqLlAe2o/rOcdqL46CTs3ivLbxvUDyEzwyuAllCeCsO54HGCiBdUXx2Cmu2F+
|
DWpaVqst9Z9D8XYA5fAO1FygPbUX1acdqLw6Djs7itLbxrUDyEzw8uAFlCaCqN7yOMBECyrPjsBKdcP6
|
||||||
OaPb/j6O8ntPfQBv5tpkJtge3q3B1tM2mB+9GvQt7cXDhU6EUi0Y/TCIHbF/TqBgvJlrrzFbyU6YmdNY
|
ckq3/X0cpfee+gDezLXJTLA9vFODq4/bYH30atC3lBf3X3YilGzB6IdBbIv9cwIF481ce5W5anbCSp/E
|
||||||
FfD0yw74Zvei7UkTDj5uRPRdCNsn3AG0ip4Wb19G5WZTnVnAhc/dGJo7gHYXeCoeQO94AvHkJxy5OuMM
|
ioCnX3TAN7sbbY+asP9hI6LvQtg64Q6gVfS0cPMiyteb6swCzn/uxtDcPrS7wBPxAHrHE4ibn3Do8owz
|
||||||
oM+0qhK7pgXjzVybzAQfEuDRB8fRey+ByWQGU8lF3H+WcQYIu48hoc+0iuxaMHdtMhMcjqc0MDr5Bj2R
|
gD7TqnLsihaMN3NtMhN8QICH7x1F750EJs00pswF3H2SdgYIu48hoc+0iuxaMHdtMhMcjic1MDr5Bj0R
|
||||||
pIDj1uG+mdcUb54JY0joM62i2hSMN3NtMhPsH57TwPYrj1r16izZoMB4MmH6dvGZ7FSbgvFmrk1mgl1Y
|
U8Dx6sG+mdcUb54JY0joM62i2hSMN3NtMhPsH57TwPZLD1r16izZIM94MmH6dvGZ7FSbgvFmrk1mgl1Y
|
||||||
vWSAzWwznnp9CQkH0CrNLoKRnWuvY14r3s8fg9nW8ZSEMST0mVZRbUewTdhZtE+20D8Gs814MmEMCX2m
|
vWSAzWwznnp9CQkH0CrNLoKRnWuvYV4t3s8fg9nW8ZSEMST0mVZRbUewDdhZtE+20D8Gs814MmEMCX2m
|
||||||
0mwt2IZS6i8zWvS4dItvBAAAAABJRU5ErkJggg==
|
0mwt2LpS6i8UOPSq1BpxwAAAAABJRU5ErkJggg==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ namespace FBS0000
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
this.ta.Fill(this.dsMSSQL.Holyday, tbSD.Text, tbED.Text, FCOMMON.info.Login.gcode, seluid);
|
this.ta.Fill(this.dsMSSQL.Holyday, tbSD.Text, FCOMMON.info.Login.gcode, seluid, tbED.Text);
|
||||||
this.dsMSSQL.Holyday.AcceptChanges();
|
this.dsMSSQL.Holyday.AcceptChanges();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|||||||
1200
SubProject/FBS0000/dsMSSQL.Designer.cs
generated
1200
SubProject/FBS0000/dsMSSQL.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -272,13 +272,13 @@ SELECT idx, cate, result, sdate, edate, term, title, contents, uid, tolist, mail
|
|||||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
<CommandText>SELECT idx, cate, result, sdate, edate, term, title, contents, uid, tolist, mail, mailsend, reason, wuid, wdate, termDr, gcode, DrTime, CrTime, dbo.getUserName(uid) AS UserName, tag
|
<CommandText>SELECT idx, cate, result, sdate, edate, term, title, contents, uid, tolist, mail, mailsend, reason, wuid, wdate, termDr, gcode, DrTime, CrTime, dbo.getUserName(uid) AS UserName, tag
|
||||||
FROM Holyday
|
FROM Holyday
|
||||||
WHERE (sdate >= @sd) AND (edate <= @ed) AND (gcode = @gcode) AND (uid LIKE @uid)
|
WHERE (sdate >= @sd) AND (gcode = @gcode) AND (uid LIKE @uid) AND (sdate <= @ed)
|
||||||
ORDER BY sdate, edate, uid</CommandText>
|
ORDER BY sdate, edate, uid</CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="sd" ColumnName="sdate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@sd" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="sdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="sd" ColumnName="sdate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@sd" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="sdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="ed" ColumnName="edate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@ed" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="edate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Holyday" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Holyday" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="uid" ColumnName="uid" DataSourceName="EE.dbo.Holyday" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@uid" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="uid" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="uid" ColumnName="uid" DataSourceName="EE.dbo.Holyday" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@uid" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="uid" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="ed" ColumnName="sdate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@ed" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="sdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</SelectCommand>
|
</SelectCommand>
|
||||||
@@ -389,13 +389,13 @@ SELECT idx, cate, result, sdate, edate, term, title, contents, uid, tolist, mail
|
|||||||
Holyday.reason, Holyday.wuid, Holyday.wdate, Holyday.termDr, Holyday.gcode, Holyday.DrTime, Holyday.CrTime, dbo.getUserName(Holyday.uid) AS UserName, Holyday.tag
|
Holyday.reason, Holyday.wuid, Holyday.wdate, Holyday.termDr, Holyday.gcode, Holyday.DrTime, Holyday.CrTime, dbo.getUserName(Holyday.uid) AS UserName, Holyday.tag
|
||||||
FROM Holyday LEFT OUTER JOIN
|
FROM Holyday LEFT OUTER JOIN
|
||||||
EETGW_WorkTableUser ON Holyday.gcode = EETGW_WorkTableUser.gcode AND Holyday.uid = EETGW_WorkTableUser.empno
|
EETGW_WorkTableUser ON Holyday.gcode = EETGW_WorkTableUser.gcode AND Holyday.uid = EETGW_WorkTableUser.empno
|
||||||
WHERE (Holyday.sdate >= @sd) AND (Holyday.edate <= @ed) AND (Holyday.gcode = @gcode) AND (EETGW_WorkTableUser.grp = @grp)
|
WHERE (Holyday.sdate >= @sd) AND (Holyday.gcode = @gcode) AND (EETGW_WorkTableUser.grp = @grp) AND (Holyday.sdate <= @ed)
|
||||||
ORDER BY Holyday.sdate, Holyday.edate, Holyday.uid</CommandText>
|
ORDER BY Holyday.sdate, Holyday.edate, Holyday.uid</CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="sd" ColumnName="sdate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@sd" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="sdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="sd" ColumnName="sdate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@sd" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="sdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="ed" ColumnName="edate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@ed" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="edate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Holyday" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Holyday" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="grp" ColumnName="grp" DataSourceName="EE.dbo.EETGW_WorkTableUser" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@grp" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="grp" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="grp" ColumnName="grp" DataSourceName="EE.dbo.EETGW_WorkTableUser" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@grp" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="grp" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="ed" ColumnName="sdate" DataSourceName="EE.dbo.Holyday" DataTypeServer="date" DbType="AnsiString" Direction="Input" ParameterName="@ed" Precision="0" ProviderType="Date" Scale="0" Size="3" SourceColumn="sdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</SelectCommand>
|
</SelectCommand>
|
||||||
@@ -659,7 +659,7 @@ WHERE (gcode = @gcode) AND (uid = @uid) AND (CONVERT(CHAR(10), sdate, 23) >=
|
|||||||
<xs:element name="dsMSSQL" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="dsMSSQL" msprop:Generator_UserDSName="dsMSSQL">
|
<xs:element name="dsMSSQL" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="dsMSSQL" msprop:Generator_UserDSName="dsMSSQL">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||||
<xs:element name="minutes" msprop:Generator_TableClassName="minutesDataTable" msprop:Generator_TableVarName="tableminutes" msprop:Generator_TablePropName="minutes" msprop:Generator_RowDeletingName="minutesRowDeleting" msprop:Generator_RowChangingName="minutesRowChanging" msprop:Generator_RowEvHandlerName="minutesRowChangeEventHandler" msprop:Generator_RowDeletedName="minutesRowDeleted" msprop:Generator_UserTableName="minutes" msprop:Generator_RowChangedName="minutesRowChanged" msprop:Generator_RowEvArgName="minutesRowChangeEvent" msprop:Generator_RowClassName="minutesRow">
|
<xs:element name="minutes" msprop:Generator_TableClassName="minutesDataTable" msprop:Generator_TableVarName="tableminutes" msprop:Generator_RowChangedName="minutesRowChanged" msprop:Generator_TablePropName="minutes" msprop:Generator_RowDeletingName="minutesRowDeleting" msprop:Generator_RowChangingName="minutesRowChanging" msprop:Generator_RowEvHandlerName="minutesRowChangeEventHandler" msprop:Generator_RowDeletedName="minutesRowDeleted" msprop:Generator_RowClassName="minutesRow" msprop:Generator_UserTableName="minutes" msprop:Generator_RowEvArgName="minutesRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -719,7 +719,7 @@ WHERE (gcode = @gcode) AND (uid = @uid) AND (CONVERT(CHAR(10), sdate, 23) >=
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="Board" msprop:Generator_TableClassName="BoardDataTable" msprop:Generator_TableVarName="tableBoard" msprop:Generator_TablePropName="Board" msprop:Generator_RowDeletingName="BoardRowDeleting" msprop:Generator_RowChangingName="BoardRowChanging" msprop:Generator_RowEvHandlerName="BoardRowChangeEventHandler" msprop:Generator_RowDeletedName="BoardRowDeleted" msprop:Generator_UserTableName="Board" msprop:Generator_RowChangedName="BoardRowChanged" msprop:Generator_RowEvArgName="BoardRowChangeEvent" msprop:Generator_RowClassName="BoardRow">
|
<xs:element name="Board" msprop:Generator_TableClassName="BoardDataTable" msprop:Generator_TableVarName="tableBoard" msprop:Generator_RowChangedName="BoardRowChanged" msprop:Generator_TablePropName="Board" msprop:Generator_RowDeletingName="BoardRowDeleting" msprop:Generator_RowChangingName="BoardRowChanging" msprop:Generator_RowEvHandlerName="BoardRowChangeEventHandler" msprop:Generator_RowDeletedName="BoardRowDeleted" msprop:Generator_RowClassName="BoardRow" msprop:Generator_UserTableName="Board" msprop:Generator_RowEvArgName="BoardRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -771,7 +771,7 @@ WHERE (gcode = @gcode) AND (uid = @uid) AND (CONVERT(CHAR(10), sdate, 23) >=
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="Holyday" msprop:Generator_TableClassName="HolydayDataTable" msprop:Generator_TableVarName="tableHolyday" msprop:Generator_TablePropName="Holyday" msprop:Generator_RowDeletingName="HolydayRowDeleting" msprop:Generator_RowChangingName="HolydayRowChanging" msprop:Generator_RowEvHandlerName="HolydayRowChangeEventHandler" msprop:Generator_RowDeletedName="HolydayRowDeleted" msprop:Generator_UserTableName="Holyday" msprop:Generator_RowChangedName="HolydayRowChanged" msprop:Generator_RowEvArgName="HolydayRowChangeEvent" msprop:Generator_RowClassName="HolydayRow">
|
<xs:element name="Holyday" msprop:Generator_TableClassName="HolydayDataTable" msprop:Generator_TableVarName="tableHolyday" msprop:Generator_RowChangedName="HolydayRowChanged" msprop:Generator_TablePropName="Holyday" msprop:Generator_RowDeletingName="HolydayRowDeleting" msprop:Generator_RowChangingName="HolydayRowChanging" msprop:Generator_RowEvHandlerName="HolydayRowChangeEventHandler" msprop:Generator_RowDeletedName="HolydayRowDeleted" msprop:Generator_RowClassName="HolydayRow" msprop:Generator_UserTableName="Holyday" msprop:Generator_RowEvArgName="HolydayRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -864,7 +864,7 @@ WHERE (gcode = @gcode) AND (uid = @uid) AND (CONVERT(CHAR(10), sdate, 23) >=
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="vHoliday_uselist" msprop:Generator_TableClassName="vHoliday_uselistDataTable" msprop:Generator_TableVarName="tablevHoliday_uselist" msprop:Generator_TablePropName="vHoliday_uselist" msprop:Generator_RowDeletingName="vHoliday_uselistRowDeleting" msprop:Generator_RowChangingName="vHoliday_uselistRowChanging" msprop:Generator_RowEvHandlerName="vHoliday_uselistRowChangeEventHandler" msprop:Generator_RowDeletedName="vHoliday_uselistRowDeleted" msprop:Generator_UserTableName="vHoliday_uselist" msprop:Generator_RowChangedName="vHoliday_uselistRowChanged" msprop:Generator_RowEvArgName="vHoliday_uselistRowChangeEvent" msprop:Generator_RowClassName="vHoliday_uselistRow">
|
<xs:element name="vHoliday_uselist" msprop:Generator_TableClassName="vHoliday_uselistDataTable" msprop:Generator_TableVarName="tablevHoliday_uselist" msprop:Generator_RowChangedName="vHoliday_uselistRowChanged" msprop:Generator_TablePropName="vHoliday_uselist" msprop:Generator_RowDeletingName="vHoliday_uselistRowDeleting" msprop:Generator_RowChangingName="vHoliday_uselistRowChanging" msprop:Generator_RowEvHandlerName="vHoliday_uselistRowChangeEventHandler" msprop:Generator_RowDeletedName="vHoliday_uselistRowDeleted" msprop:Generator_RowClassName="vHoliday_uselistRow" msprop:Generator_UserTableName="vHoliday_uselist" msprop:Generator_RowEvArgName="vHoliday_uselistRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
@@ -909,7 +909,7 @@ WHERE (gcode = @gcode) AND (uid = @uid) AND (CONVERT(CHAR(10), sdate, 23) >=
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="WorkTableGrp" msprop:Generator_TableClassName="WorkTableGrpDataTable" msprop:Generator_TableVarName="tableWorkTableGrp" msprop:Generator_RowChangedName="WorkTableGrpRowChanged" msprop:Generator_TablePropName="WorkTableGrp" msprop:Generator_RowDeletingName="WorkTableGrpRowDeleting" msprop:Generator_RowChangingName="WorkTableGrpRowChanging" msprop:Generator_RowEvHandlerName="WorkTableGrpRowChangeEventHandler" msprop:Generator_RowDeletedName="WorkTableGrpRowDeleted" msprop:Generator_RowClassName="WorkTableGrpRow" msprop:Generator_UserTableName="WorkTableGrp" msprop:Generator_RowEvArgName="WorkTableGrpRowChangeEvent">
|
<xs:element name="WorkTableGrp" msprop:Generator_TableClassName="WorkTableGrpDataTable" msprop:Generator_TableVarName="tableWorkTableGrp" msprop:Generator_TablePropName="WorkTableGrp" msprop:Generator_RowDeletingName="WorkTableGrpRowDeleting" msprop:Generator_RowChangingName="WorkTableGrpRowChanging" msprop:Generator_RowEvHandlerName="WorkTableGrpRowChangeEventHandler" msprop:Generator_RowDeletedName="WorkTableGrpRowDeleted" msprop:Generator_UserTableName="WorkTableGrp" msprop:Generator_RowChangedName="WorkTableGrpRowChanged" msprop:Generator_RowEvArgName="WorkTableGrpRowChangeEvent" msprop:Generator_RowClassName="WorkTableGrpRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="grp" msprop:Generator_ColumnVarNameInTable="columngrp" msprop:Generator_ColumnPropNameInRow="grp" msprop:Generator_ColumnPropNameInTable="grpColumn" msprop:Generator_UserColumnName="grp">
|
<xs:element name="grp" msprop:Generator_ColumnVarNameInTable="columngrp" msprop:Generator_ColumnPropNameInRow="grp" msprop:Generator_ColumnPropNameInTable="grpColumn" msprop:Generator_UserColumnName="grp">
|
||||||
@@ -922,7 +922,7 @@ WHERE (gcode = @gcode) AND (uid = @uid) AND (CONVERT(CHAR(10), sdate, 23) >=
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="EETGW_WorkTableUser" msprop:Generator_TableClassName="EETGW_WorkTableUserDataTable" msprop:Generator_TableVarName="tableEETGW_WorkTableUser" msprop:Generator_RowChangedName="EETGW_WorkTableUserRowChanged" msprop:Generator_TablePropName="EETGW_WorkTableUser" msprop:Generator_RowDeletingName="EETGW_WorkTableUserRowDeleting" msprop:Generator_RowChangingName="EETGW_WorkTableUserRowChanging" msprop:Generator_RowEvHandlerName="EETGW_WorkTableUserRowChangeEventHandler" msprop:Generator_RowDeletedName="EETGW_WorkTableUserRowDeleted" msprop:Generator_RowClassName="EETGW_WorkTableUserRow" msprop:Generator_UserTableName="EETGW_WorkTableUser" msprop:Generator_RowEvArgName="EETGW_WorkTableUserRowChangeEvent">
|
<xs:element name="EETGW_WorkTableUser" msprop:Generator_TableClassName="EETGW_WorkTableUserDataTable" msprop:Generator_TableVarName="tableEETGW_WorkTableUser" msprop:Generator_TablePropName="EETGW_WorkTableUser" msprop:Generator_RowDeletingName="EETGW_WorkTableUserRowDeleting" msprop:Generator_RowChangingName="EETGW_WorkTableUserRowChanging" msprop:Generator_RowEvHandlerName="EETGW_WorkTableUserRowChangeEventHandler" msprop:Generator_RowDeletedName="EETGW_WorkTableUserRowDeleted" msprop:Generator_UserTableName="EETGW_WorkTableUser" msprop:Generator_RowChangedName="EETGW_WorkTableUserRowChanged" msprop:Generator_RowEvArgName="EETGW_WorkTableUserRowChangeEvent" msprop:Generator_RowClassName="EETGW_WorkTableUserRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
|
|||||||
@@ -405,7 +405,7 @@ namespace FCOMMON
|
|||||||
retval.idx = -1;
|
retval.idx = -1;
|
||||||
|
|
||||||
string sql = "select [id],[name],([name] +'(' +[id] +')') as dispName,[dept],[email],[level],[tel] " +
|
string sql = "select [id],[name],([name] +'(' +[id] +')') as dispName,[dept],[email],[level],[tel] " +
|
||||||
" from Users " +
|
" from vGroupUser " +
|
||||||
" where gcode='" + FCOMMON.info.Login.gcode + "' and [id] <> 'dev' and dept like '%" + FCOMMON.info.Login.dept.Replace("'", "''") + "%' order by [name]";
|
" where gcode='" + FCOMMON.info.Login.gcode + "' and [id] <> 'dev' and dept like '%" + FCOMMON.info.Login.dept.Replace("'", "''") + "%' order by [name]";
|
||||||
var cmd = new SqlCommand(sql, cn);
|
var cmd = new SqlCommand(sql, cn);
|
||||||
var da = new SqlDataAdapter(sql, cn);
|
var da = new SqlDataAdapter(sql, cn);
|
||||||
@@ -695,7 +695,7 @@ namespace FCOMMON
|
|||||||
|
|
||||||
var cn = getCn();
|
var cn = getCn();
|
||||||
cn.Open();
|
cn.Open();
|
||||||
var sql = "select idx,isnull(name,''),pdate from Projects" +
|
var sql = "select idx, '[' + cast(idx as varchar) + '] ' + isnull(name,''),pdate from Projects" +
|
||||||
" where gcode='{0}'" +
|
" where gcode='{0}'" +
|
||||||
" and (isnull(userManager,'') like '%{1}%'" +
|
" and (isnull(userManager,'') like '%{1}%'" +
|
||||||
" or isnull(userMain,'') like '%{1}%'" +
|
" or isnull(userMain,'') like '%{1}%'" +
|
||||||
@@ -716,7 +716,7 @@ namespace FCOMMON
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static System.Data.DataTable getCodeTable(string GroupCode = "99")
|
public static System.Data.DataTable getCodeTable(string GroupCode = "99",string sort="memo")
|
||||||
{
|
{
|
||||||
|
|
||||||
System.Data.DataTable retval = new System.Data.DataTable();
|
System.Data.DataTable retval = new System.Data.DataTable();
|
||||||
@@ -730,7 +730,7 @@ namespace FCOMMON
|
|||||||
" from common" +
|
" from common" +
|
||||||
" where gcode='" + FCOMMON.info.Login.gcode + "' and grp = '" + GroupCode + "'" +
|
" where gcode='" + FCOMMON.info.Login.gcode + "' and grp = '" + GroupCode + "'" +
|
||||||
" and isnull(code,'') <> ''" +
|
" and isnull(code,'') <> ''" +
|
||||||
" order by isnull(memo,'')";
|
" order by isnull("+ sort + ",'')";
|
||||||
var cmd = new SqlCommand(sql, cn);
|
var cmd = new SqlCommand(sql, cn);
|
||||||
var rdr = cmd.ExecuteReader();
|
var rdr = cmd.ExecuteReader();
|
||||||
while (rdr.Read())
|
while (rdr.Read())
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ namespace FCOMMON
|
|||||||
public static string libxlCompany = "Amkor Technology korea, Inc";
|
public static string libxlCompany = "Amkor Technology korea, Inc";
|
||||||
public static string libxlKey = "windows-282b2b0800c5e0016bb06a6fafjfd6o8";
|
public static string libxlKey = "windows-282b2b0800c5e0016bb06a6fafjfd6o8";
|
||||||
public static int camIndex = 0;
|
public static int camIndex = 0;
|
||||||
public static string ftp_ip = "10.131.36.57";
|
public static string serverip = "10.131.32.29";
|
||||||
public static string ftp_id = "project";
|
public static string ftp_id = "project";
|
||||||
public static string ftp_pw = "Amkor1234";
|
public static string ftp_pw = "Amkor1234";
|
||||||
public static int ftp_port = 2121;
|
public static int ftp_port = 2121;
|
||||||
|
|||||||
@@ -140,6 +140,12 @@
|
|||||||
<Compile Include="EETGW_SaveCost.cs">
|
<Compile Include="EETGW_SaveCost.cs">
|
||||||
<DependentUpon>Model1.tt</DependentUpon>
|
<DependentUpon>Model1.tt</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="fHistAddDay.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="fHistAddDay.Designer.cs">
|
||||||
|
<DependentUpon>fHistAddDay.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="fHistAdd.cs">
|
<Compile Include="fHistAdd.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -200,6 +206,18 @@
|
|||||||
<Compile Include="Note\fNote.Designer.cs">
|
<Compile Include="Note\fNote.Designer.cs">
|
||||||
<DependentUpon>fNote.cs</DependentUpon>
|
<DependentUpon>fNote.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Project\fPartBuyStatus.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Project\fPartBuyStatus.Designer.cs">
|
||||||
|
<DependentUpon>fPartBuyStatus.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Project\fProjectPartListEdit.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Project\fProjectPartListEdit.Designer.cs">
|
||||||
|
<DependentUpon>fProjectPartListEdit.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="SaveCost\fSaveCostData.cs">
|
<Compile Include="SaveCost\fSaveCostData.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -366,6 +384,9 @@
|
|||||||
<Compile Include="vUserWorkTimeList.cs">
|
<Compile Include="vUserWorkTimeList.cs">
|
||||||
<DependentUpon>Model1.tt</DependentUpon>
|
<DependentUpon>Model1.tt</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<EmbeddedResource Include="fHistAddDay.resx">
|
||||||
|
<DependentUpon>fHistAddDay.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="fHistAdd.resx">
|
<EmbeddedResource Include="fHistAdd.resx">
|
||||||
<DependentUpon>fHistAdd.cs</DependentUpon>
|
<DependentUpon>fHistAdd.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
@@ -388,6 +409,12 @@
|
|||||||
<EmbeddedResource Include="Note\fNote.resx">
|
<EmbeddedResource Include="Note\fNote.resx">
|
||||||
<DependentUpon>fNote.cs</DependentUpon>
|
<DependentUpon>fNote.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Project\fPartBuyStatus.resx">
|
||||||
|
<DependentUpon>fPartBuyStatus.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Project\fProjectPartListEdit.resx">
|
||||||
|
<DependentUpon>fProjectPartListEdit.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="SaveCost\fSaveCostData.resx">
|
<EmbeddedResource Include="SaveCost\fSaveCostData.resx">
|
||||||
<DependentUpon>fSaveCostData.cs</DependentUpon>
|
<DependentUpon>fSaveCostData.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
308
SubProject/FPJ0000/JobReport/fJobReport.Designer.cs
generated
308
SubProject/FPJ0000/JobReport/fJobReport.Designer.cs
generated
@@ -30,20 +30,20 @@
|
|||||||
{
|
{
|
||||||
this.components = new System.ComponentModel.Container();
|
this.components = new System.ComponentModel.Container();
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fJobReport));
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fJobReport));
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType12 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType34 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType13 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType35 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType14 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType36 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType15 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType37 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType16 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType38 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType17 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType39 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType18 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType40 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType19 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType41 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType20 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType42 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.NumberCellType numberCellType4 = new FarPoint.Win.Spread.CellType.NumberCellType();
|
FarPoint.Win.Spread.CellType.NumberCellType numberCellType10 = new FarPoint.Win.Spread.CellType.NumberCellType();
|
||||||
FarPoint.Win.Spread.CellType.NumberCellType numberCellType5 = new FarPoint.Win.Spread.CellType.NumberCellType();
|
FarPoint.Win.Spread.CellType.NumberCellType numberCellType11 = new FarPoint.Win.Spread.CellType.NumberCellType();
|
||||||
FarPoint.Win.Spread.CellType.NumberCellType numberCellType6 = new FarPoint.Win.Spread.CellType.NumberCellType();
|
FarPoint.Win.Spread.CellType.NumberCellType numberCellType12 = new FarPoint.Win.Spread.CellType.NumberCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType21 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType43 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
FarPoint.Win.Spread.CellType.TextCellType textCellType22 = new FarPoint.Win.Spread.CellType.TextCellType();
|
FarPoint.Win.Spread.CellType.TextCellType textCellType44 = new FarPoint.Win.Spread.CellType.TextCellType();
|
||||||
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
|
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
|
||||||
this.bs = new System.Windows.Forms.BindingSource(this.components);
|
this.bs = new System.Windows.Forms.BindingSource(this.components);
|
||||||
this.dsMSSQL = new FPJ0000.dsPRJ();
|
this.dsMSSQL = new FPJ0000.dsPRJ();
|
||||||
@@ -87,6 +87,7 @@
|
|||||||
this.tam = new FPJ0000.dsPRJTableAdapters.TableAdapterManager();
|
this.tam = new FPJ0000.dsPRJTableAdapters.TableAdapterManager();
|
||||||
this.ta = new FPJ0000.dsPRJTableAdapters.JobReportTableAdapter();
|
this.ta = new FPJ0000.dsPRJTableAdapters.JobReportTableAdapter();
|
||||||
this.fpSpread1 = new FarPoint.Win.Spread.FpSpread();
|
this.fpSpread1 = new FarPoint.Win.Spread.FpSpread();
|
||||||
|
this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
|
||||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||||
this.lbStt = new System.Windows.Forms.ToolStripLabel();
|
this.lbStt = new System.Windows.Forms.ToolStripLabel();
|
||||||
this.dtSD = new System.Windows.Forms.ToolStripTextBox();
|
this.dtSD = new System.Windows.Forms.ToolStripTextBox();
|
||||||
@@ -98,19 +99,19 @@
|
|||||||
this.cmbProcess = new System.Windows.Forms.ToolStripComboBox();
|
this.cmbProcess = new System.Windows.Forms.ToolStripComboBox();
|
||||||
this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
|
this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
|
||||||
this.cmbUser = new System.Windows.Forms.ToolStripComboBox();
|
this.cmbUser = new System.Windows.Forms.ToolStripComboBox();
|
||||||
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
|
||||||
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
||||||
this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
|
|
||||||
this.btSearch = new System.Windows.Forms.ToolStripSplitButton();
|
this.btSearch = new System.Windows.Forms.ToolStripSplitButton();
|
||||||
this.태그자료만조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.태그자료만조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||||
|
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
||||||
|
this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit();
|
||||||
this.bn.SuspendLayout();
|
this.bn.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit();
|
||||||
this.cm.SuspendLayout();
|
this.cm.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
|
||||||
this.toolStrip1.SuspendLayout();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
|
||||||
|
this.toolStrip1.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// bn
|
// bn
|
||||||
@@ -467,7 +468,9 @@
|
|||||||
//
|
//
|
||||||
this.tam.BackupDataSetBeforeUpdate = false;
|
this.tam.BackupDataSetBeforeUpdate = false;
|
||||||
this.tam.EETGW_NoteTableAdapter = null;
|
this.tam.EETGW_NoteTableAdapter = null;
|
||||||
|
this.tam.EETGW_SaveCostTableAdapter = null;
|
||||||
this.tam.JobReportTableAdapter = this.ta;
|
this.tam.JobReportTableAdapter = this.ta;
|
||||||
|
this.tam.ProjectPartStatusTableAdapter = null;
|
||||||
this.tam.ProjectsHistoryTableAdapter = null;
|
this.tam.ProjectsHistoryTableAdapter = null;
|
||||||
this.tam.ProjectsIOMapTableAdapter = null;
|
this.tam.ProjectsIOMapTableAdapter = null;
|
||||||
this.tam.ProjectsMailListTableAdapter = null;
|
this.tam.ProjectsMailListTableAdapter = null;
|
||||||
@@ -496,6 +499,115 @@
|
|||||||
this.fpSpread1.StatusBarVisible = true;
|
this.fpSpread1.StatusBarVisible = true;
|
||||||
this.fpSpread1.TabIndex = 2;
|
this.fpSpread1.TabIndex = 2;
|
||||||
//
|
//
|
||||||
|
// fpSpread1_Sheet1
|
||||||
|
//
|
||||||
|
this.fpSpread1_Sheet1.Reset();
|
||||||
|
this.fpSpread1_Sheet1.SheetName = "Sheet1";
|
||||||
|
// Formulas and custom names must be loaded with R1C1 reference style
|
||||||
|
this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
|
||||||
|
this.fpSpread1_Sheet1.ColumnCount = 14;
|
||||||
|
this.fpSpread1_Sheet1.ActiveColumnIndex = -1;
|
||||||
|
this.fpSpread1_Sheet1.ActiveRowIndex = -1;
|
||||||
|
this.fpSpread1_Sheet1.AutoGenerateColumns = false;
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "날짜";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "WW";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "담당";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "요청부서";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "패키지";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "상태";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "업무형태";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "업무분류";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Value = "프로젝트(아이템)";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Value = "*";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).Value = "시간";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).Value = "초과";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 12).Value = "비고";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 13).Value = "#";
|
||||||
|
this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height = 28F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(0).CellType = textCellType34;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(0).DataField = "pdate";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(0).Label = "날짜";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(0).Width = 58F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(1).CellType = textCellType35;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(1).DataField = "ww";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(1).Label = "WW";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(2).CellType = textCellType36;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(2).DataField = "username";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(2).Label = "담당";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(3).AllowAutoFilter = true;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(3).CellType = textCellType37;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(3).DataField = "requestpart";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(3).Label = "요청부서";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(3).Width = 78F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(4).AllowAutoFilter = true;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(4).CellType = textCellType38;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(4).DataField = "package";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(4).Label = "패키지";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(4).Width = 86F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(5).CellType = textCellType39;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(5).DataField = "status";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(5).Label = "상태";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(6).AllowAutoFilter = true;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(6).CellType = textCellType40;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(6).DataField = "type";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(6).Label = "업무형태";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(6).Width = 84F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).AllowAutoFilter = true;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).CellType = textCellType41;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).DataField = "process";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).Label = "업무분류";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(7).Width = 80F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(8).AllowAutoFilter = true;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(8).CellType = textCellType42;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(8).DataField = "projectName";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(8).Label = "프로젝트(아이템)";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(8).Width = 158F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||||
|
numberCellType10.DecimalPlaces = 0;
|
||||||
|
numberCellType10.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.Yes;
|
||||||
|
numberCellType10.MaximumValue = 2147483647D;
|
||||||
|
numberCellType10.MinimumValue = -2147483648D;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(9).CellType = numberCellType10;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(9).DataField = "pidx";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(9).Label = "*";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(9).Tag = "pidx";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(9).Width = 39F;
|
||||||
|
numberCellType11.MaximumValue = 999999999999999D;
|
||||||
|
numberCellType11.MinimumValue = -999999999999999D;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(10).CellType = numberCellType11;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(10).DataField = "hrs";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(10).Label = "시간";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(10).Width = 52F;
|
||||||
|
numberCellType12.MaximumValue = 999999999999999D;
|
||||||
|
numberCellType12.MinimumValue = -999999999999999D;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(11).CellType = numberCellType12;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(11).DataField = "ot";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(11).ForeColor = System.Drawing.Color.Red;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(11).Label = "초과";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(11).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(12).CellType = textCellType43;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(12).DataField = "description";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(12).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(12).Label = "비고";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(12).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(12).Width = 113F;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(13).CellType = textCellType44;
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(13).DataField = "tag";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(13).Label = "#";
|
||||||
|
this.fpSpread1_Sheet1.Columns.Get(13).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
||||||
|
this.fpSpread1_Sheet1.DataAutoSizeColumns = false;
|
||||||
|
this.fpSpread1_Sheet1.DataSource = this.bs;
|
||||||
|
this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
|
||||||
|
this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
|
||||||
|
//
|
||||||
// toolStrip1
|
// toolStrip1
|
||||||
//
|
//
|
||||||
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(30, 30);
|
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(30, 30);
|
||||||
@@ -503,6 +615,7 @@
|
|||||||
this.lbStt,
|
this.lbStt,
|
||||||
this.dtSD,
|
this.dtSD,
|
||||||
this.lbEnd,
|
this.lbEnd,
|
||||||
|
this.toolStripLabel4,
|
||||||
this.dtED,
|
this.dtED,
|
||||||
this.lbTime,
|
this.lbTime,
|
||||||
this.toolStripSeparator2,
|
this.toolStripSeparator2,
|
||||||
@@ -523,8 +636,8 @@
|
|||||||
this.lbStt.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
this.lbStt.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||||
this.lbStt.ForeColor = System.Drawing.Color.Blue;
|
this.lbStt.ForeColor = System.Drawing.Color.Blue;
|
||||||
this.lbStt.Name = "lbStt";
|
this.lbStt.Name = "lbStt";
|
||||||
this.lbStt.Size = new System.Drawing.Size(31, 34);
|
this.lbStt.Size = new System.Drawing.Size(43, 34);
|
||||||
this.lbStt.Text = "기간";
|
this.lbStt.Text = "시작일";
|
||||||
this.lbStt.Click += new System.EventHandler(this.lbStt_Click);
|
this.lbStt.Click += new System.EventHandler(this.lbStt_Click);
|
||||||
//
|
//
|
||||||
// dtSD
|
// dtSD
|
||||||
@@ -591,6 +704,25 @@
|
|||||||
this.cmbUser.SelectedIndexChanged += new System.EventHandler(this.cmbUser_SelectedIndexChanged);
|
this.cmbUser.SelectedIndexChanged += new System.EventHandler(this.cmbUser_SelectedIndexChanged);
|
||||||
this.cmbUser.Click += new System.EventHandler(this.cmbUser_Click);
|
this.cmbUser.Click += new System.EventHandler(this.cmbUser_Click);
|
||||||
//
|
//
|
||||||
|
// btSearch
|
||||||
|
//
|
||||||
|
this.btSearch.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.태그자료만조회ToolStripMenuItem});
|
||||||
|
this.btSearch.Image = ((System.Drawing.Image)(resources.GetObject("btSearch.Image")));
|
||||||
|
this.btSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||||
|
this.btSearch.Name = "btSearch";
|
||||||
|
this.btSearch.Size = new System.Drawing.Size(92, 34);
|
||||||
|
this.btSearch.Text = "조회(&R)";
|
||||||
|
this.btSearch.ButtonClick += new System.EventHandler(this.btSearch_ButtonClick);
|
||||||
|
this.btSearch.Click += new System.EventHandler(this.btSearch_Click);
|
||||||
|
//
|
||||||
|
// 태그자료만조회ToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.태그자료만조회ToolStripMenuItem.Name = "태그자료만조회ToolStripMenuItem";
|
||||||
|
this.태그자료만조회ToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
|
||||||
|
this.태그자료만조회ToolStripMenuItem.Text = "태그자료만 조회";
|
||||||
|
this.태그자료만조회ToolStripMenuItem.Click += new System.EventHandler(this.태그자료만조회ToolStripMenuItem_Click);
|
||||||
|
//
|
||||||
// toolStripButton2
|
// toolStripButton2
|
||||||
//
|
//
|
||||||
this.toolStripButton2.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
|
this.toolStripButton2.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
|
||||||
@@ -613,133 +745,14 @@
|
|||||||
this.richTextBox1.TabIndex = 5;
|
this.richTextBox1.TabIndex = 5;
|
||||||
this.richTextBox1.Text = "";
|
this.richTextBox1.Text = "";
|
||||||
//
|
//
|
||||||
// fpSpread1_Sheet1
|
// toolStripLabel4
|
||||||
//
|
//
|
||||||
this.fpSpread1_Sheet1.Reset();
|
this.toolStripLabel4.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||||
this.fpSpread1_Sheet1.SheetName = "Sheet1";
|
this.toolStripLabel4.ForeColor = System.Drawing.Color.Blue;
|
||||||
// Formulas and custom names must be loaded with R1C1 reference style
|
this.toolStripLabel4.Name = "toolStripLabel4";
|
||||||
this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
|
this.toolStripLabel4.Size = new System.Drawing.Size(43, 34);
|
||||||
this.fpSpread1_Sheet1.ColumnCount = 14;
|
this.toolStripLabel4.Text = "종료일";
|
||||||
this.fpSpread1_Sheet1.ActiveColumnIndex = -1;
|
this.toolStripLabel4.Click += new System.EventHandler(this.toolStripLabel4_Click);
|
||||||
this.fpSpread1_Sheet1.ActiveRowIndex = -1;
|
|
||||||
this.fpSpread1_Sheet1.AutoGenerateColumns = false;
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "날짜";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "WW";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "담당";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "요청부서";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "패키지";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "상태";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "업무형태";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "업무분류";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Value = "프로젝트(아이템)";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Value = "*";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).Value = "시간";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).Value = "초과";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 12).Value = "비고";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 13).Value = "#";
|
|
||||||
this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height = 28F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(0).CellType = textCellType12;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(0).DataField = "pdate";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(0).Label = "날짜";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(0).Width = 58F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(1).CellType = textCellType13;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(1).DataField = "ww";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(1).Label = "WW";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(2).CellType = textCellType14;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(2).DataField = "username";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(2).Label = "담당";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(3).AllowAutoFilter = true;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(3).CellType = textCellType15;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(3).DataField = "requestpart";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(3).Label = "요청부서";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(3).Width = 78F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(4).AllowAutoFilter = true;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(4).CellType = textCellType16;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(4).DataField = "package";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(4).Label = "패키지";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(4).Width = 86F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(5).CellType = textCellType17;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(5).DataField = "status";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(5).Label = "상태";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(6).AllowAutoFilter = true;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(6).CellType = textCellType18;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(6).DataField = "type";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(6).Label = "업무형태";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(6).Width = 84F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).AllowAutoFilter = true;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).CellType = textCellType19;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).DataField = "process";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).Label = "업무분류";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(7).Width = 80F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(8).AllowAutoFilter = true;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(8).CellType = textCellType20;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(8).DataField = "projectName";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(8).Label = "프로젝트(아이템)";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(8).Width = 158F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
|
||||||
numberCellType4.DecimalPlaces = 0;
|
|
||||||
numberCellType4.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.Yes;
|
|
||||||
numberCellType4.MaximumValue = 2147483647D;
|
|
||||||
numberCellType4.MinimumValue = -2147483648D;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(9).CellType = numberCellType4;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(9).DataField = "pidx";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(9).Label = "*";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(9).Tag = "pidx";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(9).Width = 39F;
|
|
||||||
numberCellType5.MaximumValue = 999999999999999D;
|
|
||||||
numberCellType5.MinimumValue = -999999999999999D;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(10).CellType = numberCellType5;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(10).DataField = "hrs";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(10).Label = "시간";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(10).Width = 52F;
|
|
||||||
numberCellType6.MaximumValue = 999999999999999D;
|
|
||||||
numberCellType6.MinimumValue = -999999999999999D;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(11).CellType = numberCellType6;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(11).DataField = "ot";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(11).ForeColor = System.Drawing.Color.Red;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(11).Label = "초과";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(11).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(12).CellType = textCellType21;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(12).DataField = "description";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(12).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(12).Label = "비고";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(12).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(12).Width = 113F;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(13).CellType = textCellType22;
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(13).DataField = "tag";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(13).Label = "#";
|
|
||||||
this.fpSpread1_Sheet1.Columns.Get(13).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
|
|
||||||
this.fpSpread1_Sheet1.DataAutoSizeColumns = false;
|
|
||||||
this.fpSpread1_Sheet1.DataSource = this.bs;
|
|
||||||
this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
|
|
||||||
this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
|
|
||||||
//
|
|
||||||
// btSearch
|
|
||||||
//
|
|
||||||
this.btSearch.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
||||||
this.태그자료만조회ToolStripMenuItem});
|
|
||||||
this.btSearch.Image = ((System.Drawing.Image)(resources.GetObject("btSearch.Image")));
|
|
||||||
this.btSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
||||||
this.btSearch.Name = "btSearch";
|
|
||||||
this.btSearch.Size = new System.Drawing.Size(92, 34);
|
|
||||||
this.btSearch.Text = "조회(&R)";
|
|
||||||
this.btSearch.ButtonClick += new System.EventHandler(this.btSearch_ButtonClick);
|
|
||||||
this.btSearch.Click += new System.EventHandler(this.btSearch_Click);
|
|
||||||
//
|
|
||||||
// 태그자료만조회ToolStripMenuItem
|
|
||||||
//
|
|
||||||
this.태그자료만조회ToolStripMenuItem.Name = "태그자료만조회ToolStripMenuItem";
|
|
||||||
this.태그자료만조회ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
||||||
this.태그자료만조회ToolStripMenuItem.Text = "태그자료만 조회";
|
|
||||||
this.태그자료만조회ToolStripMenuItem.Click += new System.EventHandler(this.태그자료만조회ToolStripMenuItem_Click);
|
|
||||||
//
|
//
|
||||||
// fJobReport
|
// fJobReport
|
||||||
//
|
//
|
||||||
@@ -761,9 +774,9 @@
|
|||||||
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit();
|
||||||
this.cm.ResumeLayout(false);
|
this.cm.ResumeLayout(false);
|
||||||
((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
|
||||||
this.toolStrip1.ResumeLayout(false);
|
this.toolStrip1.ResumeLayout(false);
|
||||||
this.toolStrip1.PerformLayout();
|
this.toolStrip1.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
|
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
this.PerformLayout();
|
this.PerformLayout();
|
||||||
|
|
||||||
@@ -830,5 +843,6 @@
|
|||||||
private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1;
|
private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1;
|
||||||
private System.Windows.Forms.ToolStripSplitButton btSearch;
|
private System.Windows.Forms.ToolStripSplitButton btSearch;
|
||||||
private System.Windows.Forms.ToolStripMenuItem 태그자료만조회ToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem 태그자료만조회ToolStripMenuItem;
|
||||||
|
private System.Windows.Forms.ToolStripLabel toolStripLabel4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -504,11 +504,14 @@ namespace FPJ0000
|
|||||||
}
|
}
|
||||||
private void lbStt_Click(object sender, EventArgs e)
|
private void lbStt_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
var f = new FCOMMON.fSelectMonth();
|
var f = new FCOMMON.fSelectDay(DateTime.Parse(dtSD.Text));
|
||||||
if (f.ShowDialog() != System.Windows.Forms.DialogResult.OK) return;
|
if (f.ShowDialog() != System.Windows.Forms.DialogResult.OK) return;
|
||||||
var sdDate = DateTime.Parse(DateTime.Now.ToString("yyyy-") + f.selectmon.ToString() + "-01");
|
var sdDate = f.dtPick.SelectionStart;// DateTime.Parse(DateTime.Now.ToString("yyyy-") + f.selectmon.ToString() + "-01");
|
||||||
dtSD.Text = sdDate.ToShortDateString();
|
dtSD.Text = sdDate.ToShortDateString();
|
||||||
|
if (f.dtPick.SelectionStart.ToShortDateString() == f.dtPick.SelectionEnd.ToShortDateString())
|
||||||
dtED.Text = sdDate.AddMonths(1).AddDays(-1).ToShortDateString();
|
dtED.Text = sdDate.AddMonths(1).AddDays(-1).ToShortDateString();
|
||||||
|
else
|
||||||
|
dtED.Text = f.dtPick.SelectionEnd.ToShortDateString();
|
||||||
refreshData();
|
refreshData();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -578,5 +581,12 @@ namespace FPJ0000
|
|||||||
{
|
{
|
||||||
refreshData(true);
|
refreshData(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void toolStripLabel4_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var f = new FCOMMON.fSelectDay(DateTime.Parse(dtED.Text));
|
||||||
|
if (f.ShowDialog() != System.Windows.Forms.DialogResult.OK) return;
|
||||||
|
dtED.Text = f.dtPick.SelectionStart.ToShortDateString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ namespace FPJ0000.JobReport
|
|||||||
//search data
|
//search data
|
||||||
// var dt = this.ta.GetSearch(this.keyword);
|
// var dt = this.ta.GetSearch(this.keyword);
|
||||||
this.taPrj.FillSearch(this.dsMSSQL.Projects,this.keyword,FCOMMON.info.Login.gcode);
|
this.taPrj.FillSearch(this.dsMSSQL.Projects,this.keyword,FCOMMON.info.Login.gcode);
|
||||||
this.taJob.FillSearch(this.dsQuery.JobReportItemList, this.keyword);
|
this.taJob.FillSearch(this.dsQuery.JobReportItemList, this.keyword, FCOMMON.info.Login.gcode);
|
||||||
|
|
||||||
this.Show();
|
this.Show();
|
||||||
Application.DoEvents();
|
Application.DoEvents();
|
||||||
|
|||||||
1140
SubProject/FPJ0000/Project/fPartBuyStatus.Designer.cs
generated
Normal file
1140
SubProject/FPJ0000/Project/fPartBuyStatus.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
808
SubProject/FPJ0000/Project/fPartBuyStatus.cs
Normal file
808
SubProject/FPJ0000/Project/fPartBuyStatus.cs
Normal file
@@ -0,0 +1,808 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
using util = FCOMMON.Util;
|
||||||
|
|
||||||
|
namespace FPJ0000
|
||||||
|
{
|
||||||
|
public partial class fPartBuyStatus : FCOMMON.fBase
|
||||||
|
{
|
||||||
|
string fn_fpcolsize = "";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int colidx_itemname = -1;
|
||||||
|
int colidx_item = -1;
|
||||||
|
int colidx_qty = -1;
|
||||||
|
int colidx_amt = -1;
|
||||||
|
int colidx_price = -1;
|
||||||
|
int colidx_model = -1;
|
||||||
|
int colidx_supply = -1;
|
||||||
|
int colidx_supplyidx = -1;
|
||||||
|
int colidx_sid = -1;
|
||||||
|
int colidx_manu = -1;
|
||||||
|
int colidx_unit = -1;
|
||||||
|
|
||||||
|
|
||||||
|
public fPartBuyStatus()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
|
||||||
|
fn_fpcolsize = System.IO.Path.Combine(
|
||||||
|
AppDomain.CurrentDomain.BaseDirectory,
|
||||||
|
"formSetting",
|
||||||
|
"fp_" + this.Name + ".ini");
|
||||||
|
|
||||||
|
this.FormClosed += fPartList_FormClosed;
|
||||||
|
this.FormClosing += FPartList_FormClosing;
|
||||||
|
this.KeyDown += fPartList_KeyDown;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void FPartList_FormClosing(object sender, FormClosingEventArgs e)
|
||||||
|
{
|
||||||
|
var dt = this.dsPRJ.ProjectsPart.GetChanges();
|
||||||
|
if (dt != null && dt.Rows.Count > 0)
|
||||||
|
{
|
||||||
|
var dlg = FCOMMON.Util.MsgQ("변경된 자료가 있습니다.\n화면을 닫으면 손실됩니다.\n화면을 닫을까요?");
|
||||||
|
if (dlg != DialogResult.Yes)
|
||||||
|
{
|
||||||
|
e.Cancel = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void fPartList_KeyDown(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.KeyCode == Keys.Escape) this.Close();
|
||||||
|
else if (e.KeyCode == Keys.F5) searchpmp();
|
||||||
|
}
|
||||||
|
|
||||||
|
void fPartList_FormClosed(object sender, FormClosedEventArgs e)
|
||||||
|
{
|
||||||
|
this.FormClosed -= fPartList_FormClosed;
|
||||||
|
this.KeyDown -= fPartList_KeyDown;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void fPartList_Load(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
//열번호찾기
|
||||||
|
foreach (FarPoint.Win.Spread.Column col in this.fpSpread1.ActiveSheet.Columns)
|
||||||
|
{
|
||||||
|
string colname = col.DataField.ToLower();
|
||||||
|
if (colname == "itemmodel") colidx_model = col.Index;
|
||||||
|
else if (colname == "itemname") colidx_itemname = col.Index;
|
||||||
|
else if (colname == "item") colidx_item = col.Index;
|
||||||
|
else if (colname == "qty") colidx_qty = col.Index;
|
||||||
|
else if (colname == "price") colidx_price = col.Index;
|
||||||
|
else if (colname == "amt") colidx_amt = col.Index;
|
||||||
|
else if (colname == "itemsupplyidx") colidx_supplyidx = col.Index;
|
||||||
|
else if (colname == "itemsupply") colidx_supply = col.Index;
|
||||||
|
else if (colname == "itemsid") colidx_sid = col.Index;
|
||||||
|
else if (colname == "itemmanu") colidx_manu = col.Index;
|
||||||
|
else if (colname == "itemunit") colidx_unit = col.Index;
|
||||||
|
}
|
||||||
|
this.Show();
|
||||||
|
this.bsPart.Sort = "bbuy,ItemSupply,qtyin";
|
||||||
|
Application.DoEvents();
|
||||||
|
RefreshData();
|
||||||
|
}
|
||||||
|
|
||||||
|
string sortkey = string.Empty;
|
||||||
|
void RefreshData()
|
||||||
|
{
|
||||||
|
if (dsPRJ.HasChanges())
|
||||||
|
{
|
||||||
|
var dlg = FCOMMON.Util.MsgQ("변경 사항이 있습니다. 갱신하면 변경 내용이 손실 됩니다.\n지금 갱신 하겠습니까?");
|
||||||
|
if (dlg != System.Windows.Forms.DialogResult.Yes) return;
|
||||||
|
}
|
||||||
|
//if (button3.BackColor != Color.Gold) bsPart.Filter = "status not like '완료%'";
|
||||||
|
//else bsPart.Filter = "";
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
this.taPart.Fill(this.dsPRJ.ProjectPartStatus, FCOMMON.info.Login.gcode);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
FCOMMON.Util.MsgE(ex.Message);
|
||||||
|
}
|
||||||
|
|
||||||
|
//로딩후에 sid 와 suuply 를 조회해준다.
|
||||||
|
//foreach (dsPRJ.ProjectsPartRow dr in this.dsPRJ.ProjectsPart.Rows)
|
||||||
|
//{
|
||||||
|
// if (dr.IsItemNull() || dr.Item < 0) continue;
|
||||||
|
// var iteminfo = FCOMMON.DBM.getItemInfo(dr.Item);
|
||||||
|
// if (iteminfo.idx != -1)
|
||||||
|
// {
|
||||||
|
// dr.SID = iteminfo.sid;
|
||||||
|
// //dr.Supply = iteminfo.supply;
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
//this.dsPRJ.AcceptChanges();
|
||||||
|
RefreshSum();
|
||||||
|
FPUtil.ColSizeLoad(ref this.fpSpread1, fn_fpcolsize);
|
||||||
|
FormattingData();
|
||||||
|
}
|
||||||
|
void FormattingData()
|
||||||
|
{
|
||||||
|
//삭제컬럼인덱스
|
||||||
|
this.fpSpread1.SuspendLayout();
|
||||||
|
var col_sid = this.fpSpread1.ActiveSheet.Columns["sid"].Index;
|
||||||
|
//var col_pmp = this.fpSpread1.ActiveSheet.Columns["pmp"].Index;
|
||||||
|
var col_buy = this.fpSpread1.ActiveSheet.Columns["buy"].Index; //구매수량
|
||||||
|
var col_amt = this.fpSpread1.ActiveSheet.Columns["amt"].Index;
|
||||||
|
var col_amtn = this.fpSpread1.ActiveSheet.Columns["amtn"].Index;
|
||||||
|
var col_qtyin = this.fpSpread1.ActiveSheet.Columns["qtyin"].Index;
|
||||||
|
var col_qtyn = this.fpSpread1.ActiveSheet.Columns["qtyn"].Index; //N대수량(전체수량)
|
||||||
|
var col_bbuy = this.fpSpread1.ActiveSheet.Columns["bbuy"].Index;
|
||||||
|
var col_supply = this.fpSpread1.ActiveSheet.Columns["supply"].Index;
|
||||||
|
// var col_bconf = this.fpSpread1.ActiveSheet.Columns["bconfirm"].Index;
|
||||||
|
|
||||||
|
var PO발행 = 0;
|
||||||
|
var PO발행전체 = 0;
|
||||||
|
var 전체건수 = 0;
|
||||||
|
var 비구매건수 = 0;
|
||||||
|
var 구매진행건수 = 0;
|
||||||
|
var 구매완료건수 = 0;
|
||||||
|
var 구매등록건수 = 0;
|
||||||
|
//var 검토완료건수 = 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < this.fpSpread1.ActiveSheet.Rows.Count; i++)
|
||||||
|
{
|
||||||
|
var row = this.fpSpread1.ActiveSheet.Rows[i];
|
||||||
|
|
||||||
|
|
||||||
|
var value = this.fpSpread1.ActiveSheet.GetValue(i, col_sid); //sid값을 확인한다
|
||||||
|
var value_buy = this.fpSpread1.ActiveSheet.GetValue(i, col_buy);
|
||||||
|
var value_in = this.fpSpread1.ActiveSheet.GetValue(i, col_qtyin);
|
||||||
|
var value_bbuy = this.fpSpread1.ActiveSheet.GetValue(i, col_bbuy);
|
||||||
|
var db_supply = this.fpSpread1.ActiveSheet.GetValue(i, col_supply);
|
||||||
|
var value_supply = string.Empty;
|
||||||
|
if (db_supply != null) value_supply = db_supply.ToString().Trim();
|
||||||
|
//var value_bconf = this.fpSpread1.ActiveSheet.GetValue(i, col_bconf);
|
||||||
|
|
||||||
|
Boolean bbuy = false;
|
||||||
|
// Boolean bconf = false;
|
||||||
|
|
||||||
|
if (value_bbuy != null) bbuy = (Boolean)value_bbuy;
|
||||||
|
// if (value_bconf != null) bconf = (Boolean)value_bconf;
|
||||||
|
|
||||||
|
if (bbuy) PO발행전체 += 1;
|
||||||
|
// if (bbuy && string.IsNullOrEmpty(value_supply))
|
||||||
|
|
||||||
|
|
||||||
|
전체건수 += 1;
|
||||||
|
|
||||||
|
int qty_in = 0;
|
||||||
|
int qty_buy = -1;
|
||||||
|
if (value_in != null) qty_in = (int)value_in;
|
||||||
|
if (value_buy != null) qty_buy = (int)value_buy;
|
||||||
|
|
||||||
|
if (bbuy)
|
||||||
|
{
|
||||||
|
if (qty_in == 0 && string.IsNullOrEmpty(value_supply))
|
||||||
|
{
|
||||||
|
//입고량이 0인데 공급사가 없다면 PO발행대기건
|
||||||
|
row.ForeColor = Color.White;
|
||||||
|
row.BackColor = Color.OrangeRed;
|
||||||
|
PO발행 += 1;
|
||||||
|
}
|
||||||
|
//구매진행중인데 수량이 다르면 색상 변경
|
||||||
|
else if (qty_in < qty_buy)
|
||||||
|
{
|
||||||
|
//공급사가 없다면 ㅔo발행건으로 한다.
|
||||||
|
if (qty_buy < 1)
|
||||||
|
{
|
||||||
|
row.ForeColor = Color.Red;
|
||||||
|
row.BackColor = Color.DarkMagenta;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
row.ForeColor = Color.White;
|
||||||
|
row.BackColor = Color.DarkMagenta;
|
||||||
|
}
|
||||||
|
구매진행건수 += 1;
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
구매완료건수 += 1;
|
||||||
|
row.ForeColor = Color.Black;
|
||||||
|
row.BackColor = Color.LimeGreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
구매등록건수 += 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (qty_buy < 1)
|
||||||
|
{
|
||||||
|
비구매건수 += 1;
|
||||||
|
row.ForeColor = Color.Black;
|
||||||
|
row.BackColor = Color.White;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
row.ForeColor = Color.Black;
|
||||||
|
row.BackColor = Color.SkyBlue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//프로그레시브입력
|
||||||
|
//prb6.Text = string.Format("전체 진행 ({0}/{1})", 비구매건수 + 구매완료건수, 전체건수);
|
||||||
|
//prb6.ProgressMax = 전체건수;
|
||||||
|
//prb6.ProgressValue = 비구매건수 + 구매완료건수;
|
||||||
|
prbPO.Text = string.Format("PO 대기 ({0}/{1})", PO발행, PO발행전체);
|
||||||
|
prbPO.ProgressMax = PO발행전체;
|
||||||
|
prbPO.ProgressValue = PO발행;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
prb2.Text = string.Format("구매 등록 신청 ({0}/{1})", 구매등록건수, 전체건수 - 비구매건수);
|
||||||
|
prb2.ProgressMax = 전체건수 - 비구매건수;
|
||||||
|
prb2.ProgressValue = 구매등록건수;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
prb3.Text = string.Format("구매 진행 중 ({0}/{1})", 구매진행건수, 구매등록건수);
|
||||||
|
prb3.ProgressMax = 구매등록건수;
|
||||||
|
prb3.ProgressValue = 구매진행건수;
|
||||||
|
|
||||||
|
|
||||||
|
//prb1.Text = string.Format("수량 검토 완료 ({0}/{1})", 검토완료건수, 전체건수);
|
||||||
|
//prb1.ProgressMax = 전체건수;
|
||||||
|
//prb1.ProgressValue = 검토완료건수;
|
||||||
|
|
||||||
|
//var 전체건수 = 0;
|
||||||
|
//var 비구매건수 = 0;
|
||||||
|
//var 구매진행건수 = 0;
|
||||||
|
//var 구매완료건수 = 0;
|
||||||
|
//var 구매등록건수 = 0;
|
||||||
|
//var 검토완료건수 = 0;
|
||||||
|
|
||||||
|
|
||||||
|
this.fpSpread1.ResumeLayout();
|
||||||
|
}
|
||||||
|
|
||||||
|
void RefreshSum()
|
||||||
|
{
|
||||||
|
decimal sum = this.dsPRJ.ProjectsPart.Where(t => t.RowState != DataRowState.Deleted && t.RowState != DataRowState.Detached).Sum(t => t.amt);
|
||||||
|
decimal sumN = this.dsPRJ.ProjectsPart.Where(t => t.RowState != DataRowState.Deleted && t.RowState != DataRowState.Detached).Sum(t => t.amtn);
|
||||||
|
|
||||||
|
|
||||||
|
//lbSum.Text = string.Format("1:{0:N0} / N:{1:N0}", sum, sumN);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void toolStripButton1_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Save();
|
||||||
|
}
|
||||||
|
void Save()
|
||||||
|
{
|
||||||
|
this.Validate();
|
||||||
|
this.bsPart.EndEdit();
|
||||||
|
|
||||||
|
//모든데이터의 공백을 제거(sid)
|
||||||
|
foreach (var item in this.dsPRJ.ProjectsPart)
|
||||||
|
{
|
||||||
|
//sid에 공백제거
|
||||||
|
if (item.RowState == DataRowState.Deleted || item.RowState == DataRowState.Detached) continue;
|
||||||
|
if (item.ItemSid != item.ItemSid.Replace(" ", "").Trim())
|
||||||
|
{
|
||||||
|
item.ItemSid = item.ItemSid.Replace(" ", "").Trim();
|
||||||
|
item.EndEdit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var cnt = this.taPart.Update(this.dsPRJ.ProjectPartStatus);
|
||||||
|
FCOMMON.Util.MsgI(cnt.ToString() + "건의 자료가 업데이트 되었습니다.");
|
||||||
|
this.dsPRJ.AcceptChanges();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
FCOMMON.Util.MsgE(ex.Message);
|
||||||
|
}
|
||||||
|
FPUtil.ColSizeLoad(ref this.fpSpread1, fn_fpcolsize);
|
||||||
|
FormattingData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton2_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectPartStatusRow;
|
||||||
|
var f = new rPartList(dr.Project);
|
||||||
|
f.Show();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void exportListToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
SaveFileDialog sd = new SaveFileDialog();
|
||||||
|
sd.Filter = "excel|*.xls";
|
||||||
|
var fn = "partliststatus.xls";
|
||||||
|
if (sd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
|
{
|
||||||
|
fpSpread1.SaveExcel(sd.FileName,
|
||||||
|
FarPoint.Excel.ExcelSaveFlags.SaveAsViewed
|
||||||
|
| FarPoint.Excel.ExcelSaveFlags.SaveAsFiltered
|
||||||
|
| FarPoint.Excel.ExcelSaveFlags.NoFormulas
|
||||||
|
| FarPoint.Excel.ExcelSaveFlags.SaveCustomColumnHeaders);
|
||||||
|
}
|
||||||
|
|
||||||
|
//dv1.ExportData("partlist.csv");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void autoToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
this.fpSpread1.ActiveSheet.DataAutoSizeColumns = true;
|
||||||
|
|
||||||
|
for (int i = 0; i < this.fpSpread1.ActiveSheet.Rows.Count; i++)
|
||||||
|
this.fpSpread1.ActiveSheet.SetRowHeight(i, 25);
|
||||||
|
//dv1.AutoResizeColumns();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void resetToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
foreach (FarPoint.Win.Spread.Column col in this.fpSpread1.ActiveSheet.Columns)
|
||||||
|
{
|
||||||
|
col.Width = 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
FPUtil.ColsizeSave(this.fpSpread1, fn_fpcolsize);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
FPUtil.ColSizeLoad(ref this.fpSpread1, fn_fpcolsize);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void fpSpread1_EditModeOff(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
int Colidx = this.fpSpread1.ActiveSheet.ActiveColumnIndex;
|
||||||
|
int Rowidx = this.fpSpread1.ActiveSheet.ActiveRowIndex;
|
||||||
|
|
||||||
|
var taItem = new FCM0000.dsMSSQLTableAdapters.ItemsTableAdapter();
|
||||||
|
|
||||||
|
switch (this.fpSpread1.ActiveSheet.Columns[Colidx].DataField.ToLower())
|
||||||
|
{
|
||||||
|
case "supplyname":
|
||||||
|
var valuen1 = fpSpread1.ActiveSheet.Cells[Rowidx, Colidx].Value;//.Rows[Rowidx].Cells[e.ColumnIndex].Value;
|
||||||
|
if (valuen1 != null)
|
||||||
|
{
|
||||||
|
string inputtext1 = valuen1.ToString().Trim();
|
||||||
|
if (inputtext1 != "")
|
||||||
|
{
|
||||||
|
FCM0000.fLovSupply f = new FCM0000.fLovSupply(inputtext1);
|
||||||
|
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
|
{
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_supply].Value = f.Title;
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_supplyidx].Value = f.Index;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//fpSpread1.ActiveSheet.Cells[Rowidx, colidx_supply].Value = string.Empty;
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_supplyidx].Value = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "itemname":
|
||||||
|
var valuen = fpSpread1.ActiveSheet.Cells[Rowidx, Colidx].Value;//.Rows[Rowidx].Cells[e.ColumnIndex].Value;
|
||||||
|
if (valuen != null)
|
||||||
|
{
|
||||||
|
string inputtext = valuen.ToString().Trim();
|
||||||
|
if (inputtext != "")
|
||||||
|
{
|
||||||
|
//검색을 실행해서 보여준다.
|
||||||
|
var SearchDT = taItem.GetSearch("%" + inputtext + "%", FCOMMON.info.Login.gcode);
|
||||||
|
if (SearchDT == null || SearchDT.Rows.Count < 1)
|
||||||
|
{
|
||||||
|
//FCOMMON.Util.MsgE("검색 결과가 없습니다.");
|
||||||
|
fpSpread1.ActiveSheet.ActiveColumnIndex += 2;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//검색된 결과를 표시해서 보여준다.
|
||||||
|
var f = new FCM0000.fLovItem("%" + inputtext + "%");
|
||||||
|
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
|
{
|
||||||
|
//var c = fpSpread1.ActiveSheet.Columns["sdf"];
|
||||||
|
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_item].Value = f.item;
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_itemname].Value = f.itemName;
|
||||||
|
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_sid].Value = f.SID.Replace(" ", "").Trim();
|
||||||
|
|
||||||
|
//공급사는 기록하지 않는다 200623
|
||||||
|
//fpSpread1.ActiveSheet.Cells[Rowidx, colidx_supplyidx].Value = f.itemSupplyidx;
|
||||||
|
//fpSpread1.ActiveSheet.Cells[Rowidx, colidx_supply].Value = f.itemSupply;
|
||||||
|
|
||||||
|
//제조사추가 201022 - 박성민
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_manu].Value = f.itemManu.Replace(" ", "").Trim();
|
||||||
|
//단위추가 201028 - 박성민
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_unit].Value = f.itemUnit.Replace(" ", "").Trim();
|
||||||
|
|
||||||
|
if (f.itemmodel != "")
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_model].Value = f.itemmodel;
|
||||||
|
|
||||||
|
if (f.itemprice != 0)
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_price].Value = f.itemprice;
|
||||||
|
|
||||||
|
var valueq1 = fpSpread1.ActiveSheet.Cells[Rowidx, colidx_qty].Value;
|
||||||
|
var valuep1 = fpSpread1.ActiveSheet.Cells[Rowidx, colidx_price].Value;
|
||||||
|
|
||||||
|
Int32 iQty = 0;
|
||||||
|
decimal iPrice = 0;
|
||||||
|
if (valueq1 != null && valueq1.ToString() != "") iQty = (Int32)valueq1;
|
||||||
|
if (valuep1 != null && valuep1.ToString() != "") iPrice = (decimal)valuep1;
|
||||||
|
decimal iAmt = iQty * iPrice;
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_amt].Value = iAmt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "price":
|
||||||
|
case "qty":
|
||||||
|
var valueq = fpSpread1.ActiveSheet.Cells[Rowidx, colidx_qty].Value;
|
||||||
|
var valuep = fpSpread1.ActiveSheet.Cells[Rowidx, colidx_price].Value;
|
||||||
|
|
||||||
|
Int32 iQty1 = 0;
|
||||||
|
decimal iPrice1 = 0;
|
||||||
|
if (valueq != null && valueq.ToString() != "") iQty1 = (Int32)valueq;
|
||||||
|
if (valuep != null && valuep.ToString() != "") iPrice1 = (decimal)valuep;
|
||||||
|
|
||||||
|
var amt = iQty1 * iPrice1;
|
||||||
|
fpSpread1.ActiveSheet.Cells[Rowidx, colidx_amt].Value = amt;
|
||||||
|
//dv1.Rows[e.RowIndex].Cells["dvc_amt"].Value = amt;
|
||||||
|
RefreshSum();
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void btRefresh_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
RefreshData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton3_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectPartStatusRow;
|
||||||
|
var f = new fProjectPartImport(dr.Project);
|
||||||
|
f.ShowDialog();
|
||||||
|
this.RefreshData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton4_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var chg = this.dsPRJ.ProjectsPart.GetChanges();
|
||||||
|
if (chg != null)
|
||||||
|
{
|
||||||
|
FCOMMON.Util.MsgE("변경된 자료가 있습니다. \n 해당 자료를 먼저 저장하세요");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectPartStatusRow;
|
||||||
|
var f = new fProjectPartToPurchase(dr.Project, sortkey);
|
||||||
|
f.ShowDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void tbFind_KeyDown(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.KeyCode == Keys.Enter)
|
||||||
|
{
|
||||||
|
var search = tbFind.Text.Trim();
|
||||||
|
var ColumnList = new string[] { "ItemName", "ItemModel", "ItemSupply", "ItemManu", "ItemSid" };
|
||||||
|
var Filter = "";
|
||||||
|
if (search != "")
|
||||||
|
{
|
||||||
|
foreach (var item in ColumnList)
|
||||||
|
{
|
||||||
|
if (Filter != "") Filter += " or ";
|
||||||
|
Filter += item + " like '%{0}%'";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (Filter != "")
|
||||||
|
{
|
||||||
|
this.bsPart.Filter = string.Format(Filter, search.Replace("'", "''"));
|
||||||
|
tbFind.BackColor = Color.Lime;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.bsPart.Filter = "";
|
||||||
|
tbFind.BackColor = SystemColors.Window;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
this.bsPart.Filter = "";
|
||||||
|
tbFind.BackColor = Color.HotPink;
|
||||||
|
}
|
||||||
|
FormattingData();
|
||||||
|
this.tbFind.SelectAll();
|
||||||
|
this.tbFind.Focus();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton5_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var range = this.fpSpread1_Sheet1.GetSelection(0);
|
||||||
|
util.MsgE("준비중");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void button1_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
RefreshData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton5_Click_1(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var dlg = FCOMMON.Util.MsgQ("재고 확인을 실행하시겠습니까?\n재고 확인 완료 후에는 구매수량값이 업데이트 됩니다");
|
||||||
|
if (dlg != DialogResult.Yes) return;
|
||||||
|
|
||||||
|
//pmp데이터에서 모두 업데이트 한다
|
||||||
|
//컬럼명 qty, qty_pmp, qty_buy
|
||||||
|
|
||||||
|
List<DatabaseManager.sPMPdata> retval = new List<DatabaseManager.sPMPdata>();
|
||||||
|
var cn = DatabaseManager.getCn();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
cn.Open();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
util.MsgE("데이터베이스 연결 실패\n" + ex.Message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
System.Data.SqlClient.SqlDataReader rdr = null;
|
||||||
|
System.Data.SqlClient.SqlCommand cmd = null;
|
||||||
|
var basesql1 = "select isnull(SIDNo,'') ,isnull(PartName,'') ,isnull(PartNo,'') , isnull(CurrentQty,0) from SPMaster where SIDNo = '{0}' and isnull(Storage,'') <> 'B-CENTER'";
|
||||||
|
var basesql2 = "select isnull(SIDNo,'') ,isnull(PartName,'') ,isnull(PartNo,'') , isnull(CurrentQty,0) from SPMaster where PartNo = '{0}' and isnull(Storage,'') <> 'B-CENTER'";
|
||||||
|
cmd = new System.Data.SqlClient.SqlCommand("", cn);
|
||||||
|
|
||||||
|
var cnt_ok = 0;
|
||||||
|
var cnt_no = 0;
|
||||||
|
var cnt_ng = 0;
|
||||||
|
// var cnt_reduce = 0;
|
||||||
|
foreach (dsPRJ.ProjectsPartRow dr in this.dsPRJ.ProjectsPart.Rows)
|
||||||
|
{
|
||||||
|
if (dr.RowState == DataRowState.Detached || dr.RowState == DataRowState.Deleted) continue;
|
||||||
|
|
||||||
|
var qty = dr.qtyn; //파트리스트수량(N대수량으로 처리)
|
||||||
|
var model = string.IsNullOrEmpty(dr.ItemModel) ? dr.ItemName : dr.ItemModel;
|
||||||
|
|
||||||
|
//검색 sql 생성
|
||||||
|
string sql = "";
|
||||||
|
if (string.IsNullOrEmpty(dr.ItemSid) == true) sql = string.Format(basesql2, model);
|
||||||
|
else sql = string.Format(basesql1, dr.ItemSid);
|
||||||
|
cmd.CommandText = sql;
|
||||||
|
|
||||||
|
rdr = cmd.ExecuteReader();
|
||||||
|
List<DatabaseManager.sPMPdata> db = new List<DatabaseManager.sPMPdata>();
|
||||||
|
while (rdr.Read())
|
||||||
|
{
|
||||||
|
//데이터를 가져온다
|
||||||
|
var v_sidno = rdr[0];
|
||||||
|
var v_name = rdr[1];
|
||||||
|
var v_no = rdr[2];
|
||||||
|
var v_qty = rdr[3];
|
||||||
|
|
||||||
|
var newdr = new DatabaseManager.sPMPdata();
|
||||||
|
if (v_sidno != DBNull.Value) newdr.sid = v_sidno.ToString();
|
||||||
|
if (v_name != DBNull.Value) newdr.partname = v_name.ToString();
|
||||||
|
if (v_no != DBNull.Value) newdr.partno = v_no.ToString();
|
||||||
|
if (v_qty != DBNull.Value) newdr.qty = int.Parse(v_qty.ToString());
|
||||||
|
db.Add(newdr);
|
||||||
|
}
|
||||||
|
rdr.Close();
|
||||||
|
|
||||||
|
//데이터가 여러개있다면 해당 데이터를 표시한다
|
||||||
|
if (db.Count > 1)
|
||||||
|
{
|
||||||
|
cnt_ng += 1;
|
||||||
|
dr.qtyjago = "{" + db.Count.ToString() + "}";
|
||||||
|
//dr.qtybuy = qty;
|
||||||
|
}
|
||||||
|
else if (db.Count == 1 && db[0].qty != 0)
|
||||||
|
{
|
||||||
|
cnt_ok += 1;
|
||||||
|
dr.qtyjago = db[0].qty.ToString(); //재고수량
|
||||||
|
//dr.qtybuy = Math.Max(qty - db[0].qty, 0);
|
||||||
|
//cnt_reduce += (qty - dr.qtybuy);
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//pmp에 자료 없다
|
||||||
|
cnt_no += 1;
|
||||||
|
dr.qtyjago = "--";
|
||||||
|
//dr.qtybuy = qty;
|
||||||
|
}
|
||||||
|
dr.EndEdit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (cmd != null) cmd.Dispose();
|
||||||
|
if (rdr != null) rdr.Close();
|
||||||
|
|
||||||
|
cn.Close();
|
||||||
|
cn.Dispose();
|
||||||
|
|
||||||
|
var msg = string.Format("PMP 검색결과 현황\n" +
|
||||||
|
"검색완료 : {0}\n" +
|
||||||
|
"복수확인 : {1}\n" +
|
||||||
|
"확인불가 : {2}", cnt_ok, cnt_ng, cnt_no);
|
||||||
|
FCOMMON.Util.MsgI(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
void searchpmp()
|
||||||
|
{
|
||||||
|
//PMP조회
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
if (drv == null) return;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectsPartRow;
|
||||||
|
|
||||||
|
//검색어
|
||||||
|
var title = string.IsNullOrEmpty(dr.ItemModel) ? dr.ItemName : dr.ItemModel;
|
||||||
|
if (string.IsNullOrEmpty(dr.ItemSid) == false) title = dr.ItemSid;
|
||||||
|
|
||||||
|
var f = new fSPMaster(title);
|
||||||
|
if (f.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
var pmp = f.qty; //pmp재고
|
||||||
|
var req = f.qty;
|
||||||
|
var buy = Math.Max(req - pmp, 0);
|
||||||
|
dr.qtyjago = pmp.ToString();
|
||||||
|
dr.qtybuy = buy;
|
||||||
|
dr.EndEdit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void pMP조회ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton7_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
searchpmp();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void button2_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Save();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void bindingNavigatorDeleteItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void btConf_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var f = new fPartConfirm(this.dsPRJ.ProjectsPart, sortkey);
|
||||||
|
f.ShowDialog();
|
||||||
|
FormattingData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void 검토목록모두구매등록상태로전환ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
////검토는 되어있지만 구매등록이 안된 목록 가져온다
|
||||||
|
//var list = this.dsPRJ.ProjectsPart.Where(t => t.bconfirm == true && t.bbuy == false);
|
||||||
|
//var cnt = list.Count();
|
||||||
|
//if (cnt < 1)
|
||||||
|
//{
|
||||||
|
// FCOMMON.Util.MsgE("검토목록 전체가 구매등록된 상태 입니다");
|
||||||
|
// return;
|
||||||
|
//}
|
||||||
|
//var dlg = FCOMMON.Util.MsgQ(string.Format("{0}건의 자료가 구매등록 대기 상태입니다\n\n구맹 등록상태로 전환 하시겠습니까?", cnt));
|
||||||
|
//if (dlg == DialogResult.Yes)
|
||||||
|
//{
|
||||||
|
// foreach (var dr in list)
|
||||||
|
// {
|
||||||
|
// dr.bbuy = true;
|
||||||
|
// dr.EndEdit();
|
||||||
|
// }
|
||||||
|
// this.FormattingData();
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton1_Click_1(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//쇼핑카드 데이터를 가져와서 검색을 실행한다
|
||||||
|
this.Validate();
|
||||||
|
this.bsPart.EndEdit();
|
||||||
|
var f = new fSCCheck(this.dsPRJ.ProjectsPart);
|
||||||
|
f.ShowDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void button3_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectPartStatusRow;
|
||||||
|
var f = new rPartList(dr.Project);
|
||||||
|
f.Show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void button4_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
if (drv == null) return;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectPartStatusRow;
|
||||||
|
|
||||||
|
var tbPath = dr.path;
|
||||||
|
if (tbPath.Equals(""))
|
||||||
|
{
|
||||||
|
util.MsgE("공유폴더가 존재하지 않는 프로젝트 입니다. 프로젝트 정보에서 공유폴더를 클릭해 먼저 생성한 후 다시 시도하세요");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tbPath.StartsWith("\\") == false)
|
||||||
|
{
|
||||||
|
if (tbPath.StartsWith("/")) tbPath = tbPath.Replace("/", "\\");
|
||||||
|
else tbPath = "\\" + tbPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
var serverpath = @"\\" + FCOMMON.info.serverip + @"\Data\Project";
|
||||||
|
if (System.IO.Directory.Exists(serverpath) == false)
|
||||||
|
{
|
||||||
|
FCOMMON.Util.MsgE("프로젝트 기본경로가 존재하지 않아 진행할 수 없습니다\n\n" +
|
||||||
|
serverpath);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var path = serverpath + tbPath;
|
||||||
|
if (System.IO.Directory.Exists(path) == false)
|
||||||
|
{
|
||||||
|
FCOMMON.Util.MsgE("프로젝트 저장소 없음");
|
||||||
|
}
|
||||||
|
|
||||||
|
FCOMMON.Util.RunExplorer(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsPart.Current as DataRowView;
|
||||||
|
if (drv == null) return;
|
||||||
|
var dr = drv.Row as dsPRJ.ProjectPartStatusRow;
|
||||||
|
|
||||||
|
var f = new fProjectPartListEdit(dr.idx);
|
||||||
|
if(f.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
this.RefreshData();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void button3_Click_1(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//if (button3.BackColor == Color.Gold) button3.BackColor = SystemColors.Control;
|
||||||
|
//else button3.BackColor = Color.Gold;
|
||||||
|
//RefreshData();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
395
SubProject/FPJ0000/Project/fPartBuyStatus.resx
Normal file
395
SubProject/FPJ0000/Project/fPartBuyStatus.resx
Normal file
@@ -0,0 +1,395 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<metadata name="pdateLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="label4.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>327, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="button1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAG
|
||||||
|
7AAABuwBHnU4NQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAVsSURBVFhH3VhZ
|
||||||
|
TxtXFJ6qfWr7Q1pVrSK1PyAvSaUWAqZsITg4tC8EUvWhUpUAqVMgYLOTsENMqzSYNSyChLAFSAqhNuAQ
|
||||||
|
A0ElQMJOKPsYg8fTe8Z3wtg+GIOBh37SJ4/mnuXzzF3OGeZ/i7zob766l3QuvToj4NHD3NCnjzUKQ0dJ
|
||||||
|
+CiwrVhhgHvV6QFNxCY1J/bsl9TteJGtPP2xNlmmbswN0Rvrflr+t0fJb/YluCTYvKj9cRl8ylL8VMk/
|
||||||
|
n/2Ihjs6KJWnPyhT+8WRp/Ry4UksKsQdznfFWNuLFSPaFNkNiEnDewZNwplTtVlB+tnOaAuW9DCc6bi2
|
||||||
|
U5cVqPtdee4LmuZw+FPl+33XHz+82dDHo4k8IcTsLAl/rVXJLtF0B4NW7XulvypqDgt+lOyruDxbmuQT
|
||||||
|
SdO6h1K1r6KvMnIBC3gcJCLnyduS0/SuofnN5/NOTfgEFug42VGieFUY9+2nVAYOWFl1mcE6d+cc+zyD
|
||||||
|
N0828JaVlzxnWuCtO5uEG8K1ZXmY3xqv4TcHklFfR66TnLWZgb3lAQHvUznOqEr1U812RHNYADv2J/Hb
|
||||||
|
0+281WLm9wOINk81Cz5oLAmnHl+1VKT4xVE59oANtP2OYhRzlJIdzOS5zWmafhfW7XWeY+cEwrUjuI0p
|
||||||
|
4puBxpSytVg+kq/0/pDK2oVWLUucfxJjxZxEsoNZJPkaTUnA7fDbc908a8x1sjUZ8/jt+W6i3EKNeduT
|
||||||
|
dLBz5FxXtFWb7BNPZdnAM8x7jTkhfZjDOw6ohacjgjMtosIcaRrKI7Zv+e2ZDnQcY0NOiI5Ks6FAeebU
|
||||||
|
YM2VVcxYJCQQAYuANaSgdigHVPj9PWi4H7VcEPv1Z1Qew5SpZWnLPTdQYyD7PG13QZDXyhqzUTt3CNPE
|
||||||
|
sjom/GLjwKVuJa9V+6moPIYhy/sBZigSthIRMK8wG3cIf8xqXhXiwK+rP1qTGdhA5THMg9wLvZiRSMvK
|
||||||
|
qBAUYBrKR232o1ScCFciG/NCe6g8hmkpujiEGYm0bi3ZApLtAxvfj5g4EXuJbC6QG6k8hmkrCvvH0UBK
|
||||||
|
nrPNP25zBh13RVfiRGAiW4kmKo9hWovDxqSDrDHHfr9DAONgJ/Vzh9zmrM2fLDpsXKSdQOwVsy9ukVe7
|
||||||
|
LARzBNyHcUcfdwhHH4DbeouOi7R7xTAhMSNMpCfiTMOFNApPiokR1EZkY86FbirP9TYjFemJOODO/DMh
|
||||||
|
DsA8WY/aiLTbZkpVsqSlv35FDYEgyrL2yiNxcCyK57LVskVOojTUDrj49DpPusfd89ido86JBzi+WEOq
|
||||||
|
cHaLgFINsxPpdNQByAHtcrOWcnumU0gIFQs2LqVYLIgQtqp9/lzD7fPPqKxduFNuAaFkegfyynYW9WTy
|
||||||
|
FznZwT0Y460cNSaXsN+RetLRVkrSO3OkJ3IuWqFgbSsOG8acpBQKVlJ8OsK9gtW1OGBLkdyIFqyAezd9
|
||||||
|
rk+1XTNjjnYk5bt5qoXsaSxNvzcOUvK/abu6pU30iaZynAFN0/2MgP51XRwawJEsaYjMpDGCBkk4r0kp
|
||||||
|
BoRrsWkCG8zXkeu6eJ7k1rtsmgDQdj7WXDrxtpP0Q+P7tp0iSuK9z+vLIyaxQMdBXVnE5J14ryCa3j2Q
|
||||||
|
Tj9KXxExgwU8SpIHMa1V+0bQtAfD3USvoNZixQTMDyy4J1z7O46s2IsTd1Ve/jTd4QDzoird3/C69Zcj
|
||||||
|
+/xGYu1UpX9n0Nz0/oSm8QywurVqn8TmQvnYXFcMmtQdzpOetyk/dIw0aQlH9gFTCvgEXJ4iU9ffCh7o
|
||||||
|
q4xchUMdEyIl2PRXXl6pvx3Uf2yfgDGIH9HJq2puyA7ubcqXD7cUyMeBD8k13KtO9390oh/RTx4M8x+u
|
||||||
|
txiKQUsjZwAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="button2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAG
|
||||||
|
7AAABuwBHnU4NQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFNSURBVFhH7ZLN
|
||||||
|
S8MwGIf7Z3sXvHSIIlU2u01oL0rXzTm/ceuGzM+rB0FchTEQbx1MwUrllbTLIV3bZUknyQPPpdD+HtIo
|
||||||
|
kkVRXGsMm8YN0Xbj2QvdLDV9s977mUfDdnxwXbO/KoVWAU2nw65eD16evIBk/2IUuWd1grcPj0qj3g3u
|
||||||
|
Ou5nRW1to/lkeAfCdzNFsghcUfVI/HkYCEJkWT3WUEY8eQWC9447SYzMMxC8bb/O/t15B4IzI5chEIyN
|
||||||
|
XJZA0NrtuShrCovAOJMCoQVlTfnXgQ/OexS4pZ8E+v7lXFatqz+L5hlxJzRzIG9lIK0ykNZUgZp5FJw6
|
||||||
|
j1yELXw7VSC8yAvYwrdlYFbECHTHixVHjBNkiRiBpHtEI44YJ8gSMQJJ94hGHDFOkCUykJZUgTurteFB
|
||||||
|
qTsI3SjX/MPz/jcPYQvfhhaUJaFEUX4B8Gv8C+/jmnoAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="button4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAi
|
||||||
|
mgAAIpoBvt37KgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAGHSURBVFhH7ZUx
|
||||||
|
SgNhFIT3aLaKB7CyVywEK7t4ASshjSA21jYWNmJhK3gEb6Ct1epn3vB+wiDBhZdd2IFpJjP/+wpNullD
|
||||||
|
dXu8txizAezH7OkAvi3P+v7lehSGZQYc4hlwqC3gWD0JwNW39tHus8LHxeFWrPvBsvolkSL4Lbi/iwrr
|
||||||
|
PiyBlSJUwY0rrPuwBFaKUAU3rrDuwxJYKUIV3LjCug9LYKUIVXDjdb/fXfSvV6cbma57Y926D0tgpQhV
|
||||||
|
cOPWHw+X7WMb+fNn495q3fSHAX49Lfv784P2wT9Nl417q3Wzmf9J/mXdhyWwUoQquHGFdR+WwEoRquDG
|
||||||
|
FdZ9WAIrRaiCG1dY92EJrBShCm5cYd2HJbBShCq4cYV1H5bAShGq4MYV1n1YAitFqIIbV1j3YQmsFKEK
|
||||||
|
blxh3YclsFKEKrhxhXUflsBKEargxhXWfVgCK0WoghtXWPdhCawUoQpuXGHdhyWwUoQquHGFdR+WwEoR
|
||||||
|
NoVte4KANyf7O3wwBsMSWLMGquu+ASE8PB8NwG11AAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="dsPRJ.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="cm1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>252, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<data name="autoToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
R0lGODlhEAAQAIQfAJXG2JXa+ZLO5ChrlkCy4TZ1kiVvpCN0trvo9SN5xTd4lrfh7iR9zo3S+EGz7JDJ
|
||||||
|
4TaCromrvC9ymyV+0Dd3mTl1koe72YvN7LTj+9ne6N3g6v7+/0Cw2Stoh////////yH/C05FVFNDQVBF
|
||||||
|
Mi4wAwEBAAAh+QQBAAAfACwAAAAAEAAQAAAInwA/CBzooaAHgQUHKvRQoUABCgUlHFT4IYMCBAsQIIBg
|
||||||
|
wcBEgh0WCBDAgcAFDAc+fvDQIUKHDgMeEHDQIIFKlgoMGgjQoAGDmwUOehhg4EACBhM+GlzKVOkEBgkO
|
||||||
|
GBggNOhCBhgCBPBYUEGHmwkCOCDwYMCAll8XHghwgQCHkQDSLjRgAcKDBwAAKNCwgaIHiR4oOKygkuDE
|
||||||
|
pRQTK6YYEAA7
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="resetToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
R0lGODlhEAAQAIQfALnik2aXQv7+/dPut73llbfala3LmW6gSWqdQ2eYRGqaSLfck568iYrUQN7yzF6R
|
||||||
|
PLTXlYjUP8XwmYfQQLbYl4jRQGiaQsPumNbyu7nglNPzsLXYlf7+/lCHK////////yH/C05FVFNDQVBF
|
||||||
|
Mi4wAwEBAAAh+QQBAAAfACwAAAAAEAAQAAAIlgA/CBzooaAHgQUHEvSgIEAABQUfHFTIwQECDAMwYDhg
|
||||||
|
oENCgRw8dBgAAECFBgsweJxYsAODDjApTIhAwCMHkCItGOxwgUCGlQQTeAgJsyhQg0iTGvzQ0qhND0IX
|
||||||
|
dtBwQcJKDxZsIhQpIcIECkVffmwpYUGDCiUheBQg1cCBAgU2QFDg4KZCDxIZOoQ48S7LpQoDCx4cEAA7
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="saveToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
R0lGODlhEAAQAIQAAJXD9Iasxm6MqnSn2lZtjVaRyEpXbYu767TX/2KZztvr/4Gy5KrT/3ut32+gzlFh
|
||||||
|
e+r0/0RNX9/u/9Ln+8Xg//n8/4e36CkxQz9GVkSCvKjL35/N/Je91K7T5bDS4////yH/C05FVFNDQVBF
|
||||||
|
Mi4wAwEBAAAh+QQAAAAAACwAAAAAEAAQAAAIuQA/CBxIsKDACRwScggQwIGAhwIICBDYQcEEgwg+bNjw
|
||||||
|
QKCHCQgkQBgpQcKBCg0AEBCoAaRIkhIsVBigUiAHCgwkKNjJU8GAAx0/3NwIAMABCwsaDHCwIGgAChuK
|
||||||
|
HjiQdMDSAQYEPpWKtKqDBA6yfgiAwGhXpUsTJIgg0AGCo0nRfi1QgO0HAQyQNpCrtkAGDAIFbKi69GsC
|
||||||
|
un8FEohqdEFavxkyXAhMoPKDBwYMRIiAAcOFoAZDCwwIADs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="loadToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
R0lGODlhEAAQAIQfAJfL/OTs9HWVsW6aUqnT+6bnZldwkYiux7TZ/O3z+UlVa/P2+ZfTW36wWJDLV4m7
|
||||||
|
69nn78bi/qjL3qDP+VJhe4rAVa7S40NLXJ3bYJrA1ikxQz5FVdDU22OPRf///////yH/C05FVFNDQVBF
|
||||||
|
Mi4wAwEBAAAh+QQBAAAfACwAAAAAEAAQAAAIwQA9CBxIcOCHgx4gWLAgIUOGAwcESBTgAaEFCAEGaBwQ
|
||||||
|
IGOABwYqerCQsYBJBho7JHgAUqCEDjAxYGBQgYHKBAsoCMzQIUIEmA6CdkCAIOfOBT5/MnBQYSgBozCj
|
||||||
|
SoVJ4KkCDx1MFhhKFEFVAhMCXM1aAANMoh2qTgh7AWvZmQ6igp0AIEDbDg0aLA06YC4AABA2eBjgYcHG
|
||||||
|
vmv/Akgg2IMBDgsSdJwcAEICDhoECjDAmQIFBQouXNiwQYPOgqgLBgQAOw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="bsPart.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>100, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bn.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>186, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<data name="bindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||||
|
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||||
|
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||||
|
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||||
|
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||||
|
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||||
|
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="bindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
|
||||||
|
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
|
||||||
|
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
|
||||||
|
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
|
||||||
|
Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
|
||||||
|
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="bindingNavigatorMovePreviousItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
|
||||||
|
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
|
||||||
|
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
|
||||||
|
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="bindingNavigatorMoveNextItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
|
||||||
|
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
|
||||||
|
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
|
||||||
|
oAc0QjgAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="bindingNavigatorMoveLastItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
|
||||||
|
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
|
||||||
|
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
|
||||||
|
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||||
|
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||||
|
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANISURBVDhPtZBdTFN3GIdJvFu4ULMSFIiZW0JCci5EF4hU
|
||||||
|
OsZHZoEYslIgFMs6LUioQIsBZHCoKwo1ZVBqaR1DsFIrjiBoZwWDURNGsWvnGSNQoSsg/bBWqodtkhB/
|
||||||
|
I7XLZvTW5/Z9n+ef/xv2f1TTZPgZa10j+bN4ouZe2UbF7a83SoyFE0WDuQ25AwNbhCMrH4RW30ZBNbCa
|
||||||
|
LTWOm/M3MOq8DePiLTx4YoXeeglf6tjqiv7FY6U9846vtHZWSPkPue1kjuH3Xow5R9Frv4xKawMkv5AY
|
||||||
|
nLuG7D62P69X83FpzyN/zz0fJBcXwJHbckLq5svT5PZT5mp6fHEcrdMqCKaOo9h8HF0zPVDf7USGOuXY
|
||||||
|
kW6Huu2GG8bfaGjGvGA3memMqontwQA5KZEZ7ddxfvYi+FMi5E8IccLSBJ1VhwzlAVuxZib+MDm9MfLw
|
||||||
|
BRS3fBgwB1DZPYsD5WOyYODE3RKb6Y9RiCwnUbApCyfF0NkNEBlKkdSSwCxUztxvM7rwoyWAKv0KZMNe
|
||||||
|
tAwtI14wbAsGykzF68POn1BhqUcrpcSVuUGcNbVi/7ef/lDYMcvNIB/+dWVyFRK9CyXfL0GoWcJ3192I
|
||||||
|
410NBANFQ9zApGcKV+eGoLqjBOv0fn+idF/jiJj8UFV9ITKTNFOdN92o0btR1O4Er82BlkEXdrEv0MEA
|
||||||
|
tz/b1nmnHZ93sp4kyxPEJnFezEs+v/7vbK6fPniISKm+T5299hii7mVwmhdQol6CqMuO3Vldr7+QqUmT
|
||||||
|
pHYwhbaqw1HrR48q1ng8mm78Bmv5BaCTU4mkchMlNSziiNKJrLo5yAxusCvHEZXe/vqIqK3d9rK8TOsV
|
||||||
|
CNbXmmVYNejg7+/F86xDoOMTiX2CEaquz4HCVgfIzTvwzvyK6HQ5HclsZgQDr0QixhqfT7/QnsOzgX64
|
||||||
|
pPXwne/C6mdp8McSRFzeZapS+wjkJRfymh5gT64ekcwWTlD+lz9zOBxaIMAzsgE+rQreDgWeJiTBEx1L
|
||||||
|
fJLTRwnaZpAqNGFnisLBYJ7+IqS9SSApOf15fKLDx82HW1QOL7EXnohoYlemmopJazfvSJFLGSwyPLT+
|
||||||
|
brxxceG+j2Kl3h27zR5GDDxbI4jQ6H0RFvYPxczhJbhCpsgAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKgSURBVDhPvZLfT1JhHMbPuq6/oYtmmRdt2cZFXXThbbc1
|
||||||
|
N/Oiu+ZVm6aWBrOGRaghyjARNkBjwgkMSY/CWXL4YbhKR2wYKMigX/5KA48Q1tN5D2dLt9Zlz/bdu333
|
||||||
|
ft7nfb7vS/13Wa1WmEwmDA8PQ6fTXadCoRBIBQIBzM3NgWVZzM7OYnp6GpOTk3C5XHA4HLDZbLBYLOLe
|
||||||
|
crmMXC4HjUYTo4LBIA4ODlAqlf5Z+XweRqPx4+7uLpaXl6FWq9MqlaqJ4jhObGSzWczPzyOTyYD00uk0
|
||||||
|
vF4vkskkPB6PuIemacRiMfFGAlwnpaIon8+HcDhMrizz+/1wOp0yAo+NjclIDIPBICOwVquVCT0xv1Kp
|
||||||
|
rJZwimIYBtFoVJxBKpUSZ0CcCRyPx8G6tVjhWjH+zISlpSXiDoVCcVzCK5qYmEChUMDMzIzo7Ha7RWcn
|
||||||
|
bUOCaUhvJR1462ocHRkZgVwuh4T9kd1u71xYWEAikQCBibPQQzykw0Z8FOXCCt47r+Fd2I329vZfEnZU
|
||||||
|
ZrOZTBpDQ0MYGBiAQadElL6K4oYHxU992F59icj4TbTebv77AYclhDwWs1+xbn6gUczeB/foAn5s0Vg0
|
||||||
|
1eGJvP67tK0iIdeZp4L0ej2ZNHp7e2HUtCLNdqC0bgG/cgPcw/PYz7RhJzUFb9/ln0HVxRMSTlHCs3SS
|
||||||
|
tb+//1ZPT8+aWqVsXjTWvfkmDG5/rQV7ifpKJRuFKBpk/FoEVbVyESYaHBzsFL6l+FEikQimzB3IcH0o
|
||||||
|
fdGL7nvJBiFCrbjyqSbwn1/g1YPqr5yipkY6oqLu7m50dXUhoLm0w2+uorTNorguzGDdcaieo5yPIfd6
|
||||||
|
FOzdKoeEHhX3+Nwmo6jhj9ZZnrlXzTMdp3nmThXPtJ3ifS0nA78B2I8wkgDv+LoAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALvSURBVDhPhZLrS1NhHMf3qv6EsF70UpBSyqioF6WpTQ3s
|
||||||
|
ZjrMvM0pmprowiBbTCNTF5qoUCFK0YsKtdKpzds2pxtukrlMzeu8gJel7nKO29n89pyzpQZCP/jwvHjO
|
||||||
|
98P5fc/hsRP6UJl4pUyriCrX/g6TaCly0hwy9tTRUWUDdMQzjfG8WF3pF/3+ABfaO+FP+tQrFnrNaDS6
|
||||||
|
zLYtmK27rFlYaPxcsqDwswmC8jE7P0t+0Bv1TGSJZoUND8w6oZtjoDMx0M4y0Mw4oPy1hfZRG7YYoGWM
|
||||||
|
QmHzHFJeGKl/JGGSdmrT7oBh3oWheYacDAY5iQOqyS18HbUTgRuGJRd0i04Uy00IftD9jgvHyoKmb0mi
|
||||||
|
t0U1N5BSfRPVHQ0oapQhWOKPIAK/+BxCpadR0VLBrWKlGSyv2xGaoGI4QUxZ8MfukVa0TrxGtTafkyRU
|
||||||
|
RSD/bTyyGwQQ1l5Fcm0yWoaX0Wq04sv3TWyQnsKkfTQn4FfyD/pJclza8V68GZGiVJnFSRJrIkn4GtJf
|
||||||
|
pkE9aeNW6ZqgoCA9rNucCCvq9wjYCS9R0bl1SdBPalCru4+nnXmIlV1CYlU09LN26EmxbMHqKU8nZiII
|
||||||
|
le4RXHgkcZ4pOIr4Sj4MUwMo7s2AVJ4LwfMQNCg/4dsCAz0pdmDGiX7CisWJ4MdewUmxjyhQfATZ9XG4
|
||||||
|
XROOuIrLnCRXHg9xYxp5kxCw9waTC4PsJyZYSJEBORqPIFB8aCFQfJg85IPAfB9cLw1B5qskqEcVKFYU
|
||||||
|
IONDEoQ1MdATgY78G1oioJ1uIlDurnAxp49e2qAxvODiUI0v4l5dOlJJUFQrQF793Z07FrvDRQRNuwLW
|
||||||
|
Nm/eFfwPG7tC2h7B2dwee3Nn//Z+D++HTj/kPp7QYvXGSZHpndNzm3ZLT4/WPb1KYXqFwqSXVauTg23e
|
||||||
|
Srug0RncFEVt+N5p++GN83in0jsyA4TtnSdECnOAqIneIdWD/1+ETbSvsG39WHJbl3+SPIXH4/H+AGZa
|
||||||
|
nrYFb5VbAAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJiSURBVDhPvVLfa1JhGD5/QNBt3nTbbkbs5nTR5aBugogu
|
||||||
|
ghGxohpo1G5GSv5I0un80XE60Zwb6H6BjulUch4d6OY2HLsQlTYczMa27s1BiNLTeb+dLXZTXfXAx8f3
|
||||||
|
nu/5nud93sP9d8zMzGB6ehqBQABer/cxt7GxAVrr6+vI5/NYXV2FKIpIp9NIJpOIxWKIRqNYWFhAOBxm
|
||||||
|
dzudDo6Pj+FyuWpcsVhEt9tFu93+42q1WpiamjppNpvY29uD3W5vjI2NKbm1tTVWODo6wtbWFg4PD0G1
|
||||||
|
RqOBbDaL/f19pFIpdmdxcRG1Wo05ksj9clccl8vlsLm5SZb5QqGApaUlnshzc3M8tTE5OckT2e1281KN
|
||||||
|
9W82m3tkOsetrKygUqmwDA4ODlgGpEzk3d3dC+XZ2VmUy2VSh8FguCLTzxCPx3F6eopMJsOUE4kEUya7
|
||||||
|
TqeTJ7LVauWDwSD0ej1k2m9EIhHt9vY26vU6iEzKUg3VahU0OlKWHsTOzg7UavVPmXYZoVCIkobf74fH
|
||||||
|
44EgCLDZbNQv1LbXeOMZwMuP9zHwoR933/ZqZdrfMSQ8eG+MPkWq5kX5mwghq8QjoRe8SuFgF6S+bnyS
|
||||||
|
4PP5KGnqmfqFyWSisPDEcgfLVReWv7hBcOReQMgN4abq6g/2gDQWZmd8fHzY4XB8lcjD7IOMe+/68LkW
|
||||||
|
ZORzJCpe3FIpzsKcmJjQSr8lG1epVML8/DxLWqPRYGRkBLdfXYddfAaLOMjIlszgZQfnGB0dhdFohE6n
|
||||||
|
u+SAVypMDx09cIrPmTLtdL7I4F/AK69Z+1SK72SbdjpzHMf9Asu3+BhNj8g8AAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton5.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKgSURBVDhPvZLfT1JhHMbPuq6/oYtmmRdt2cZFXXThbbc1
|
||||||
|
N/Oiu+ZVm6aWBrOGRaghyjARNkBjwgkMSY/CWXL4YbhKR2wYKMigX/5KA48Q1tN5D2dLt9Zlz/bdu333
|
||||||
|
ft7nfb7vS/13Wa1WmEwmDA8PQ6fTXadCoRBIBQIBzM3NgWVZzM7OYnp6GpOTk3C5XHA4HLDZbLBYLOLe
|
||||||
|
crmMXC4HjUYTo4LBIA4ODlAqlf5Z+XweRqPx4+7uLpaXl6FWq9MqlaqJ4jhObGSzWczPzyOTyYD00uk0
|
||||||
|
vF4vkskkPB6PuIemacRiMfFGAlwnpaIon8+HcDhMrizz+/1wOp0yAo+NjclIDIPBICOwVquVCT0xv1Kp
|
||||||
|
rJZwimIYBtFoVJxBKpUSZ0CcCRyPx8G6tVjhWjH+zISlpSXiDoVCcVzCK5qYmEChUMDMzIzo7Ha7RWcn
|
||||||
|
bUOCaUhvJR1462ocHRkZgVwuh4T9kd1u71xYWEAikQCBibPQQzykw0Z8FOXCCt47r+Fd2I329vZfEnZU
|
||||||
|
ZrOZTBpDQ0MYGBiAQadElL6K4oYHxU992F59icj4TbTebv77AYclhDwWs1+xbn6gUczeB/foAn5s0Vg0
|
||||||
|
1eGJvP67tK0iIdeZp4L0ej2ZNHp7e2HUtCLNdqC0bgG/cgPcw/PYz7RhJzUFb9/ln0HVxRMSTlHCs3SS
|
||||||
|
tb+//1ZPT8+aWqVsXjTWvfkmDG5/rQV7ifpKJRuFKBpk/FoEVbVyESYaHBzsFL6l+FEikQimzB3IcH0o
|
||||||
|
fdGL7nvJBiFCrbjyqSbwn1/g1YPqr5yipkY6oqLu7m50dXUhoLm0w2+uorTNorguzGDdcaieo5yPIfd6
|
||||||
|
FOzdKoeEHhX3+Nwmo6jhj9ZZnrlXzTMdp3nmThXPtJ3ifS0nA78B2I8wkgDv+LoAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="fpSpread1_Sheet1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>508, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>327, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="taPart.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>424, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
@@ -241,7 +241,7 @@ namespace FPJ0000
|
|||||||
PO발행 += 1;
|
PO발행 += 1;
|
||||||
}
|
}
|
||||||
//구매진행중인데 수량이 다르면 색상 변경
|
//구매진행중인데 수량이 다르면 색상 변경
|
||||||
else if (qty_in != qty_buy)
|
else if (qty_in < qty_buy)
|
||||||
{
|
{
|
||||||
//공급사가 없다면 ㅔo발행건으로 한다.
|
//공급사가 없다면 ㅔo발행건으로 한다.
|
||||||
if (qty_buy < 1)
|
if (qty_buy < 1)
|
||||||
|
|||||||
811
SubProject/FPJ0000/Project/fProjectData.Designer.cs
generated
811
SubProject/FPJ0000/Project/fProjectData.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Drawing;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace FPJ0000
|
namespace FPJ0000
|
||||||
@@ -38,7 +35,7 @@ namespace FPJ0000
|
|||||||
this.cmbProcess.DataSource = dt_eetproc;
|
this.cmbProcess.DataSource = dt_eetproc;
|
||||||
|
|
||||||
//분류 - 190903
|
//분류 - 190903
|
||||||
var dt_cate = FCOMMON.DBM.getCodeTable("20");
|
var dt_cate = FCOMMON.DBM.getCodeTable("20", "code");
|
||||||
this.cmbCate.DisplayMember = "Value";
|
this.cmbCate.DisplayMember = "Value";
|
||||||
this.cmbCate.ValueMember = "Value";
|
this.cmbCate.ValueMember = "Value";
|
||||||
this.cmbCate.DataSource = dt_cate;
|
this.cmbCate.DataSource = dt_cate;
|
||||||
@@ -64,6 +61,10 @@ namespace FPJ0000
|
|||||||
//주간일지내역을 업데이트
|
//주간일지내역을 업데이트
|
||||||
refresh_History();
|
refresh_History();
|
||||||
|
|
||||||
|
//일업무현황 업데이트
|
||||||
|
this.taHistD.Fill(this.dsPRJ.EETGW_ProjecthistoryD, this.dr.idx);
|
||||||
|
//todo 업데이트
|
||||||
|
refreshTodo();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (dr.idx >= 0)
|
if (dr.idx >= 0)
|
||||||
@@ -121,9 +122,12 @@ namespace FPJ0000
|
|||||||
|
|
||||||
this.Validate();
|
this.Validate();
|
||||||
this.bs.EndEdit();
|
this.bs.EndEdit();
|
||||||
this.bsWeek.EndEdit();
|
this.bsHistWeek.EndEdit();
|
||||||
|
this.bsHistDay.EndEdit();
|
||||||
|
this.bsTodo.EndEdit();
|
||||||
|
this.taToDo.Update(this.dsPRJ.EETGW_ProjectToDo);
|
||||||
this.taHist.Update(this.dsPRJ.ProjectsHistory);
|
this.taHist.Update(this.dsPRJ.ProjectsHistory);
|
||||||
|
this.taHistD.Update(this.dsPRJ.EETGW_ProjecthistoryD);
|
||||||
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
//this.tableAdapterManager.UpdateAll(this.dsPRJ);
|
//this.tableAdapterManager.UpdateAll(this.dsPRJ);
|
||||||
}
|
}
|
||||||
@@ -169,12 +173,12 @@ namespace FPJ0000
|
|||||||
|
|
||||||
private void bindingNavigatorDeleteItem_Click(object sender, EventArgs e)
|
private void bindingNavigatorDeleteItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
var drv = this.bsWeek.Current as DataRowView;
|
var drv = this.bsHistWeek.Current as DataRowView;
|
||||||
if (drv == null) return;
|
if (drv == null) return;
|
||||||
var dlg = FCOMMON.Util.MsgQ("선택된 업무현황을 삭제하시겠습니까?" +
|
var dlg = FCOMMON.Util.MsgQ("선택된 업무현황을 삭제하시겠습니까?" +
|
||||||
"\n\n메일이 발송 완료된 경우 발송된 메일은 삭제되지 않습니다.");
|
"\n\n메일이 발송 완료된 경우 발송된 메일은 삭제되지 않습니다.");
|
||||||
if (dlg == System.Windows.Forms.DialogResult.Yes)
|
if (dlg == System.Windows.Forms.DialogResult.Yes)
|
||||||
this.bsWeek.RemoveCurrent();
|
this.bsHistWeek.RemoveCurrent();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
|
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
|
||||||
@@ -183,7 +187,7 @@ namespace FPJ0000
|
|||||||
var f = new fHistAdd(newdr);
|
var f = new fHistAdd(newdr);
|
||||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
{
|
{
|
||||||
bsWeek.EndEdit();
|
bsHistWeek.EndEdit();
|
||||||
this.dsPRJ.ProjectsHistory.AddProjectsHistoryRow(newdr);
|
this.dsPRJ.ProjectsHistory.AddProjectsHistoryRow(newdr);
|
||||||
}
|
}
|
||||||
else newdr.Delete();
|
else newdr.Delete();
|
||||||
@@ -213,7 +217,7 @@ namespace FPJ0000
|
|||||||
|
|
||||||
private void btwEdit_Click(object sender, EventArgs e)
|
private void btwEdit_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
var drv = this.bsWeek.Current as DataRowView;
|
var drv = this.bsHistWeek.Current as DataRowView;
|
||||||
if (drv == null) return;
|
if (drv == null) return;
|
||||||
|
|
||||||
var newdr = drv.Row as dsPRJ.ProjectsHistoryRow;
|
var newdr = drv.Row as dsPRJ.ProjectsHistoryRow;
|
||||||
@@ -327,5 +331,141 @@ namespace FPJ0000
|
|||||||
if (f.ShowDialog() == DialogResult.OK)
|
if (f.ShowDialog() == DialogResult.OK)
|
||||||
rt.Rtf = f.richTextBoxEx1.Rtf;
|
rt.Rtf = f.richTextBoxEx1.Rtf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void toolStripButton5_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//일업무현황 추가
|
||||||
|
var newdr = this.dsPRJ.EETGW_ProjecthistoryD.NewEETGW_ProjecthistoryDRow();
|
||||||
|
newdr.wuid = FCOMMON.info.Login.no;
|
||||||
|
newdr.wdate = DateTime.Now;
|
||||||
|
newdr.pidx = this.dr.idx;
|
||||||
|
newdr.pdate = DateTime.Now.ToShortDateString();
|
||||||
|
var f = new fHistAddDay(newdr);
|
||||||
|
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
|
{
|
||||||
|
this.bsHistDay.EndEdit();
|
||||||
|
this.dsPRJ.EETGW_ProjecthistoryD.AddEETGW_ProjecthistoryDRow(newdr);
|
||||||
|
}
|
||||||
|
else newdr.Delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton6_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsHistDay.Current as DataRowView;
|
||||||
|
if (drv == null) return;
|
||||||
|
|
||||||
|
var newdr = drv.Row as dsPRJ.EETGW_ProjecthistoryDRow;
|
||||||
|
var f = new fHistAddDay(newdr);
|
||||||
|
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||||
|
{
|
||||||
|
newdr.EndEdit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton7_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var drv = this.bsHistDay.Current as DataRowView;
|
||||||
|
if (drv == null) return;
|
||||||
|
var dlg = FCOMMON.Util.MsgQ("선택된 일 업무 현황을 삭제하시겠습니까?");
|
||||||
|
if (dlg == System.Windows.Forms.DialogResult.Yes)
|
||||||
|
this.bsHistDay.RemoveCurrent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton15_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
refreshTodo();
|
||||||
|
}
|
||||||
|
|
||||||
|
void refreshTodo()
|
||||||
|
{
|
||||||
|
taToDo.Fill(this.dsPRJ.EETGW_ProjectToDo, this.dr.idx);
|
||||||
|
this.dataGridView3.AutoResizeColumns();
|
||||||
|
updatetimetable();
|
||||||
|
formmatingdata();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton12_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//add
|
||||||
|
var newdr = this.dsPRJ.EETGW_ProjectToDo.NewEETGW_ProjectToDoRow();
|
||||||
|
newdr.pidx = this.dr.idx;
|
||||||
|
newdr.wuid = FCOMMON.info.Login.no;
|
||||||
|
newdr.wdate = DateTime.Now;
|
||||||
|
this.dsPRJ.EETGW_ProjectToDo.AddEETGW_ProjectToDoRow(newdr);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton13_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//edit
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton14_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//delete
|
||||||
|
this.bsTodo.RemoveCurrent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void toolStripButton16_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void updatetimetable()
|
||||||
|
{
|
||||||
|
this.panel9.Invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void formmatingdata()
|
||||||
|
{
|
||||||
|
//색상을 변경해준다. (그룹은 자료가 있으나, 항목에 자료가 없다면 타이틀이다)
|
||||||
|
foreach (DataGridViewRow dr in this.dataGridView3.Rows)
|
||||||
|
{
|
||||||
|
var o_grp = dr.Cells[1].Value;
|
||||||
|
var o_item = dr.Cells[4].Value;
|
||||||
|
var v_grp = string.Empty;
|
||||||
|
var v_item = string.Empty;
|
||||||
|
if (o_grp != null) v_grp = o_grp.ToString();
|
||||||
|
if (o_item != null) v_item = o_item.ToString();
|
||||||
|
if (v_grp.Equals("") == false && v_item.Equals(""))
|
||||||
|
dr.DefaultCellStyle.BackColor = System.Drawing.Color.White;
|
||||||
|
else
|
||||||
|
dr.DefaultCellStyle.BackColor = System.Drawing.Color.FromArgb(220, 220, 220);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void toolStripButton13_Click_1(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//save
|
||||||
|
try
|
||||||
|
{
|
||||||
|
this.Validate();
|
||||||
|
this.bsTodo.EndEdit();
|
||||||
|
var cnt = taToDo.Update(this.dsPRJ.EETGW_ProjectToDo);
|
||||||
|
this.dataGridView3.AutoResizeColumns();
|
||||||
|
updatetimetable();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
FCOMMON.Util.MsgE(ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void panel9_Paint(object sender, PaintEventArgs e)
|
||||||
|
{
|
||||||
|
//타임테이블을 그린다.
|
||||||
|
e.Graphics.Clear(System.Drawing.Color.Black);
|
||||||
|
e.Graphics.DrawString("time table", this.Font, System.Drawing.Brushes.White, 10, 10);
|
||||||
|
var lst = this.dsPRJ.EETGW_ProjectToDo.Where(t => t.title == null).OrderBy(t => t.sort).ToList();
|
||||||
|
if (lst.Count < 1) return;
|
||||||
|
var strh = panel9.Height / lst.Count;
|
||||||
|
for (int i = 0; i < lst.Count; i++)
|
||||||
|
{
|
||||||
|
var y = strh * i;
|
||||||
|
e.Graphics.DrawLine(System.Drawing.Pens.Yellow, 0, y, panel9.Width, y);
|
||||||
|
}
|
||||||
|
foreach (dsPRJ.EETGW_ProjectToDoRow dr in lst)
|
||||||
|
{
|
||||||
|
e.Graphics.DrawString(dr.title, this.Font, System.Drawing.Brushes.Black, 10, 10);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -320,9 +320,15 @@
|
|||||||
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="bsWeek.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="bsHistWeek.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>449, 17</value>
|
<value>449, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="bsHistWeek.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>449, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bindingNavigator1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>773, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="bindingNavigator1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="bindingNavigator1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>773, 17</value>
|
<value>773, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
@@ -420,4 +426,213 @@
|
|||||||
<metadata name="taSchedule.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="taSchedule.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>660, 17</value>
|
<value>660, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="sort.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="cate.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="sw.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="ww.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bsTodo.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>173, 56</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bnTodo.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 56</value>
|
||||||
|
</metadata>
|
||||||
|
<data name="toolStripButton8.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
|
||||||
|
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
|
||||||
|
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
|
||||||
|
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
|
||||||
|
Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
|
||||||
|
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton9.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
|
||||||
|
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
|
||||||
|
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
|
||||||
|
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton10.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
|
||||||
|
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
|
||||||
|
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
|
||||||
|
oAc0QjgAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton11.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
|
||||||
|
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
|
||||||
|
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
|
||||||
|
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||||
|
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||||
|
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton12.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
|
||||||
|
pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
|
||||||
|
Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
|
||||||
|
/5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
|
||||||
|
zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
|
||||||
|
IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
|
||||||
|
rkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton14.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||||
|
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||||
|
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||||
|
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||||
|
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||||
|
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||||
|
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton15.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
|
||||||
|
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
|
||||||
|
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
|
||||||
|
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
|
||||||
|
VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
|
||||||
|
c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
|
||||||
|
Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
|
||||||
|
mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
|
||||||
|
kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
|
||||||
|
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton13.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
|
||||||
|
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
|
||||||
|
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
|
||||||
|
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
|
||||||
|
VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
|
||||||
|
c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
|
||||||
|
Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
|
||||||
|
mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
|
||||||
|
kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
|
||||||
|
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="bindingNavigator2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>1161, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bsHistDay.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>929, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bsHistDay.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>929, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bindingNavigator2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>1161, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<data name="toolStripButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
|
||||||
|
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
|
||||||
|
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
|
||||||
|
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
|
||||||
|
Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
|
||||||
|
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
|
||||||
|
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
|
||||||
|
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
|
||||||
|
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
|
||||||
|
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
|
||||||
|
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
|
||||||
|
oAc0QjgAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
|
||||||
|
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
|
||||||
|
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
|
||||||
|
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||||
|
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||||
|
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton5.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
|
||||||
|
pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
|
||||||
|
Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
|
||||||
|
/5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
|
||||||
|
zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
|
||||||
|
IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
|
||||||
|
rkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
|
||||||
|
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
|
||||||
|
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
|
||||||
|
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
|
||||||
|
VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
|
||||||
|
c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
|
||||||
|
Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
|
||||||
|
mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
|
||||||
|
kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
|
||||||
|
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="toolStripButton7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
|
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||||
|
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||||
|
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||||
|
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||||
|
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||||
|
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||||
|
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="taHistD.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>1068, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="taToDo.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>266, 56</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
||||||
616
SubProject/FPJ0000/Project/fProjectPartListEdit.Designer.cs
generated
Normal file
616
SubProject/FPJ0000/Project/fProjectPartListEdit.Designer.cs
generated
Normal file
@@ -0,0 +1,616 @@
|
|||||||
|
namespace FPJ0000
|
||||||
|
{
|
||||||
|
partial class fProjectPartListEdit
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
this.components = new System.ComponentModel.Container();
|
||||||
|
System.Windows.Forms.Label pdateLabel;
|
||||||
|
System.Windows.Forms.Label statusLabel;
|
||||||
|
System.Windows.Forms.Label nameLabel;
|
||||||
|
System.Windows.Forms.Label userManagerLabel;
|
||||||
|
System.Windows.Forms.Label ordernoLabel;
|
||||||
|
System.Windows.Forms.Label pathLabel;
|
||||||
|
System.Windows.Forms.Label itemNameLabel;
|
||||||
|
System.Windows.Forms.Label itemSidLabel;
|
||||||
|
System.Windows.Forms.Label itemUnitLabel;
|
||||||
|
System.Windows.Forms.Label itemSupplyLabel;
|
||||||
|
System.Windows.Forms.Label itemManuLabel;
|
||||||
|
System.Windows.Forms.Label memoLabel;
|
||||||
|
System.Windows.Forms.Label qtyLabel;
|
||||||
|
System.Windows.Forms.Label priceLabel;
|
||||||
|
System.Windows.Forms.Label amtLabel;
|
||||||
|
System.Windows.Forms.Label qtybuyLabel;
|
||||||
|
System.Windows.Forms.Label qtyinLabel;
|
||||||
|
System.Windows.Forms.Label label1;
|
||||||
|
this.bs = new System.Windows.Forms.BindingSource(this.components);
|
||||||
|
this.dsPRJ = new FPJ0000.dsPRJ();
|
||||||
|
this.ta = new FPJ0000.dsPRJTableAdapters.ProjectPartStatusTableAdapter();
|
||||||
|
this.tableAdapterManager = new FPJ0000.dsPRJTableAdapters.TableAdapterManager();
|
||||||
|
this.pdateTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.statusTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.nameTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.userManagerTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.ordernoTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.pathTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.projectTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||||
|
this.panel1 = new System.Windows.Forms.Panel();
|
||||||
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||||||
|
this.panel3 = new System.Windows.Forms.Panel();
|
||||||
|
this.bbuyCheckBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.itemSupplyTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.qtyinTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.option1TextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.qtybuyTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.amtTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.priceTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.qtyTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.memoTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.itemManuTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.itemUnitTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.itemSidTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.itemNameTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.button1 = new System.Windows.Forms.Button();
|
||||||
|
this.panel2 = new System.Windows.Forms.Panel();
|
||||||
|
pdateLabel = new System.Windows.Forms.Label();
|
||||||
|
statusLabel = new System.Windows.Forms.Label();
|
||||||
|
nameLabel = new System.Windows.Forms.Label();
|
||||||
|
userManagerLabel = new System.Windows.Forms.Label();
|
||||||
|
ordernoLabel = new System.Windows.Forms.Label();
|
||||||
|
pathLabel = new System.Windows.Forms.Label();
|
||||||
|
itemNameLabel = new System.Windows.Forms.Label();
|
||||||
|
itemSidLabel = new System.Windows.Forms.Label();
|
||||||
|
itemUnitLabel = new System.Windows.Forms.Label();
|
||||||
|
itemSupplyLabel = new System.Windows.Forms.Label();
|
||||||
|
itemManuLabel = new System.Windows.Forms.Label();
|
||||||
|
memoLabel = new System.Windows.Forms.Label();
|
||||||
|
qtyLabel = new System.Windows.Forms.Label();
|
||||||
|
priceLabel = new System.Windows.Forms.Label();
|
||||||
|
amtLabel = new System.Windows.Forms.Label();
|
||||||
|
qtybuyLabel = new System.Windows.Forms.Label();
|
||||||
|
qtyinLabel = new System.Windows.Forms.Label();
|
||||||
|
label1 = new System.Windows.Forms.Label();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.dsPRJ)).BeginInit();
|
||||||
|
this.groupBox1.SuspendLayout();
|
||||||
|
this.groupBox2.SuspendLayout();
|
||||||
|
this.panel3.SuspendLayout();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// pdateLabel
|
||||||
|
//
|
||||||
|
pdateLabel.AutoSize = true;
|
||||||
|
pdateLabel.Location = new System.Drawing.Point(66, 25);
|
||||||
|
pdateLabel.Name = "pdateLabel";
|
||||||
|
pdateLabel.Size = new System.Drawing.Size(40, 12);
|
||||||
|
pdateLabel.TabIndex = 0;
|
||||||
|
pdateLabel.Text = "pdate:";
|
||||||
|
//
|
||||||
|
// statusLabel
|
||||||
|
//
|
||||||
|
statusLabel.AutoSize = true;
|
||||||
|
statusLabel.Location = new System.Drawing.Point(63, 52);
|
||||||
|
statusLabel.Name = "statusLabel";
|
||||||
|
statusLabel.Size = new System.Drawing.Size(43, 12);
|
||||||
|
statusLabel.TabIndex = 2;
|
||||||
|
statusLabel.Text = "status:";
|
||||||
|
//
|
||||||
|
// nameLabel
|
||||||
|
//
|
||||||
|
nameLabel.AutoSize = true;
|
||||||
|
nameLabel.Location = new System.Drawing.Point(65, 79);
|
||||||
|
nameLabel.Name = "nameLabel";
|
||||||
|
nameLabel.Size = new System.Drawing.Size(41, 12);
|
||||||
|
nameLabel.TabIndex = 4;
|
||||||
|
nameLabel.Text = "name:";
|
||||||
|
//
|
||||||
|
// userManagerLabel
|
||||||
|
//
|
||||||
|
userManagerLabel.AutoSize = true;
|
||||||
|
userManagerLabel.Location = new System.Drawing.Point(18, 106);
|
||||||
|
userManagerLabel.Name = "userManagerLabel";
|
||||||
|
userManagerLabel.Size = new System.Drawing.Size(88, 12);
|
||||||
|
userManagerLabel.TabIndex = 6;
|
||||||
|
userManagerLabel.Text = "user Manager:";
|
||||||
|
//
|
||||||
|
// ordernoLabel
|
||||||
|
//
|
||||||
|
ordernoLabel.AutoSize = true;
|
||||||
|
ordernoLabel.Location = new System.Drawing.Point(54, 133);
|
||||||
|
ordernoLabel.Name = "ordernoLabel";
|
||||||
|
ordernoLabel.Size = new System.Drawing.Size(44, 12);
|
||||||
|
ordernoLabel.TabIndex = 8;
|
||||||
|
ordernoLabel.Text = "CR/CF";
|
||||||
|
//
|
||||||
|
// pathLabel
|
||||||
|
//
|
||||||
|
pathLabel.AutoSize = true;
|
||||||
|
pathLabel.Location = new System.Drawing.Point(73, 160);
|
||||||
|
pathLabel.Name = "pathLabel";
|
||||||
|
pathLabel.Size = new System.Drawing.Size(33, 12);
|
||||||
|
pathLabel.TabIndex = 10;
|
||||||
|
pathLabel.Text = "path:";
|
||||||
|
//
|
||||||
|
// itemNameLabel
|
||||||
|
//
|
||||||
|
itemNameLabel.AutoSize = true;
|
||||||
|
itemNameLabel.Location = new System.Drawing.Point(223, 23);
|
||||||
|
itemNameLabel.Name = "itemNameLabel";
|
||||||
|
itemNameLabel.Size = new System.Drawing.Size(71, 12);
|
||||||
|
itemNameLabel.TabIndex = 0;
|
||||||
|
itemNameLabel.Text = "Item Name:";
|
||||||
|
//
|
||||||
|
// itemSidLabel
|
||||||
|
//
|
||||||
|
itemSidLabel.AutoSize = true;
|
||||||
|
itemSidLabel.Location = new System.Drawing.Point(131, 23);
|
||||||
|
itemSidLabel.Name = "itemSidLabel";
|
||||||
|
itemSidLabel.Size = new System.Drawing.Size(55, 12);
|
||||||
|
itemSidLabel.TabIndex = 2;
|
||||||
|
itemSidLabel.Text = "Item Sid:";
|
||||||
|
//
|
||||||
|
// itemUnitLabel
|
||||||
|
//
|
||||||
|
itemUnitLabel.AutoSize = true;
|
||||||
|
itemUnitLabel.Location = new System.Drawing.Point(35, 74);
|
||||||
|
itemUnitLabel.Name = "itemUnitLabel";
|
||||||
|
itemUnitLabel.Size = new System.Drawing.Size(58, 12);
|
||||||
|
itemUnitLabel.TabIndex = 4;
|
||||||
|
itemUnitLabel.Text = "Item Unit:";
|
||||||
|
//
|
||||||
|
// itemSupplyLabel
|
||||||
|
//
|
||||||
|
itemSupplyLabel.AutoSize = true;
|
||||||
|
itemSupplyLabel.Location = new System.Drawing.Point(97, 16);
|
||||||
|
itemSupplyLabel.Name = "itemSupplyLabel";
|
||||||
|
itemSupplyLabel.Size = new System.Drawing.Size(41, 12);
|
||||||
|
itemSupplyLabel.TabIndex = 6;
|
||||||
|
itemSupplyLabel.Text = "공급사";
|
||||||
|
//
|
||||||
|
// itemManuLabel
|
||||||
|
//
|
||||||
|
itemManuLabel.AutoSize = true;
|
||||||
|
itemManuLabel.Location = new System.Drawing.Point(620, 23);
|
||||||
|
itemManuLabel.Name = "itemManuLabel";
|
||||||
|
itemManuLabel.Size = new System.Drawing.Size(69, 12);
|
||||||
|
itemManuLabel.TabIndex = 8;
|
||||||
|
itemManuLabel.Text = "Item Manu:";
|
||||||
|
//
|
||||||
|
// memoLabel
|
||||||
|
//
|
||||||
|
memoLabel.AutoSize = true;
|
||||||
|
memoLabel.Location = new System.Drawing.Point(47, 101);
|
||||||
|
memoLabel.Name = "memoLabel";
|
||||||
|
memoLabel.Size = new System.Drawing.Size(45, 12);
|
||||||
|
memoLabel.TabIndex = 12;
|
||||||
|
memoLabel.Text = "memo:";
|
||||||
|
//
|
||||||
|
// qtyLabel
|
||||||
|
//
|
||||||
|
qtyLabel.AutoSize = true;
|
||||||
|
qtyLabel.Location = new System.Drawing.Point(214, 72);
|
||||||
|
qtyLabel.Name = "qtyLabel";
|
||||||
|
qtyLabel.Size = new System.Drawing.Size(26, 12);
|
||||||
|
qtyLabel.TabIndex = 14;
|
||||||
|
qtyLabel.Text = "qty:";
|
||||||
|
//
|
||||||
|
// priceLabel
|
||||||
|
//
|
||||||
|
priceLabel.AutoSize = true;
|
||||||
|
priceLabel.Location = new System.Drawing.Point(354, 72);
|
||||||
|
priceLabel.Name = "priceLabel";
|
||||||
|
priceLabel.Size = new System.Drawing.Size(37, 12);
|
||||||
|
priceLabel.TabIndex = 16;
|
||||||
|
priceLabel.Text = "price:";
|
||||||
|
//
|
||||||
|
// amtLabel
|
||||||
|
//
|
||||||
|
amtLabel.AutoSize = true;
|
||||||
|
amtLabel.Location = new System.Drawing.Point(503, 72);
|
||||||
|
amtLabel.Name = "amtLabel";
|
||||||
|
amtLabel.Size = new System.Drawing.Size(30, 12);
|
||||||
|
amtLabel.TabIndex = 18;
|
||||||
|
amtLabel.Text = "amt:";
|
||||||
|
//
|
||||||
|
// qtybuyLabel
|
||||||
|
//
|
||||||
|
qtybuyLabel.AutoSize = true;
|
||||||
|
qtybuyLabel.Location = new System.Drawing.Point(41, 125);
|
||||||
|
qtybuyLabel.Name = "qtybuyLabel";
|
||||||
|
qtybuyLabel.Size = new System.Drawing.Size(53, 12);
|
||||||
|
qtybuyLabel.TabIndex = 20;
|
||||||
|
qtybuyLabel.Text = "요청수량";
|
||||||
|
//
|
||||||
|
// qtyinLabel
|
||||||
|
//
|
||||||
|
qtyinLabel.AutoSize = true;
|
||||||
|
qtyinLabel.Location = new System.Drawing.Point(217, 125);
|
||||||
|
qtyinLabel.Name = "qtyinLabel";
|
||||||
|
qtyinLabel.Size = new System.Drawing.Size(53, 12);
|
||||||
|
qtyinLabel.TabIndex = 22;
|
||||||
|
qtyinLabel.Text = "입고수량";
|
||||||
|
//
|
||||||
|
// label1
|
||||||
|
//
|
||||||
|
label1.AutoSize = true;
|
||||||
|
label1.Location = new System.Drawing.Point(386, 125);
|
||||||
|
label1.Name = "label1";
|
||||||
|
label1.Size = new System.Drawing.Size(41, 12);
|
||||||
|
label1.TabIndex = 6;
|
||||||
|
label1.Text = "납기일";
|
||||||
|
//
|
||||||
|
// bs
|
||||||
|
//
|
||||||
|
this.bs.DataMember = "ProjectPartStatus";
|
||||||
|
this.bs.DataSource = this.dsPRJ;
|
||||||
|
//
|
||||||
|
// dsPRJ
|
||||||
|
//
|
||||||
|
this.dsPRJ.DataSetName = "dsPRJ";
|
||||||
|
this.dsPRJ.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
||||||
|
//
|
||||||
|
// ta
|
||||||
|
//
|
||||||
|
this.ta.ClearBeforeFill = true;
|
||||||
|
//
|
||||||
|
// tableAdapterManager
|
||||||
|
//
|
||||||
|
this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
|
||||||
|
this.tableAdapterManager.EETGW_NoteTableAdapter = null;
|
||||||
|
this.tableAdapterManager.EETGW_SaveCostTableAdapter = null;
|
||||||
|
this.tableAdapterManager.JobReportTableAdapter = null;
|
||||||
|
this.tableAdapterManager.ProjectPartStatusTableAdapter = this.ta;
|
||||||
|
this.tableAdapterManager.ProjectsHistoryTableAdapter = null;
|
||||||
|
this.tableAdapterManager.ProjectsIOMapTableAdapter = null;
|
||||||
|
this.tableAdapterManager.ProjectsMailListTableAdapter = null;
|
||||||
|
this.tableAdapterManager.ProjectsPartTableAdapter = null;
|
||||||
|
this.tableAdapterManager.ProjectsScheduleTableAdapter = null;
|
||||||
|
this.tableAdapterManager.ProjectsTableAdapter = null;
|
||||||
|
this.tableAdapterManager.SPMasterTableAdapter = null;
|
||||||
|
this.tableAdapterManager.UpdateOrder = FPJ0000.dsPRJTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
|
||||||
|
//
|
||||||
|
// pdateTextBox
|
||||||
|
//
|
||||||
|
this.pdateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "pdate", true));
|
||||||
|
this.pdateTextBox.Location = new System.Drawing.Point(112, 22);
|
||||||
|
this.pdateTextBox.Name = "pdateTextBox";
|
||||||
|
this.pdateTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.pdateTextBox.TabIndex = 1;
|
||||||
|
//
|
||||||
|
// statusTextBox
|
||||||
|
//
|
||||||
|
this.statusTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "status", true));
|
||||||
|
this.statusTextBox.Location = new System.Drawing.Point(112, 49);
|
||||||
|
this.statusTextBox.Name = "statusTextBox";
|
||||||
|
this.statusTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.statusTextBox.TabIndex = 3;
|
||||||
|
//
|
||||||
|
// nameTextBox
|
||||||
|
//
|
||||||
|
this.nameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "name", true));
|
||||||
|
this.nameTextBox.Location = new System.Drawing.Point(218, 76);
|
||||||
|
this.nameTextBox.Name = "nameTextBox";
|
||||||
|
this.nameTextBox.Size = new System.Drawing.Size(414, 21);
|
||||||
|
this.nameTextBox.TabIndex = 5;
|
||||||
|
//
|
||||||
|
// userManagerTextBox
|
||||||
|
//
|
||||||
|
this.userManagerTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "userManager", true));
|
||||||
|
this.userManagerTextBox.Location = new System.Drawing.Point(112, 103);
|
||||||
|
this.userManagerTextBox.Name = "userManagerTextBox";
|
||||||
|
this.userManagerTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.userManagerTextBox.TabIndex = 7;
|
||||||
|
//
|
||||||
|
// ordernoTextBox
|
||||||
|
//
|
||||||
|
this.ordernoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "orderno", true));
|
||||||
|
this.ordernoTextBox.Location = new System.Drawing.Point(112, 130);
|
||||||
|
this.ordernoTextBox.Name = "ordernoTextBox";
|
||||||
|
this.ordernoTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.ordernoTextBox.TabIndex = 9;
|
||||||
|
//
|
||||||
|
// pathTextBox
|
||||||
|
//
|
||||||
|
this.pathTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "path", true));
|
||||||
|
this.pathTextBox.Location = new System.Drawing.Point(112, 157);
|
||||||
|
this.pathTextBox.Name = "pathTextBox";
|
||||||
|
this.pathTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.pathTextBox.TabIndex = 11;
|
||||||
|
//
|
||||||
|
// projectTextBox
|
||||||
|
//
|
||||||
|
this.projectTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "Project", true));
|
||||||
|
this.projectTextBox.Location = new System.Drawing.Point(112, 76);
|
||||||
|
this.projectTextBox.Name = "projectTextBox";
|
||||||
|
this.projectTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.projectTextBox.TabIndex = 13;
|
||||||
|
//
|
||||||
|
// groupBox1
|
||||||
|
//
|
||||||
|
this.groupBox1.Controls.Add(this.pathTextBox);
|
||||||
|
this.groupBox1.Controls.Add(this.projectTextBox);
|
||||||
|
this.groupBox1.Controls.Add(this.pdateTextBox);
|
||||||
|
this.groupBox1.Controls.Add(pathLabel);
|
||||||
|
this.groupBox1.Controls.Add(pdateLabel);
|
||||||
|
this.groupBox1.Controls.Add(this.statusTextBox);
|
||||||
|
this.groupBox1.Controls.Add(ordernoLabel);
|
||||||
|
this.groupBox1.Controls.Add(statusLabel);
|
||||||
|
this.groupBox1.Controls.Add(this.ordernoTextBox);
|
||||||
|
this.groupBox1.Controls.Add(this.nameTextBox);
|
||||||
|
this.groupBox1.Controls.Add(userManagerLabel);
|
||||||
|
this.groupBox1.Controls.Add(nameLabel);
|
||||||
|
this.groupBox1.Controls.Add(this.userManagerTextBox);
|
||||||
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
|
this.groupBox1.Location = new System.Drawing.Point(10, 10);
|
||||||
|
this.groupBox1.Name = "groupBox1";
|
||||||
|
this.groupBox1.Size = new System.Drawing.Size(713, 186);
|
||||||
|
this.groupBox1.TabIndex = 14;
|
||||||
|
this.groupBox1.TabStop = false;
|
||||||
|
this.groupBox1.Text = "Project Information";
|
||||||
|
//
|
||||||
|
// panel1
|
||||||
|
//
|
||||||
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
|
this.panel1.Location = new System.Drawing.Point(10, 196);
|
||||||
|
this.panel1.Name = "panel1";
|
||||||
|
this.panel1.Size = new System.Drawing.Size(713, 5);
|
||||||
|
this.panel1.TabIndex = 15;
|
||||||
|
//
|
||||||
|
// groupBox2
|
||||||
|
//
|
||||||
|
this.groupBox2.Controls.Add(this.panel3);
|
||||||
|
this.groupBox2.Controls.Add(qtyinLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.qtyinTextBox);
|
||||||
|
this.groupBox2.Controls.Add(label1);
|
||||||
|
this.groupBox2.Controls.Add(qtybuyLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.option1TextBox);
|
||||||
|
this.groupBox2.Controls.Add(this.qtybuyTextBox);
|
||||||
|
this.groupBox2.Controls.Add(amtLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.amtTextBox);
|
||||||
|
this.groupBox2.Controls.Add(priceLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.priceTextBox);
|
||||||
|
this.groupBox2.Controls.Add(qtyLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.qtyTextBox);
|
||||||
|
this.groupBox2.Controls.Add(memoLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.memoTextBox);
|
||||||
|
this.groupBox2.Controls.Add(itemManuLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.itemManuTextBox);
|
||||||
|
this.groupBox2.Controls.Add(itemUnitLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.itemUnitTextBox);
|
||||||
|
this.groupBox2.Controls.Add(itemSidLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.itemSidTextBox);
|
||||||
|
this.groupBox2.Controls.Add(itemNameLabel);
|
||||||
|
this.groupBox2.Controls.Add(this.itemNameTextBox);
|
||||||
|
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
|
this.groupBox2.Location = new System.Drawing.Point(10, 201);
|
||||||
|
this.groupBox2.Name = "groupBox2";
|
||||||
|
this.groupBox2.Padding = new System.Windows.Forms.Padding(10);
|
||||||
|
this.groupBox2.Size = new System.Drawing.Size(713, 202);
|
||||||
|
this.groupBox2.TabIndex = 16;
|
||||||
|
this.groupBox2.TabStop = false;
|
||||||
|
this.groupBox2.Text = "Project Information";
|
||||||
|
//
|
||||||
|
// panel3
|
||||||
|
//
|
||||||
|
this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
|
||||||
|
this.panel3.Controls.Add(this.bbuyCheckBox);
|
||||||
|
this.panel3.Controls.Add(this.itemSupplyTextBox);
|
||||||
|
this.panel3.Controls.Add(itemSupplyLabel);
|
||||||
|
this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.panel3.Location = new System.Drawing.Point(10, 147);
|
||||||
|
this.panel3.Name = "panel3";
|
||||||
|
this.panel3.Size = new System.Drawing.Size(693, 45);
|
||||||
|
this.panel3.TabIndex = 14;
|
||||||
|
//
|
||||||
|
// bbuyCheckBox
|
||||||
|
//
|
||||||
|
this.bbuyCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("CheckState", this.bs, "bbuy", true));
|
||||||
|
this.bbuyCheckBox.Location = new System.Drawing.Point(12, 10);
|
||||||
|
this.bbuyCheckBox.Name = "bbuyCheckBox";
|
||||||
|
this.bbuyCheckBox.Size = new System.Drawing.Size(85, 24);
|
||||||
|
this.bbuyCheckBox.TabIndex = 25;
|
||||||
|
this.bbuyCheckBox.Text = "구매확정";
|
||||||
|
this.bbuyCheckBox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||||
|
this.bbuyCheckBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// itemSupplyTextBox
|
||||||
|
//
|
||||||
|
this.itemSupplyTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ItemSupply", true));
|
||||||
|
this.itemSupplyTextBox.Location = new System.Drawing.Point(143, 12);
|
||||||
|
this.itemSupplyTextBox.Name = "itemSupplyTextBox";
|
||||||
|
this.itemSupplyTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.itemSupplyTextBox.TabIndex = 7;
|
||||||
|
//
|
||||||
|
// qtyinTextBox
|
||||||
|
//
|
||||||
|
this.qtyinTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "qtyin", true));
|
||||||
|
this.qtyinTextBox.Location = new System.Drawing.Point(275, 121);
|
||||||
|
this.qtyinTextBox.Name = "qtyinTextBox";
|
||||||
|
this.qtyinTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.qtyinTextBox.TabIndex = 23;
|
||||||
|
//
|
||||||
|
// option1TextBox
|
||||||
|
//
|
||||||
|
this.option1TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "option2", true));
|
||||||
|
this.option1TextBox.Location = new System.Drawing.Point(433, 121);
|
||||||
|
this.option1TextBox.Name = "option1TextBox";
|
||||||
|
this.option1TextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.option1TextBox.TabIndex = 11;
|
||||||
|
//
|
||||||
|
// qtybuyTextBox
|
||||||
|
//
|
||||||
|
this.qtybuyTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "qtybuy", true));
|
||||||
|
this.qtybuyTextBox.Location = new System.Drawing.Point(102, 121);
|
||||||
|
this.qtybuyTextBox.Name = "qtybuyTextBox";
|
||||||
|
this.qtybuyTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.qtybuyTextBox.TabIndex = 21;
|
||||||
|
//
|
||||||
|
// amtTextBox
|
||||||
|
//
|
||||||
|
this.amtTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "amt", true));
|
||||||
|
this.amtTextBox.Location = new System.Drawing.Point(540, 68);
|
||||||
|
this.amtTextBox.Name = "amtTextBox";
|
||||||
|
this.amtTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.amtTextBox.TabIndex = 19;
|
||||||
|
//
|
||||||
|
// priceTextBox
|
||||||
|
//
|
||||||
|
this.priceTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "price", true));
|
||||||
|
this.priceTextBox.Location = new System.Drawing.Point(398, 68);
|
||||||
|
this.priceTextBox.Name = "priceTextBox";
|
||||||
|
this.priceTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.priceTextBox.TabIndex = 17;
|
||||||
|
//
|
||||||
|
// qtyTextBox
|
||||||
|
//
|
||||||
|
this.qtyTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "qty", true));
|
||||||
|
this.qtyTextBox.Location = new System.Drawing.Point(247, 68);
|
||||||
|
this.qtyTextBox.Name = "qtyTextBox";
|
||||||
|
this.qtyTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.qtyTextBox.TabIndex = 15;
|
||||||
|
//
|
||||||
|
// memoTextBox
|
||||||
|
//
|
||||||
|
this.memoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "memo", true));
|
||||||
|
this.memoTextBox.Location = new System.Drawing.Point(102, 95);
|
||||||
|
this.memoTextBox.Name = "memoTextBox";
|
||||||
|
this.memoTextBox.Size = new System.Drawing.Size(600, 21);
|
||||||
|
this.memoTextBox.TabIndex = 13;
|
||||||
|
//
|
||||||
|
// itemManuTextBox
|
||||||
|
//
|
||||||
|
this.itemManuTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ItemManu", true));
|
||||||
|
this.itemManuTextBox.Location = new System.Drawing.Point(600, 42);
|
||||||
|
this.itemManuTextBox.Name = "itemManuTextBox";
|
||||||
|
this.itemManuTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.itemManuTextBox.TabIndex = 9;
|
||||||
|
//
|
||||||
|
// itemUnitTextBox
|
||||||
|
//
|
||||||
|
this.itemUnitTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ItemUnit", true));
|
||||||
|
this.itemUnitTextBox.Location = new System.Drawing.Point(100, 68);
|
||||||
|
this.itemUnitTextBox.Name = "itemUnitTextBox";
|
||||||
|
this.itemUnitTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.itemUnitTextBox.TabIndex = 5;
|
||||||
|
//
|
||||||
|
// itemSidTextBox
|
||||||
|
//
|
||||||
|
this.itemSidTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ItemSid", true));
|
||||||
|
this.itemSidTextBox.Location = new System.Drawing.Point(100, 42);
|
||||||
|
this.itemSidTextBox.Name = "itemSidTextBox";
|
||||||
|
this.itemSidTextBox.Size = new System.Drawing.Size(100, 21);
|
||||||
|
this.itemSidTextBox.TabIndex = 3;
|
||||||
|
//
|
||||||
|
// itemNameTextBox
|
||||||
|
//
|
||||||
|
this.itemNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ItemName", true));
|
||||||
|
this.itemNameTextBox.Location = new System.Drawing.Point(206, 42);
|
||||||
|
this.itemNameTextBox.Name = "itemNameTextBox";
|
||||||
|
this.itemNameTextBox.Size = new System.Drawing.Size(388, 21);
|
||||||
|
this.itemNameTextBox.TabIndex = 1;
|
||||||
|
//
|
||||||
|
// button1
|
||||||
|
//
|
||||||
|
this.button1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.button1.Location = new System.Drawing.Point(10, 408);
|
||||||
|
this.button1.Name = "button1";
|
||||||
|
this.button1.Size = new System.Drawing.Size(713, 39);
|
||||||
|
this.button1.TabIndex = 17;
|
||||||
|
this.button1.Text = "저장";
|
||||||
|
this.button1.UseVisualStyleBackColor = true;
|
||||||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||||
|
//
|
||||||
|
// panel2
|
||||||
|
//
|
||||||
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.panel2.Location = new System.Drawing.Point(10, 403);
|
||||||
|
this.panel2.Name = "panel2";
|
||||||
|
this.panel2.Size = new System.Drawing.Size(713, 5);
|
||||||
|
this.panel2.TabIndex = 18;
|
||||||
|
//
|
||||||
|
// fProjectPartListEdit
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(733, 457);
|
||||||
|
this.Controls.Add(this.groupBox2);
|
||||||
|
this.Controls.Add(this.panel2);
|
||||||
|
this.Controls.Add(this.button1);
|
||||||
|
this.Controls.Add(this.panel1);
|
||||||
|
this.Controls.Add(this.groupBox1);
|
||||||
|
this.MinimizeBox = false;
|
||||||
|
this.Name = "fProjectPartListEdit";
|
||||||
|
this.Padding = new System.Windows.Forms.Padding(10);
|
||||||
|
this.Text = "프로젝트 파트리스트 데이터 편집";
|
||||||
|
this.Load += new System.EventHandler(this.fProjectData_Load);
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.dsPRJ)).EndInit();
|
||||||
|
this.groupBox1.ResumeLayout(false);
|
||||||
|
this.groupBox1.PerformLayout();
|
||||||
|
this.groupBox2.ResumeLayout(false);
|
||||||
|
this.groupBox2.PerformLayout();
|
||||||
|
this.panel3.ResumeLayout(false);
|
||||||
|
this.panel3.PerformLayout();
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private dsPRJ dsPRJ;
|
||||||
|
private System.Windows.Forms.BindingSource bs;
|
||||||
|
private dsPRJTableAdapters.ProjectPartStatusTableAdapter ta;
|
||||||
|
private dsPRJTableAdapters.TableAdapterManager tableAdapterManager;
|
||||||
|
private System.Windows.Forms.TextBox pdateTextBox;
|
||||||
|
private System.Windows.Forms.TextBox statusTextBox;
|
||||||
|
private System.Windows.Forms.TextBox nameTextBox;
|
||||||
|
private System.Windows.Forms.TextBox userManagerTextBox;
|
||||||
|
private System.Windows.Forms.TextBox ordernoTextBox;
|
||||||
|
private System.Windows.Forms.TextBox pathTextBox;
|
||||||
|
private System.Windows.Forms.TextBox projectTextBox;
|
||||||
|
private System.Windows.Forms.GroupBox groupBox1;
|
||||||
|
private System.Windows.Forms.Panel panel1;
|
||||||
|
private System.Windows.Forms.GroupBox groupBox2;
|
||||||
|
private System.Windows.Forms.Button button1;
|
||||||
|
private System.Windows.Forms.Panel panel2;
|
||||||
|
private System.Windows.Forms.TextBox memoTextBox;
|
||||||
|
private System.Windows.Forms.TextBox option1TextBox;
|
||||||
|
private System.Windows.Forms.TextBox itemManuTextBox;
|
||||||
|
private System.Windows.Forms.TextBox itemSupplyTextBox;
|
||||||
|
private System.Windows.Forms.TextBox itemUnitTextBox;
|
||||||
|
private System.Windows.Forms.TextBox itemSidTextBox;
|
||||||
|
private System.Windows.Forms.TextBox itemNameTextBox;
|
||||||
|
private System.Windows.Forms.CheckBox bbuyCheckBox;
|
||||||
|
private System.Windows.Forms.TextBox qtyinTextBox;
|
||||||
|
private System.Windows.Forms.TextBox qtybuyTextBox;
|
||||||
|
private System.Windows.Forms.TextBox amtTextBox;
|
||||||
|
private System.Windows.Forms.TextBox priceTextBox;
|
||||||
|
private System.Windows.Forms.TextBox qtyTextBox;
|
||||||
|
private System.Windows.Forms.Panel panel3;
|
||||||
|
}
|
||||||
|
}
|
||||||
39
SubProject/FPJ0000/Project/fProjectPartListEdit.cs
Normal file
39
SubProject/FPJ0000/Project/fProjectPartListEdit.cs
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace FPJ0000
|
||||||
|
{
|
||||||
|
public partial class fProjectPartListEdit : FCOMMON.fBase
|
||||||
|
{
|
||||||
|
int idx;
|
||||||
|
public fProjectPartListEdit(int idx_)
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
this.UseFormSetting = false;
|
||||||
|
this.idx = idx_;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void fProjectData_Load(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//자료를 불러온다
|
||||||
|
ta.FillByIdx(this.dsPRJ.ProjectPartStatus, FCOMMON.info.Login.gcode, this.idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void button1_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
this.Validate();
|
||||||
|
this.bs.EndEdit();
|
||||||
|
|
||||||
|
this.ta.Update(this.dsPRJ.ProjectPartStatus);
|
||||||
|
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
|
//this.tableAdapterManager.UpdateAll(this.dsPRJ);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
186
SubProject/FPJ0000/Project/fProjectPartListEdit.resx
Normal file
186
SubProject/FPJ0000/Project/fProjectPartListEdit.resx
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<metadata name="pdateLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="statusLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="nameLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="userManagerLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="ordernoLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="pathLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="itemNameLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="itemSidLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="itemUnitLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="itemSupplyLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="itemManuLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="memoLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="qtyLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="priceLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="amtLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="qtybuyLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="qtyinLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bs.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>100, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="dsPRJ.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="ta.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>164, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="tableAdapterManager.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>226, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
14
SubProject/FPJ0000/Properties/Settings.Designer.cs
generated
14
SubProject/FPJ0000/Properties/Settings.Designer.cs
generated
@@ -12,7 +12,7 @@ namespace FPJ0000.Properties {
|
|||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")]
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
@@ -44,5 +44,17 @@ namespace FPJ0000.Properties {
|
|||||||
return ((string)(this["EEEntities"]));
|
return ((string)(this["EEEntities"]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("10.131")]
|
||||||
|
public string ServerIP {
|
||||||
|
get {
|
||||||
|
return ((string)(this["ServerIP"]));
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
this["ServerIP"] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,5 +18,8 @@
|
|||||||
</SerializableConnectionString></DesignTimeValue>
|
</SerializableConnectionString></DesignTimeValue>
|
||||||
<Value Profile="(Default)">Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!</Value>
|
<Value Profile="(Default)">Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
|
<Setting Name="ServerIP" Type="System.String" Scope="User">
|
||||||
|
<Value Profile="(Default)">10.131</Value>
|
||||||
|
</Setting>
|
||||||
</Settings>
|
</Settings>
|
||||||
</SettingsFile>
|
</SettingsFile>
|
||||||
@@ -2,7 +2,11 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<configSections>
|
<configSections>
|
||||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||||
|
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
||||||
|
<section name="FPJ0000.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
||||||
|
</sectionGroup>
|
||||||
|
</configSections>
|
||||||
<connectionStrings>
|
<connectionStrings>
|
||||||
<add name="FEQ0000.Properties.Settings.gwcs" connectionString="Data Source=10.131.32.29;Initial Catalog=GroupWare;Persist Security Info=True;User ID=gw;Password=Amkor123!"
|
<add name="FEQ0000.Properties.Settings.gwcs" connectionString="Data Source=10.131.32.29;Initial Catalog=GroupWare;Persist Security Info=True;User ID=gw;Password=Amkor123!"
|
||||||
providerName="System.Data.SqlClient" />
|
providerName="System.Data.SqlClient" />
|
||||||
@@ -26,4 +30,11 @@
|
|||||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||||
</providers>
|
</providers>
|
||||||
</entityFramework>
|
</entityFramework>
|
||||||
|
<userSettings>
|
||||||
|
<FPJ0000.Properties.Settings>
|
||||||
|
<setting name="ServerIP" serializeAs="String">
|
||||||
|
<value>10.131</value>
|
||||||
|
</setting>
|
||||||
|
</FPJ0000.Properties.Settings>
|
||||||
|
</userSettings>
|
||||||
</configuration>
|
</configuration>
|
||||||
5145
SubProject/FPJ0000/dsPRJ.Designer.cs
generated
5145
SubProject/FPJ0000/dsPRJ.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -229,8 +229,9 @@ WHERE (idx = @idx)</CommandText>
|
|||||||
progress, import, asset, isdel, path, userhw2, orderno, dbo.getLastHistory(idx) AS lasthistory, gcode, category, userprocess, CMP_Background, CMP_Description, CMP_Before, CMP_After,
|
progress, import, asset, isdel, path, userhw2, orderno, dbo.getLastHistory(idx) AS lasthistory, gcode, category, userprocess, CMP_Background, CMP_Description, CMP_Before, CMP_After,
|
||||||
bCost, bFanOut
|
bCost, bFanOut
|
||||||
FROM Projects
|
FROM Projects
|
||||||
WHERE (ISNULL(name, N'') LIKE @search OR
|
WHERE (ISNULL(name, N'') LIKE @search) AND (ISNULL(isdel, 0) = 0) AND (gcode = @gcode) OR
|
||||||
ISNULL(memo, N'') LIKE @search) AND (ISNULL(isdel, 0) = 0) AND (gcode = @gcode)</CommandText>
|
(ISNULL(isdel, 0) = 0) AND (gcode = @gcode) AND (CAST(idx AS varchar) LIKE @search) OR
|
||||||
|
(ISNULL(isdel, 0) = 0) AND (gcode = @gcode) AND (ISNULL(memo, N'') LIKE @search)</CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="search" ColumnName="" DataSourceName="" DataTypeServer="unknown" DbType="String" Direction="Input" ParameterName="@search" Precision="0" Scale="0" Size="1024" SourceColumn="" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="search" ColumnName="" DataSourceName="" DataTypeServer="unknown" DbType="String" Direction="Input" ParameterName="@search" Precision="0" Scale="0" Size="1024" SourceColumn="" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Projects" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Projects" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
@@ -1552,6 +1553,322 @@ SELECT idx, gcode, isdel, asset, process, part, pdate, name, userManager, userma
|
|||||||
</Mappings>
|
</Mappings>
|
||||||
<Sources />
|
<Sources />
|
||||||
</TableAdapter>
|
</TableAdapter>
|
||||||
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ProjectPartStatusTableAdapter" GeneratorDataComponentClassName="ProjectPartStatusTableAdapter" Name="ProjectPartStatus" UserDataComponentName="ProjectPartStatusTableAdapter">
|
||||||
|
<MainSource>
|
||||||
|
<DbSource ConnectionRef="gwcs (Settings)" DbObjectType="Unknown" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
|
<DeleteCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
|
<CommandText>DELETE FROM ProjectsPart
|
||||||
|
WHERE (idx = @idx)</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="idx" ColumnName="idx" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</DeleteCommand>
|
||||||
|
<SelectCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>SELECT a.gcode, a.pdate, a.status, a.name, a.userManager, a.orderno, a.path, b.idx, b.no, b.Project, b.ItemGroup, b.ItemModel, b.ItemUnit, b.ItemName, b.ItemSid, b.ItemSupply, b.ItemSupplyidx,
|
||||||
|
b.ItemManu, b.Item, b.option1, b.option2, b.option3, b.qty, b.qtyn, b.price, b.amt, b.amtn, b.jago, b.remark, b.memo, b.wuid, b.wdate, b.import, b.qtyjago, b.qtybuy, b.qtyin, b.bbuy,
|
||||||
|
b.bconfirm
|
||||||
|
FROM Projects AS a INNER JOIN
|
||||||
|
ProjectsPart AS b ON a.idx = b.Project
|
||||||
|
WHERE (a.gcode = @gcode) AND (ISNULL(b.qtybuy, 0) > 0) AND (ISNULL(b.qtybuy, 0) > ISNULL(b.qtyin, 0)) AND (a.status IN ('진행', '완료', '완료(보고)'))
|
||||||
|
ORDER BY a.status DESC, a.idx, a.pdate</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Projects" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</SelectCommand>
|
||||||
|
<UpdateCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
|
<CommandText>UPDATE ProjectsPart
|
||||||
|
SET qtybuy = @qtybuy, qtyin = @qtyin, bbuy = @bbuy, bconfirm = @bconfirm, memo = @memo
|
||||||
|
WHERE (idx = @idx)</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="qtybuy" ColumnName="qtybuy" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@qtybuy" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="qtybuy" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="qtyin" ColumnName="qtyin" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@qtyin" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="qtyin" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="bbuy" ColumnName="bbuy" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@bbuy" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="bbuy" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="bconfirm" ColumnName="bconfirm" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@bconfirm" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="bconfirm" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="memo" ColumnName="memo" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="nvarchar(255)" DbType="String" Direction="Input" ParameterName="@memo" Precision="0" ProviderType="NVarChar" Scale="0" Size="255" SourceColumn="memo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="idx" ColumnName="idx" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</UpdateCommand>
|
||||||
|
</DbSource>
|
||||||
|
</MainSource>
|
||||||
|
<Mappings>
|
||||||
|
<Mapping SourceColumn="gcode" DataSetColumn="gcode" />
|
||||||
|
<Mapping SourceColumn="pdate" DataSetColumn="pdate" />
|
||||||
|
<Mapping SourceColumn="status" DataSetColumn="status" />
|
||||||
|
<Mapping SourceColumn="name" DataSetColumn="name" />
|
||||||
|
<Mapping SourceColumn="userManager" DataSetColumn="userManager" />
|
||||||
|
<Mapping SourceColumn="orderno" DataSetColumn="orderno" />
|
||||||
|
<Mapping SourceColumn="path" DataSetColumn="path" />
|
||||||
|
<Mapping SourceColumn="idx" DataSetColumn="idx" />
|
||||||
|
<Mapping SourceColumn="no" DataSetColumn="no" />
|
||||||
|
<Mapping SourceColumn="Project" DataSetColumn="Project" />
|
||||||
|
<Mapping SourceColumn="ItemGroup" DataSetColumn="ItemGroup" />
|
||||||
|
<Mapping SourceColumn="ItemModel" DataSetColumn="ItemModel" />
|
||||||
|
<Mapping SourceColumn="ItemUnit" DataSetColumn="ItemUnit" />
|
||||||
|
<Mapping SourceColumn="ItemName" DataSetColumn="ItemName" />
|
||||||
|
<Mapping SourceColumn="ItemSid" DataSetColumn="ItemSid" />
|
||||||
|
<Mapping SourceColumn="ItemSupply" DataSetColumn="ItemSupply" />
|
||||||
|
<Mapping SourceColumn="ItemSupplyidx" DataSetColumn="ItemSupplyidx" />
|
||||||
|
<Mapping SourceColumn="ItemManu" DataSetColumn="ItemManu" />
|
||||||
|
<Mapping SourceColumn="Item" DataSetColumn="Item" />
|
||||||
|
<Mapping SourceColumn="option1" DataSetColumn="option1" />
|
||||||
|
<Mapping SourceColumn="option2" DataSetColumn="option2" />
|
||||||
|
<Mapping SourceColumn="option3" DataSetColumn="option3" />
|
||||||
|
<Mapping SourceColumn="qty" DataSetColumn="qty" />
|
||||||
|
<Mapping SourceColumn="qtyn" DataSetColumn="qtyn" />
|
||||||
|
<Mapping SourceColumn="price" DataSetColumn="price" />
|
||||||
|
<Mapping SourceColumn="amt" DataSetColumn="amt" />
|
||||||
|
<Mapping SourceColumn="amtn" DataSetColumn="amtn" />
|
||||||
|
<Mapping SourceColumn="jago" DataSetColumn="jago" />
|
||||||
|
<Mapping SourceColumn="remark" DataSetColumn="remark" />
|
||||||
|
<Mapping SourceColumn="memo" DataSetColumn="memo" />
|
||||||
|
<Mapping SourceColumn="wuid" DataSetColumn="wuid" />
|
||||||
|
<Mapping SourceColumn="wdate" DataSetColumn="wdate" />
|
||||||
|
<Mapping SourceColumn="import" DataSetColumn="import" />
|
||||||
|
<Mapping SourceColumn="qtyjago" DataSetColumn="qtyjago" />
|
||||||
|
<Mapping SourceColumn="qtybuy" DataSetColumn="qtybuy" />
|
||||||
|
<Mapping SourceColumn="qtyin" DataSetColumn="qtyin" />
|
||||||
|
<Mapping SourceColumn="bbuy" DataSetColumn="bbuy" />
|
||||||
|
<Mapping SourceColumn="bconfirm" DataSetColumn="bconfirm" />
|
||||||
|
</Mappings>
|
||||||
|
<Sources>
|
||||||
|
<DbSource ConnectionRef="gwcs (Settings)" DbObjectType="Unknown" FillMethodModifier="Public" FillMethodName="FillByIdx" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetByIdx" GeneratorSourceName="FillByIdx" GetMethodModifier="Public" GetMethodName="GetByIdx" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetByIdx" UserSourceName="FillByIdx">
|
||||||
|
<SelectCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
|
<CommandText>SELECT a.gcode, a.pdate, a.status, a.name, a.userManager, a.orderno, a.path, b.idx, b.no, b.Project, b.ItemGroup, b.ItemModel, b.ItemUnit, b.ItemName, b.ItemSid, b.ItemSupply, b.ItemSupplyidx,
|
||||||
|
b.ItemManu, b.Item, b.option1, b.option2, b.option3, b.qty, b.qtyn, b.price, b.amt, b.amtn, b.jago, b.remark, b.memo, b.wuid, b.wdate, b.import, b.qtyjago, b.qtybuy, b.qtyin, b.bbuy,
|
||||||
|
b.bconfirm
|
||||||
|
FROM Projects AS a INNER JOIN
|
||||||
|
ProjectsPart AS b ON a.idx = b.Project
|
||||||
|
WHERE (a.gcode = @gcode) and (b.idx=@idx) AND (ISNULL(b.qtybuy, 0) > 0) AND (ISNULL(b.qtybuy, 0) > ISNULL(b.qtyin, 0)) AND (a.status IN ('진행', '완료', '완료(보고)'))
|
||||||
|
</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.Projects" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="idx" ColumnName="idx" DataSourceName="EE.dbo.ProjectsPart" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</SelectCommand>
|
||||||
|
</DbSource>
|
||||||
|
</Sources>
|
||||||
|
</TableAdapter>
|
||||||
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="EETGW_ProjecthistoryDTableAdapter" GeneratorDataComponentClassName="EETGW_ProjecthistoryDTableAdapter" Name="EETGW_ProjecthistoryD" UserDataComponentName="EETGW_ProjecthistoryDTableAdapter">
|
||||||
|
<MainSource>
|
||||||
|
<DbSource ConnectionRef="gwcs (Settings)" DbObjectName="EE.dbo.EETGW_ProjecthistoryD" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
|
<DeleteCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>DELETE FROM [EETGW_ProjecthistoryD] WHERE (([idx] = @Original_idx) AND ([pidx] = @Original_pidx) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_div = 1 AND [div] IS NULL) OR ([div] = @Original_div)) AND ((@IsNull_mailsend = 1 AND [mailsend] IS NULL) OR ([mailsend] = @Original_mailsend)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate))</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_pdate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_div" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="div" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_div" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="div" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mailsend" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mailsend" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@Original_mailsend" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="mailsend" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</DeleteCommand>
|
||||||
|
<InsertCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>INSERT INTO [EETGW_ProjecthistoryD] ([pidx], [pdate], [div], [remark], [remark2], [mailsend], [wuid], [wdate]) VALUES (@pidx, @pdate, @div, @remark, @remark2, @mailsend, @wuid, @wdate);
|
||||||
|
SELECT idx, pidx, pdate, div, remark, remark2, mailsend, wuid, wdate FROM EETGW_ProjecthistoryD WHERE (idx = SCOPE_IDENTITY()) ORDER BY pdate DESC</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@div" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="div" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark2" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@mailsend" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="mailsend" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</InsertCommand>
|
||||||
|
<SelectCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
|
<CommandText>SELECT idx, pidx, pdate, div, remark, remark2, mailsend, wuid, wdate
|
||||||
|
FROM EETGW_ProjecthistoryD
|
||||||
|
WHERE (pidx = @pidx)
|
||||||
|
ORDER BY pdate DESC</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="pidx" ColumnName="pidx" DataSourceName="EE.dbo.EETGW_ProjecthistoryD" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@pidx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</SelectCommand>
|
||||||
|
<UpdateCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>UPDATE [EETGW_ProjecthistoryD] SET [pidx] = @pidx, [pdate] = @pdate, [div] = @div, [remark] = @remark, [remark2] = @remark2, [mailsend] = @mailsend, [wuid] = @wuid, [wdate] = @wdate WHERE (([idx] = @Original_idx) AND ([pidx] = @Original_pidx) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_div = 1 AND [div] IS NULL) OR ([div] = @Original_div)) AND ((@IsNull_mailsend = 1 AND [mailsend] IS NULL) OR ([mailsend] = @Original_mailsend)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate));
|
||||||
|
SELECT idx, pidx, pdate, div, remark, remark2, mailsend, wuid, wdate FROM EETGW_ProjecthistoryD WHERE (idx = @idx) ORDER BY pdate DESC</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@div" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="div" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark2" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@mailsend" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="mailsend" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_pdate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_div" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="div" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_div" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="div" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mailsend" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mailsend" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@Original_mailsend" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="mailsend" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="idx" ColumnName="idx" DataSourceName="EE.dbo.EETGW_ProjecthistoryD" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</UpdateCommand>
|
||||||
|
</DbSource>
|
||||||
|
</MainSource>
|
||||||
|
<Mappings>
|
||||||
|
<Mapping SourceColumn="idx" DataSetColumn="idx" />
|
||||||
|
<Mapping SourceColumn="pidx" DataSetColumn="pidx" />
|
||||||
|
<Mapping SourceColumn="pdate" DataSetColumn="pdate" />
|
||||||
|
<Mapping SourceColumn="div" DataSetColumn="div" />
|
||||||
|
<Mapping SourceColumn="remark" DataSetColumn="remark" />
|
||||||
|
<Mapping SourceColumn="remark2" DataSetColumn="remark2" />
|
||||||
|
<Mapping SourceColumn="mailsend" DataSetColumn="mailsend" />
|
||||||
|
<Mapping SourceColumn="wuid" DataSetColumn="wuid" />
|
||||||
|
<Mapping SourceColumn="wdate" DataSetColumn="wdate" />
|
||||||
|
</Mappings>
|
||||||
|
<Sources />
|
||||||
|
</TableAdapter>
|
||||||
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="EETGW_ProjectToDoTableAdapter" GeneratorDataComponentClassName="EETGW_ProjectToDoTableAdapter" Name="EETGW_ProjectToDo" UserDataComponentName="EETGW_ProjectToDoTableAdapter">
|
||||||
|
<MainSource>
|
||||||
|
<DbSource ConnectionRef="gwcs (Settings)" DbObjectName="EE.dbo.EETGW_ProjectToDo" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
|
<DeleteCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>DELETE FROM [EETGW_ProjectToDo] WHERE (([idx] = @Original_idx) AND ([pidx] = @Original_pidx) AND ((@IsNull_title = 1 AND [title] IS NULL) OR ([title] = @Original_title)) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_edate = 1 AND [edate] IS NULL) OR ([edate] = @Original_edate)) AND ((@IsNull_process = 1 AND [process] IS NULL) OR ([process] = @Original_process)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate) AND ((@IsNull_sort = 1 AND [sort] IS NULL) OR ([sort] = @Original_sort)) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_ww = 1 AND [ww] IS NULL) OR ([ww] = @Original_ww)) AND ((@IsNull_sw = 1 AND [sw] IS NULL) OR ([sw] = @Original_sw)))</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_title" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="title" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_title" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="title" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_pdate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_edate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="edate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_edate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="edate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_process" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="process" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_process" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="process" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_sort" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sort" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_sort" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="sort" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_cate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="cate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cate" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_ww" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ww" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ww" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ww" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_sw" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sw" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_sw" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sw" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</DeleteCommand>
|
||||||
|
<InsertCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>INSERT INTO [EETGW_ProjectToDo] ([pidx], [title], [pdate], [edate], [process], [remark], [remark2], [wuid], [wdate], [sort], [cate], [ww], [sw]) VALUES (@pidx, @title, @pdate, @edate, @process, @remark, @remark2, @wuid, @wdate, @sort, @cate, @ww, @sw);
|
||||||
|
SELECT idx, pidx, title, pdate, edate, process, remark, remark2, wuid, wdate, sort, cate, ww, sw FROM EETGW_ProjectToDo WHERE (idx = SCOPE_IDENTITY()) ORDER BY sort, pdate</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@title" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="title" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@edate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="edate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@process" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="process" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark2" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@sort" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="sort" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cate" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@ww" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ww" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@sw" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sw" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</InsertCommand>
|
||||||
|
<SelectCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>SELECT idx, pidx, title, pdate, edate, process, remark, remark2, wuid, wdate, sort, cate, ww, sw
|
||||||
|
FROM EETGW_ProjectToDo
|
||||||
|
WHERE (pidx = @pidx)
|
||||||
|
ORDER BY sort, pdate</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="pidx" ColumnName="pidx" DataSourceName="EE.dbo.EETGW_ProjectToDo" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@pidx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</SelectCommand>
|
||||||
|
<UpdateCommand>
|
||||||
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
|
<CommandText>UPDATE [EETGW_ProjectToDo] SET [pidx] = @pidx, [title] = @title, [pdate] = @pdate, [edate] = @edate, [process] = @process, [remark] = @remark, [remark2] = @remark2, [wuid] = @wuid, [wdate] = @wdate, [sort] = @sort, [cate] = @cate, [ww] = @ww, [sw] = @sw WHERE (([idx] = @Original_idx) AND ([pidx] = @Original_pidx) AND ((@IsNull_title = 1 AND [title] IS NULL) OR ([title] = @Original_title)) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_edate = 1 AND [edate] IS NULL) OR ([edate] = @Original_edate)) AND ((@IsNull_process = 1 AND [process] IS NULL) OR ([process] = @Original_process)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate) AND ((@IsNull_sort = 1 AND [sort] IS NULL) OR ([sort] = @Original_sort)) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_ww = 1 AND [ww] IS NULL) OR ([ww] = @Original_ww)) AND ((@IsNull_sw = 1 AND [sw] IS NULL) OR ([sw] = @Original_sw)));
|
||||||
|
SELECT idx, pidx, title, pdate, edate, process, remark, remark2, wuid, wdate, sort, cate, ww, sw FROM EETGW_ProjectToDo WHERE (idx = @idx) ORDER BY sort, pdate</CommandText>
|
||||||
|
<Parameters>
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@title" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="title" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@edate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="edate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@process" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="process" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@remark2" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="remark2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@sort" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="sort" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cate" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cate" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@ww" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ww" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@sw" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sw" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_pidx" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pidx" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_title" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="title" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_title" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="title" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_pdate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_pdate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="pdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_edate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="edate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_edate" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="edate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_process" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="process" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_process" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="process" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_wuid" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="wuid" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_wdate" Precision="0" ProviderType="SmallDateTime" Scale="0" Size="0" SourceColumn="wdate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_sort" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sort" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_sort" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="sort" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_cate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="cate" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cate" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cate" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_ww" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ww" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ww" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ww" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_sw" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sw" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_sw" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="sw" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="idx" ColumnName="idx" DataSourceName="EE.dbo.EETGW_ProjectToDo" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idx" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idx" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
</Parameters>
|
||||||
|
</DbCommand>
|
||||||
|
</UpdateCommand>
|
||||||
|
</DbSource>
|
||||||
|
</MainSource>
|
||||||
|
<Mappings>
|
||||||
|
<Mapping SourceColumn="idx" DataSetColumn="idx" />
|
||||||
|
<Mapping SourceColumn="pidx" DataSetColumn="pidx" />
|
||||||
|
<Mapping SourceColumn="title" DataSetColumn="title" />
|
||||||
|
<Mapping SourceColumn="pdate" DataSetColumn="pdate" />
|
||||||
|
<Mapping SourceColumn="edate" DataSetColumn="edate" />
|
||||||
|
<Mapping SourceColumn="process" DataSetColumn="process" />
|
||||||
|
<Mapping SourceColumn="remark" DataSetColumn="remark" />
|
||||||
|
<Mapping SourceColumn="remark2" DataSetColumn="remark2" />
|
||||||
|
<Mapping SourceColumn="wuid" DataSetColumn="wuid" />
|
||||||
|
<Mapping SourceColumn="wdate" DataSetColumn="wdate" />
|
||||||
|
<Mapping SourceColumn="sort" DataSetColumn="sort" />
|
||||||
|
<Mapping SourceColumn="cate" DataSetColumn="cate" />
|
||||||
|
<Mapping SourceColumn="ww" DataSetColumn="ww" />
|
||||||
|
<Mapping SourceColumn="sw" DataSetColumn="sw" />
|
||||||
|
</Mappings>
|
||||||
|
<Sources />
|
||||||
|
</TableAdapter>
|
||||||
</Tables>
|
</Tables>
|
||||||
<Sources>
|
<Sources>
|
||||||
<DbSource ConnectionRef="gwcs (Settings)" DbObjectName="GroupWare.dbo.CopyProjectData" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="CopyProjectData" MethodsParameterType="CLR" Modifier="Public" Name="CopyProjectData" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="CopyProjectData">
|
<DbSource ConnectionRef="gwcs (Settings)" DbObjectName="GroupWare.dbo.CopyProjectData" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="CopyProjectData" MethodsParameterType="CLR" Modifier="Public" Name="CopyProjectData" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="CopyProjectData">
|
||||||
@@ -2503,6 +2820,289 @@ SELECT idx, gcode, isdel, asset, process, part, pdate, name, userManager, userma
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
|
<xs:element name="ProjectPartStatus" msprop:Generator_TableClassName="ProjectPartStatusDataTable" msprop:Generator_TableVarName="tableProjectPartStatus" msprop:Generator_RowChangedName="ProjectPartStatusRowChanged" msprop:Generator_TablePropName="ProjectPartStatus" msprop:Generator_RowDeletingName="ProjectPartStatusRowDeleting" msprop:Generator_RowChangingName="ProjectPartStatusRowChanging" msprop:Generator_RowEvHandlerName="ProjectPartStatusRowChangeEventHandler" msprop:Generator_RowDeletedName="ProjectPartStatusRowDeleted" msprop:Generator_RowClassName="ProjectPartStatusRow" msprop:Generator_UserTableName="ProjectPartStatus" msprop:Generator_RowEvArgName="ProjectPartStatusRowChangeEvent">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="gcode" msprop:Generator_ColumnVarNameInTable="columngcode" msprop:Generator_ColumnPropNameInRow="gcode" msprop:Generator_ColumnPropNameInTable="gcodeColumn" msprop:Generator_UserColumnName="gcode">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="10" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="pdate" msprop:Generator_ColumnVarNameInTable="columnpdate" msprop:Generator_ColumnPropNameInRow="pdate" msprop:Generator_ColumnPropNameInTable="pdateColumn" msprop:Generator_UserColumnName="pdate" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="10" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="status" msprop:Generator_ColumnVarNameInTable="columnstatus" msprop:Generator_ColumnPropNameInRow="status" msprop:Generator_ColumnPropNameInTable="statusColumn" msprop:Generator_UserColumnName="status" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="50" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="name" msprop:Generator_ColumnVarNameInTable="columnname" msprop:Generator_ColumnPropNameInRow="name" msprop:Generator_ColumnPropNameInTable="nameColumn" msprop:Generator_UserColumnName="name" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="userManager" msprop:Generator_ColumnVarNameInTable="columnuserManager" msprop:Generator_ColumnPropNameInRow="userManager" msprop:Generator_ColumnPropNameInTable="userManagerColumn" msprop:Generator_UserColumnName="userManager" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="50" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="orderno" msprop:Generator_ColumnVarNameInTable="columnorderno" msprop:Generator_ColumnPropNameInRow="orderno" msprop:Generator_ColumnPropNameInTable="ordernoColumn" msprop:Generator_UserColumnName="orderno" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="50" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="path" msprop:Generator_ColumnVarNameInTable="columnpath" msprop:Generator_ColumnPropNameInRow="path" msprop:Generator_ColumnPropNameInTable="pathColumn" msprop:Generator_UserColumnName="path" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="300" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
|
<xs:element name="no" msprop:Generator_ColumnVarNameInTable="columnno" msprop:Generator_ColumnPropNameInRow="no" msprop:Generator_ColumnPropNameInTable="noColumn" msprop:Generator_UserColumnName="no" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="Project" msprop:Generator_ColumnVarNameInTable="columnProject" msprop:Generator_ColumnPropNameInRow="Project" msprop:Generator_ColumnPropNameInTable="ProjectColumn" msprop:Generator_UserColumnName="Project" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="ItemGroup" msprop:Generator_ColumnVarNameInTable="columnItemGroup" msprop:Generator_ColumnPropNameInRow="ItemGroup" msprop:Generator_ColumnPropNameInTable="ItemGroupColumn" msprop:Generator_UserColumnName="ItemGroup" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="100" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ItemModel" msprop:Generator_ColumnVarNameInTable="columnItemModel" msprop:Generator_ColumnPropNameInRow="ItemModel" msprop:Generator_ColumnPropNameInTable="ItemModelColumn" msprop:Generator_UserColumnName="ItemModel" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="100" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ItemUnit" msprop:Generator_ColumnVarNameInTable="columnItemUnit" msprop:Generator_ColumnPropNameInRow="ItemUnit" msprop:Generator_ColumnPropNameInTable="ItemUnitColumn" msprop:Generator_UserColumnName="ItemUnit" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="50" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ItemName" msprop:Generator_ColumnVarNameInTable="columnItemName" msprop:Generator_ColumnPropNameInRow="ItemName" msprop:Generator_ColumnPropNameInTable="ItemNameColumn" msprop:Generator_UserColumnName="ItemName" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="100" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ItemSid" msprop:Generator_ColumnVarNameInTable="columnItemSid" msprop:Generator_ColumnPropNameInRow="ItemSid" msprop:Generator_ColumnPropNameInTable="ItemSidColumn" msprop:Generator_UserColumnName="ItemSid" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="50" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ItemSupply" msprop:Generator_ColumnVarNameInTable="columnItemSupply" msprop:Generator_ColumnPropNameInRow="ItemSupply" msprop:Generator_ColumnPropNameInTable="ItemSupplyColumn" msprop:Generator_UserColumnName="ItemSupply" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="100" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ItemSupplyidx" msprop:Generator_ColumnVarNameInTable="columnItemSupplyidx" msprop:Generator_ColumnPropNameInRow="ItemSupplyidx" msprop:Generator_ColumnPropNameInTable="ItemSupplyidxColumn" msprop:Generator_UserColumnName="ItemSupplyidx" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="ItemManu" msprop:Generator_ColumnVarNameInTable="columnItemManu" msprop:Generator_ColumnPropNameInRow="ItemManu" msprop:Generator_ColumnPropNameInTable="ItemManuColumn" msprop:Generator_UserColumnName="ItemManu" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="100" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Item" msprop:Generator_ColumnVarNameInTable="columnItem" msprop:Generator_ColumnPropNameInRow="Item" msprop:Generator_ColumnPropNameInTable="ItemColumn" msprop:Generator_UserColumnName="Item" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="option1" msprop:Generator_ColumnVarNameInTable="columnoption1" msprop:Generator_ColumnPropNameInRow="option1" msprop:Generator_ColumnPropNameInTable="option1Column" msprop:Generator_UserColumnName="option1" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="option2" msprop:Generator_ColumnVarNameInTable="columnoption2" msprop:Generator_ColumnPropNameInRow="option2" msprop:Generator_ColumnPropNameInTable="option2Column" msprop:Generator_UserColumnName="option2" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="option3" msprop:Generator_ColumnVarNameInTable="columnoption3" msprop:Generator_ColumnPropNameInRow="option3" msprop:Generator_ColumnPropNameInTable="option3Column" msprop:Generator_UserColumnName="option3" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="qty" msprop:Generator_ColumnVarNameInTable="columnqty" msprop:Generator_ColumnPropNameInRow="qty" msprop:Generator_ColumnPropNameInTable="qtyColumn" msprop:Generator_UserColumnName="qty" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="qtyn" msprop:Generator_ColumnVarNameInTable="columnqtyn" msprop:Generator_ColumnPropNameInRow="qtyn" msprop:Generator_ColumnPropNameInTable="qtynColumn" msprop:Generator_UserColumnName="qtyn" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="price" msprop:Generator_ColumnVarNameInTable="columnprice" msprop:Generator_ColumnPropNameInRow="price" msprop:Generator_ColumnPropNameInTable="priceColumn" msprop:Generator_UserColumnName="price" type="xs:decimal" minOccurs="0" />
|
||||||
|
<xs:element name="amt" msprop:Generator_ColumnVarNameInTable="columnamt" msprop:Generator_ColumnPropNameInRow="amt" msprop:Generator_ColumnPropNameInTable="amtColumn" msprop:Generator_UserColumnName="amt" type="xs:decimal" minOccurs="0" />
|
||||||
|
<xs:element name="amtn" msprop:Generator_ColumnVarNameInTable="columnamtn" msprop:Generator_ColumnPropNameInRow="amtn" msprop:Generator_ColumnPropNameInTable="amtnColumn" msprop:Generator_UserColumnName="amtn" type="xs:decimal" minOccurs="0" />
|
||||||
|
<xs:element name="jago" msprop:Generator_ColumnVarNameInTable="columnjago" msprop:Generator_ColumnPropNameInRow="jago" msprop:Generator_ColumnPropNameInTable="jagoColumn" msprop:Generator_UserColumnName="jago" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="remark" msprop:Generator_ColumnVarNameInTable="columnremark" msprop:Generator_ColumnPropNameInRow="remark" msprop:Generator_ColumnPropNameInTable="remarkColumn" msprop:Generator_UserColumnName="remark" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="memo" msprop:Generator_ColumnVarNameInTable="columnmemo" msprop:Generator_ColumnPropNameInRow="memo" msprop:Generator_ColumnPropNameInTable="memoColumn" msprop:Generator_UserColumnName="memo" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="wuid" msprop:Generator_ColumnVarNameInTable="columnwuid" msprop:Generator_ColumnPropNameInRow="wuid" msprop:Generator_ColumnPropNameInTable="wuidColumn" msprop:Generator_UserColumnName="wuid">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="20" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="wdate" msprop:Generator_ColumnVarNameInTable="columnwdate" msprop:Generator_ColumnPropNameInRow="wdate" msprop:Generator_ColumnPropNameInTable="wdateColumn" msprop:Generator_UserColumnName="wdate" type="xs:dateTime" />
|
||||||
|
<xs:element name="import" msprop:Generator_ColumnVarNameInTable="columnimport" msprop:Generator_ColumnPropNameInRow="import" msprop:Generator_ColumnPropNameInTable="importColumn" msprop:Generator_UserColumnName="import" type="xs:boolean" minOccurs="0" />
|
||||||
|
<xs:element name="qtyjago" msprop:Generator_ColumnVarNameInTable="columnqtyjago" msprop:Generator_ColumnPropNameInRow="qtyjago" msprop:Generator_ColumnPropNameInTable="qtyjagoColumn" msprop:Generator_UserColumnName="qtyjago" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="50" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="qtybuy" msprop:Generator_ColumnVarNameInTable="columnqtybuy" msprop:Generator_ColumnPropNameInRow="qtybuy" msprop:Generator_ColumnPropNameInTable="qtybuyColumn" msprop:Generator_UserColumnName="qtybuy" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="qtyin" msprop:Generator_ColumnVarNameInTable="columnqtyin" msprop:Generator_ColumnPropNameInRow="qtyin" msprop:Generator_ColumnPropNameInTable="qtyinColumn" msprop:Generator_UserColumnName="qtyin" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="bbuy" msprop:Generator_ColumnVarNameInTable="columnbbuy" msprop:Generator_ColumnPropNameInRow="bbuy" msprop:Generator_ColumnPropNameInTable="bbuyColumn" msprop:Generator_UserColumnName="bbuy" type="xs:boolean" minOccurs="0" />
|
||||||
|
<xs:element name="bconfirm" msprop:Generator_ColumnVarNameInTable="columnbconfirm" msprop:Generator_ColumnPropNameInRow="bconfirm" msprop:Generator_ColumnPropNameInTable="bconfirmColumn" msprop:Generator_UserColumnName="bconfirm" type="xs:boolean" minOccurs="0" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EETGW_ProjecthistoryD" msprop:Generator_TableClassName="EETGW_ProjecthistoryDDataTable" msprop:Generator_TableVarName="tableEETGW_ProjecthistoryD" msprop:Generator_RowChangedName="EETGW_ProjecthistoryDRowChanged" msprop:Generator_TablePropName="EETGW_ProjecthistoryD" msprop:Generator_RowDeletingName="EETGW_ProjecthistoryDRowDeleting" msprop:Generator_RowChangingName="EETGW_ProjecthistoryDRowChanging" msprop:Generator_RowEvHandlerName="EETGW_ProjecthistoryDRowChangeEventHandler" msprop:Generator_RowDeletedName="EETGW_ProjecthistoryDRowDeleted" msprop:Generator_RowClassName="EETGW_ProjecthistoryDRow" msprop:Generator_UserTableName="EETGW_ProjecthistoryD" msprop:Generator_RowEvArgName="EETGW_ProjecthistoryDRowChangeEvent">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
|
<xs:element name="pidx" msprop:Generator_ColumnVarNameInTable="columnpidx" msprop:Generator_ColumnPropNameInRow="pidx" msprop:Generator_ColumnPropNameInTable="pidxColumn" msprop:Generator_UserColumnName="pidx" type="xs:int" />
|
||||||
|
<xs:element name="pdate" msprop:Generator_ColumnVarNameInTable="columnpdate" msprop:Generator_ColumnPropNameInRow="pdate" msprop:Generator_ColumnPropNameInTable="pdateColumn" msprop:Generator_UserColumnName="pdate" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="10" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="div" msprop:Generator_ColumnVarNameInTable="columndiv" msprop:Generator_ColumnPropNameInRow="div" msprop:Generator_ColumnPropNameInTable="divColumn" msprop:Generator_UserColumnName="div" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="10" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="remark" msprop:Generator_ColumnVarNameInTable="columnremark" msprop:Generator_ColumnPropNameInRow="remark" msprop:Generator_ColumnPropNameInTable="remarkColumn" msprop:Generator_UserColumnName="remark" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="2147483647" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="remark2" msprop:Generator_ColumnVarNameInTable="columnremark2" msprop:Generator_ColumnPropNameInRow="remark2" msprop:Generator_ColumnPropNameInTable="remark2Column" msprop:Generator_UserColumnName="remark2" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="2147483647" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="mailsend" msprop:Generator_ColumnVarNameInTable="columnmailsend" msprop:Generator_ColumnPropNameInRow="mailsend" msprop:Generator_ColumnPropNameInTable="mailsendColumn" msprop:Generator_UserColumnName="mailsend" type="xs:boolean" minOccurs="0" />
|
||||||
|
<xs:element name="wuid" msprop:Generator_ColumnVarNameInTable="columnwuid" msprop:Generator_ColumnPropNameInRow="wuid" msprop:Generator_ColumnPropNameInTable="wuidColumn" msprop:Generator_UserColumnName="wuid">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="20" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="wdate" msprop:Generator_ColumnVarNameInTable="columnwdate" msprop:Generator_ColumnPropNameInRow="wdate" msprop:Generator_ColumnPropNameInTable="wdateColumn" msprop:Generator_UserColumnName="wdate" type="xs:dateTime" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="EETGW_ProjectToDo" msprop:Generator_TableClassName="EETGW_ProjectToDoDataTable" msprop:Generator_TableVarName="tableEETGW_ProjectToDo" msprop:Generator_TablePropName="EETGW_ProjectToDo" msprop:Generator_RowDeletingName="EETGW_ProjectToDoRowDeleting" msprop:Generator_RowChangingName="EETGW_ProjectToDoRowChanging" msprop:Generator_RowEvHandlerName="EETGW_ProjectToDoRowChangeEventHandler" msprop:Generator_RowDeletedName="EETGW_ProjectToDoRowDeleted" msprop:Generator_UserTableName="EETGW_ProjectToDo" msprop:Generator_RowChangedName="EETGW_ProjectToDoRowChanged" msprop:Generator_RowEvArgName="EETGW_ProjectToDoRowChangeEvent" msprop:Generator_RowClassName="EETGW_ProjectToDoRow">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="idx" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidx" msprop:Generator_ColumnPropNameInRow="idx" msprop:Generator_ColumnPropNameInTable="idxColumn" msprop:Generator_UserColumnName="idx" type="xs:int" />
|
||||||
|
<xs:element name="pidx" msprop:Generator_ColumnVarNameInTable="columnpidx" msprop:Generator_ColumnPropNameInRow="pidx" msprop:Generator_ColumnPropNameInTable="pidxColumn" msprop:Generator_UserColumnName="pidx" type="xs:int" />
|
||||||
|
<xs:element name="title" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="title" msprop:Generator_ColumnVarNameInTable="columntitle" msprop:Generator_ColumnPropNameInTable="titleColumn" msprop:Generator_UserColumnName="title" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="255" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="pdate" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="pdate" msprop:Generator_ColumnVarNameInTable="columnpdate" msprop:Generator_ColumnPropNameInTable="pdateColumn" msprop:Generator_UserColumnName="pdate" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="10" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="edate" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="edate" msprop:Generator_ColumnVarNameInTable="columnedate" msprop:Generator_ColumnPropNameInTable="edateColumn" msprop:Generator_UserColumnName="edate" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="10" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="process" msprop:Generator_ColumnVarNameInTable="columnprocess" msprop:Generator_ColumnPropNameInRow="process" msprop:Generator_ColumnPropNameInTable="processColumn" msprop:Generator_UserColumnName="process" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="remark" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="remark" msprop:Generator_ColumnVarNameInTable="columnremark" msprop:Generator_ColumnPropNameInTable="remarkColumn" msprop:Generator_UserColumnName="remark" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="2147483647" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="remark2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="remark2" msprop:Generator_ColumnVarNameInTable="columnremark2" msprop:Generator_ColumnPropNameInTable="remark2Column" msprop:Generator_UserColumnName="remark2" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="2147483647" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="wuid" msprop:Generator_ColumnVarNameInTable="columnwuid" msprop:Generator_ColumnPropNameInRow="wuid" msprop:Generator_ColumnPropNameInTable="wuidColumn" msprop:Generator_UserColumnName="wuid">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="20" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="wdate" msprop:Generator_ColumnVarNameInTable="columnwdate" msprop:Generator_ColumnPropNameInRow="wdate" msprop:Generator_ColumnPropNameInTable="wdateColumn" msprop:Generator_UserColumnName="wdate" type="xs:dateTime" />
|
||||||
|
<xs:element name="sort" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="sort" msprop:Generator_ColumnVarNameInTable="columnsort" msprop:Generator_ColumnPropNameInTable="sortColumn" msprop:Generator_UserColumnName="sort" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="2" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="cate" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="cate" msprop:Generator_ColumnVarNameInTable="columncate" msprop:Generator_ColumnPropNameInTable="cateColumn" msprop:Generator_UserColumnName="cate" minOccurs="0">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="100" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ww" msprop:nullValue="0" msprop:Generator_ColumnPropNameInRow="ww" msprop:Generator_ColumnVarNameInTable="columnww" msprop:Generator_ColumnPropNameInTable="wwColumn" msprop:Generator_UserColumnName="ww" type="xs:int" minOccurs="0" />
|
||||||
|
<xs:element name="sw" msprop:nullValue="0" msprop:Generator_ColumnPropNameInRow="sw" msprop:Generator_ColumnVarNameInTable="columnsw" msprop:Generator_ColumnPropNameInTable="swColumn" msprop:Generator_UserColumnName="sw" type="xs:int" minOccurs="0" />
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
</xs:choice>
|
</xs:choice>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
|
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
|
||||||
@@ -2549,5 +3149,17 @@ SELECT idx, gcode, isdel, asset, process, part, pdate, name, userManager, userma
|
|||||||
<xs:selector xpath=".//mstns:EETGW_SaveCost" />
|
<xs:selector xpath=".//mstns:EETGW_SaveCost" />
|
||||||
<xs:field xpath="mstns:idx" />
|
<xs:field xpath="mstns:idx" />
|
||||||
</xs:unique>
|
</xs:unique>
|
||||||
|
<xs:unique name="ProjectPartStatus_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
|
||||||
|
<xs:selector xpath=".//mstns:ProjectPartStatus" />
|
||||||
|
<xs:field xpath="mstns:idx" />
|
||||||
|
</xs:unique>
|
||||||
|
<xs:unique name="EETGW_ProjecthistoryD_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
|
||||||
|
<xs:selector xpath=".//mstns:EETGW_ProjecthistoryD" />
|
||||||
|
<xs:field xpath="mstns:idx" />
|
||||||
|
</xs:unique>
|
||||||
|
<xs:unique name="EETGW_ProjectToDo_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
|
||||||
|
<xs:selector xpath=".//mstns:EETGW_ProjectToDo" />
|
||||||
|
<xs:field xpath="mstns:idx" />
|
||||||
|
</xs:unique>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
</xs:schema>
|
</xs:schema>
|
||||||
@@ -4,20 +4,23 @@
|
|||||||
Changes to this file may cause incorrect behavior and will be lost if
|
Changes to this file may cause incorrect behavior and will be lost if
|
||||||
the code is regenerated.
|
the code is regenerated.
|
||||||
</autogenerated>-->
|
</autogenerated>-->
|
||||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-3" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="68" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||||
<Shapes>
|
<Shapes>
|
||||||
<Shape ID="DesignTable:Projects" ZOrder="12" X="70" Y="70" Height="514" Width="275" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="389" />
|
<Shape ID="DesignTable:Projects" ZOrder="4" X="70" Y="70" Height="514" Width="275" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="389" />
|
||||||
<Shape ID="DesignTable:ProjectsIOMap" ZOrder="11" X="366" Y="70" Height="229" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
<Shape ID="DesignTable:ProjectsIOMap" ZOrder="15" X="366" Y="70" Height="229" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||||
<Shape ID="DesignTable:ProjectsMailList" ZOrder="10" X="667" Y="70" Height="248" Width="237" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
<Shape ID="DesignTable:ProjectsMailList" ZOrder="14" X="667" Y="70" Height="248" Width="237" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||||
<Shape ID="DesignTable:ProjectsPart" ZOrder="9" X="973" Y="68" Height="343" Width="215" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:ProjectsPart" ZOrder="13" X="973" Y="68" Height="343" Width="215" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:JobReport" ZOrder="8" X="1259" Y="67" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:JobReport" ZOrder="12" X="1259" Y="67" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:ProjectsSchedule" ZOrder="7" X="1629" Y="70" Height="267" Width="244" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
|
<Shape ID="DesignTable:ProjectsSchedule" ZOrder="11" X="1629" Y="70" Height="267" Width="244" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
|
||||||
<Shape ID="DesignTable:ProjectsHistory" ZOrder="6" X="1943" Y="70" Height="267" Width="251" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
<Shape ID="DesignTable:ProjectsHistory" ZOrder="10" X="1943" Y="70" Height="267" Width="251" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||||
<Shape ID="DesignTable:SPMaster" ZOrder="4" X="476" Y="366" Height="305" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:SPMaster" ZOrder="8" X="476" Y="366" Height="305" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:EETGW_Note" ZOrder="3" X="810" Y="455" Height="248" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
<Shape ID="DesignTable:EETGW_Note" ZOrder="7" X="810" Y="455" Height="248" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||||
<Shape ID="DesignTable:EETGW_SaveCost" ZOrder="1" X="343" Y="532" Height="305" Width="245" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:EETGW_SaveCost" ZOrder="5" X="343" Y="532" Height="305" Width="245" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:SCTable" ZOrder="2" X="393" Y="328" Height="162" Width="150" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="158" />
|
<Shape ID="DesignTable:ProjectPartStatus" ZOrder="3" X="1105" Y="466" Height="324" Width="246" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignSources:QueriesTableAdapter" ZOrder="5" X="2264" Y="70" Height="48" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="16" />
|
<Shape ID="DesignTable:EETGW_ProjecthistoryD" ZOrder="2" X="725" Y="398" Height="248" Width="283" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||||
|
<Shape ID="DesignTable:EETGW_ProjectToDo" ZOrder="1" X="148" Y="641" Height="267" Width="265" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
|
||||||
|
<Shape ID="DesignTable:SCTable" ZOrder="6" X="393" Y="310" Height="182" Width="150" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||||
|
<Shape ID="DesignSources:QueriesTableAdapter" ZOrder="9" X="2264" Y="70" Height="48" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="16" />
|
||||||
</Shapes>
|
</Shapes>
|
||||||
<Connectors />
|
<Connectors />
|
||||||
</DiagramLayout>
|
</DiagramLayout>
|
||||||
201
SubProject/FPJ0000/dsQuery.Designer.cs
generated
201
SubProject/FPJ0000/dsQuery.Designer.cs
generated
@@ -29,7 +29,7 @@ namespace FPJ0000 {
|
|||||||
private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
|
private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public dsQuery() {
|
public dsQuery() {
|
||||||
this.BeginInit();
|
this.BeginInit();
|
||||||
this.InitClass();
|
this.InitClass();
|
||||||
@@ -40,7 +40,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected dsQuery(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
|
protected dsQuery(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
|
||||||
base(info, context, false) {
|
base(info, context, false) {
|
||||||
if ((this.IsBinarySerialized(info, context) == true)) {
|
if ((this.IsBinarySerialized(info, context) == true)) {
|
||||||
@@ -76,7 +76,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Browsable(false)]
|
[global::System.ComponentModel.Browsable(false)]
|
||||||
[global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
|
[global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
|
||||||
public JobReportItemListDataTable JobReportItemList {
|
public JobReportItemListDataTable JobReportItemList {
|
||||||
@@ -86,7 +86,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.BrowsableAttribute(true)]
|
[global::System.ComponentModel.BrowsableAttribute(true)]
|
||||||
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
|
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
|
||||||
public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
|
public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
|
||||||
@@ -99,7 +99,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||||
public new global::System.Data.DataTableCollection Tables {
|
public new global::System.Data.DataTableCollection Tables {
|
||||||
get {
|
get {
|
||||||
@@ -108,7 +108,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||||
public new global::System.Data.DataRelationCollection Relations {
|
public new global::System.Data.DataRelationCollection Relations {
|
||||||
get {
|
get {
|
||||||
@@ -117,7 +117,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override void InitializeDerivedDataSet() {
|
protected override void InitializeDerivedDataSet() {
|
||||||
this.BeginInit();
|
this.BeginInit();
|
||||||
this.InitClass();
|
this.InitClass();
|
||||||
@@ -125,7 +125,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public override global::System.Data.DataSet Clone() {
|
public override global::System.Data.DataSet Clone() {
|
||||||
dsQuery cln = ((dsQuery)(base.Clone()));
|
dsQuery cln = ((dsQuery)(base.Clone()));
|
||||||
cln.InitVars();
|
cln.InitVars();
|
||||||
@@ -134,19 +134,19 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override bool ShouldSerializeTables() {
|
protected override bool ShouldSerializeTables() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override bool ShouldSerializeRelations() {
|
protected override bool ShouldSerializeRelations() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
|
protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
|
||||||
if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
|
if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
|
||||||
this.Reset();
|
this.Reset();
|
||||||
@@ -171,7 +171,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
|
protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
|
||||||
global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
|
global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
|
||||||
this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
|
this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
|
||||||
@@ -180,13 +180,13 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal void InitVars() {
|
internal void InitVars() {
|
||||||
this.InitVars(true);
|
this.InitVars(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal void InitVars(bool initTable) {
|
internal void InitVars(bool initTable) {
|
||||||
this.tableJobReportItemList = ((JobReportItemListDataTable)(base.Tables["JobReportItemList"]));
|
this.tableJobReportItemList = ((JobReportItemListDataTable)(base.Tables["JobReportItemList"]));
|
||||||
if ((initTable == true)) {
|
if ((initTable == true)) {
|
||||||
@@ -197,7 +197,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void InitClass() {
|
private void InitClass() {
|
||||||
this.DataSetName = "dsQuery";
|
this.DataSetName = "dsQuery";
|
||||||
this.Prefix = "";
|
this.Prefix = "";
|
||||||
@@ -209,13 +209,13 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private bool ShouldSerializeJobReportItemList() {
|
private bool ShouldSerializeJobReportItemList() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
|
private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
|
||||||
if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
|
if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
|
||||||
this.InitVars();
|
this.InitVars();
|
||||||
@@ -223,7 +223,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
|
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
|
||||||
dsQuery ds = new dsQuery();
|
dsQuery ds = new dsQuery();
|
||||||
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
|
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
|
||||||
@@ -269,7 +269,7 @@ namespace FPJ0000 {
|
|||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public delegate void JobReportItemListRowChangeEventHandler(object sender, JobReportItemListRowChangeEvent e);
|
public delegate void JobReportItemListRowChangeEventHandler(object sender, JobReportItemListRowChangeEvent e);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -286,7 +286,7 @@ namespace FPJ0000 {
|
|||||||
private global::System.Data.DataColumn columnpdate;
|
private global::System.Data.DataColumn columnpdate;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListDataTable() {
|
public JobReportItemListDataTable() {
|
||||||
this.TableName = "JobReportItemList";
|
this.TableName = "JobReportItemList";
|
||||||
this.BeginInit();
|
this.BeginInit();
|
||||||
@@ -295,7 +295,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal JobReportItemListDataTable(global::System.Data.DataTable table) {
|
internal JobReportItemListDataTable(global::System.Data.DataTable table) {
|
||||||
this.TableName = table.TableName;
|
this.TableName = table.TableName;
|
||||||
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
|
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
|
||||||
@@ -312,14 +312,14 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected JobReportItemListDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
|
protected JobReportItemListDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
|
||||||
base(info, context) {
|
base(info, context) {
|
||||||
this.InitVars();
|
this.InitVars();
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public global::System.Data.DataColumn pidxColumn {
|
public global::System.Data.DataColumn pidxColumn {
|
||||||
get {
|
get {
|
||||||
return this.columnpidx;
|
return this.columnpidx;
|
||||||
@@ -327,7 +327,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public global::System.Data.DataColumn projectNameColumn {
|
public global::System.Data.DataColumn projectNameColumn {
|
||||||
get {
|
get {
|
||||||
return this.columnprojectName;
|
return this.columnprojectName;
|
||||||
@@ -335,7 +335,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public global::System.Data.DataColumn pdateColumn {
|
public global::System.Data.DataColumn pdateColumn {
|
||||||
get {
|
get {
|
||||||
return this.columnpdate;
|
return this.columnpdate;
|
||||||
@@ -343,7 +343,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Browsable(false)]
|
[global::System.ComponentModel.Browsable(false)]
|
||||||
public int Count {
|
public int Count {
|
||||||
get {
|
get {
|
||||||
@@ -352,33 +352,33 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListRow this[int index] {
|
public JobReportItemListRow this[int index] {
|
||||||
get {
|
get {
|
||||||
return ((JobReportItemListRow)(this.Rows[index]));
|
return ((JobReportItemListRow)(this.Rows[index]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public event JobReportItemListRowChangeEventHandler JobReportItemListRowChanging;
|
public event JobReportItemListRowChangeEventHandler JobReportItemListRowChanging;
|
||||||
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public event JobReportItemListRowChangeEventHandler JobReportItemListRowChanged;
|
public event JobReportItemListRowChangeEventHandler JobReportItemListRowChanged;
|
||||||
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public event JobReportItemListRowChangeEventHandler JobReportItemListRowDeleting;
|
public event JobReportItemListRowChangeEventHandler JobReportItemListRowDeleting;
|
||||||
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public event JobReportItemListRowChangeEventHandler JobReportItemListRowDeleted;
|
public event JobReportItemListRowChangeEventHandler JobReportItemListRowDeleted;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public void AddJobReportItemListRow(JobReportItemListRow row) {
|
public void AddJobReportItemListRow(JobReportItemListRow row) {
|
||||||
this.Rows.Add(row);
|
this.Rows.Add(row);
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListRow AddJobReportItemListRow(int pidx, string projectName, string pdate) {
|
public JobReportItemListRow AddJobReportItemListRow(int pidx, string projectName, string pdate) {
|
||||||
JobReportItemListRow rowJobReportItemListRow = ((JobReportItemListRow)(this.NewRow()));
|
JobReportItemListRow rowJobReportItemListRow = ((JobReportItemListRow)(this.NewRow()));
|
||||||
object[] columnValuesArray = new object[] {
|
object[] columnValuesArray = new object[] {
|
||||||
@@ -391,7 +391,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListRow FindBypidxprojectName(int pidx, string projectName) {
|
public JobReportItemListRow FindBypidxprojectName(int pidx, string projectName) {
|
||||||
return ((JobReportItemListRow)(this.Rows.Find(new object[] {
|
return ((JobReportItemListRow)(this.Rows.Find(new object[] {
|
||||||
pidx,
|
pidx,
|
||||||
@@ -399,7 +399,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public override global::System.Data.DataTable Clone() {
|
public override global::System.Data.DataTable Clone() {
|
||||||
JobReportItemListDataTable cln = ((JobReportItemListDataTable)(base.Clone()));
|
JobReportItemListDataTable cln = ((JobReportItemListDataTable)(base.Clone()));
|
||||||
cln.InitVars();
|
cln.InitVars();
|
||||||
@@ -407,13 +407,13 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override global::System.Data.DataTable CreateInstance() {
|
protected override global::System.Data.DataTable CreateInstance() {
|
||||||
return new JobReportItemListDataTable();
|
return new JobReportItemListDataTable();
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal void InitVars() {
|
internal void InitVars() {
|
||||||
this.columnpidx = base.Columns["pidx"];
|
this.columnpidx = base.Columns["pidx"];
|
||||||
this.columnprojectName = base.Columns["projectName"];
|
this.columnprojectName = base.Columns["projectName"];
|
||||||
@@ -421,7 +421,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void InitClass() {
|
private void InitClass() {
|
||||||
this.columnpidx = new global::System.Data.DataColumn("pidx", typeof(int), null, global::System.Data.MappingType.Element);
|
this.columnpidx = new global::System.Data.DataColumn("pidx", typeof(int), null, global::System.Data.MappingType.Element);
|
||||||
base.Columns.Add(this.columnpidx);
|
base.Columns.Add(this.columnpidx);
|
||||||
@@ -440,25 +440,25 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListRow NewJobReportItemListRow() {
|
public JobReportItemListRow NewJobReportItemListRow() {
|
||||||
return ((JobReportItemListRow)(this.NewRow()));
|
return ((JobReportItemListRow)(this.NewRow()));
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
|
protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
|
||||||
return new JobReportItemListRow(builder);
|
return new JobReportItemListRow(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override global::System.Type GetRowType() {
|
protected override global::System.Type GetRowType() {
|
||||||
return typeof(JobReportItemListRow);
|
return typeof(JobReportItemListRow);
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
|
protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
|
||||||
base.OnRowChanged(e);
|
base.OnRowChanged(e);
|
||||||
if ((this.JobReportItemListRowChanged != null)) {
|
if ((this.JobReportItemListRowChanged != null)) {
|
||||||
@@ -467,7 +467,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
|
protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
|
||||||
base.OnRowChanging(e);
|
base.OnRowChanging(e);
|
||||||
if ((this.JobReportItemListRowChanging != null)) {
|
if ((this.JobReportItemListRowChanging != null)) {
|
||||||
@@ -476,7 +476,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
|
protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
|
||||||
base.OnRowDeleted(e);
|
base.OnRowDeleted(e);
|
||||||
if ((this.JobReportItemListRowDeleted != null)) {
|
if ((this.JobReportItemListRowDeleted != null)) {
|
||||||
@@ -485,7 +485,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
|
protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
|
||||||
base.OnRowDeleting(e);
|
base.OnRowDeleting(e);
|
||||||
if ((this.JobReportItemListRowDeleting != null)) {
|
if ((this.JobReportItemListRowDeleting != null)) {
|
||||||
@@ -494,13 +494,13 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public void RemoveJobReportItemListRow(JobReportItemListRow row) {
|
public void RemoveJobReportItemListRow(JobReportItemListRow row) {
|
||||||
this.Rows.Remove(row);
|
this.Rows.Remove(row);
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
|
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
|
||||||
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
|
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
|
||||||
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
|
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
|
||||||
@@ -571,14 +571,14 @@ namespace FPJ0000 {
|
|||||||
private JobReportItemListDataTable tableJobReportItemList;
|
private JobReportItemListDataTable tableJobReportItemList;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal JobReportItemListRow(global::System.Data.DataRowBuilder rb) :
|
internal JobReportItemListRow(global::System.Data.DataRowBuilder rb) :
|
||||||
base(rb) {
|
base(rb) {
|
||||||
this.tableJobReportItemList = ((JobReportItemListDataTable)(this.Table));
|
this.tableJobReportItemList = ((JobReportItemListDataTable)(this.Table));
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public int pidx {
|
public int pidx {
|
||||||
get {
|
get {
|
||||||
return ((int)(this[this.tableJobReportItemList.pidxColumn]));
|
return ((int)(this[this.tableJobReportItemList.pidxColumn]));
|
||||||
@@ -589,7 +589,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public string projectName {
|
public string projectName {
|
||||||
get {
|
get {
|
||||||
return ((string)(this[this.tableJobReportItemList.projectNameColumn]));
|
return ((string)(this[this.tableJobReportItemList.projectNameColumn]));
|
||||||
@@ -600,7 +600,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public string pdate {
|
public string pdate {
|
||||||
get {
|
get {
|
||||||
try {
|
try {
|
||||||
@@ -616,13 +616,13 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public bool IspdateNull() {
|
public bool IspdateNull() {
|
||||||
return this.IsNull(this.tableJobReportItemList.pdateColumn);
|
return this.IsNull(this.tableJobReportItemList.pdateColumn);
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public void SetpdateNull() {
|
public void SetpdateNull() {
|
||||||
this[this.tableJobReportItemList.pdateColumn] = global::System.Convert.DBNull;
|
this[this.tableJobReportItemList.pdateColumn] = global::System.Convert.DBNull;
|
||||||
}
|
}
|
||||||
@@ -631,7 +631,7 @@ namespace FPJ0000 {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///Row event argument class
|
///Row event argument class
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public class JobReportItemListRowChangeEvent : global::System.EventArgs {
|
public class JobReportItemListRowChangeEvent : global::System.EventArgs {
|
||||||
|
|
||||||
private JobReportItemListRow eventRow;
|
private JobReportItemListRow eventRow;
|
||||||
@@ -639,14 +639,14 @@ namespace FPJ0000 {
|
|||||||
private global::System.Data.DataRowAction eventAction;
|
private global::System.Data.DataRowAction eventAction;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListRowChangeEvent(JobReportItemListRow row, global::System.Data.DataRowAction action) {
|
public JobReportItemListRowChangeEvent(JobReportItemListRow row, global::System.Data.DataRowAction action) {
|
||||||
this.eventRow = row;
|
this.eventRow = row;
|
||||||
this.eventAction = action;
|
this.eventAction = action;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListRow Row {
|
public JobReportItemListRow Row {
|
||||||
get {
|
get {
|
||||||
return this.eventRow;
|
return this.eventRow;
|
||||||
@@ -654,7 +654,7 @@ namespace FPJ0000 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public global::System.Data.DataRowAction Action {
|
public global::System.Data.DataRowAction Action {
|
||||||
get {
|
get {
|
||||||
return this.eventAction;
|
return this.eventAction;
|
||||||
@@ -688,13 +688,13 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
private bool _clearBeforeFill;
|
private bool _clearBeforeFill;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public JobReportItemListTableAdapter() {
|
public JobReportItemListTableAdapter() {
|
||||||
this.ClearBeforeFill = true;
|
this.ClearBeforeFill = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
|
protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
|
||||||
get {
|
get {
|
||||||
if ((this._adapter == null)) {
|
if ((this._adapter == null)) {
|
||||||
@@ -705,7 +705,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal global::System.Data.SqlClient.SqlConnection Connection {
|
internal global::System.Data.SqlClient.SqlConnection Connection {
|
||||||
get {
|
get {
|
||||||
if ((this._connection == null)) {
|
if ((this._connection == null)) {
|
||||||
@@ -733,7 +733,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal global::System.Data.SqlClient.SqlTransaction Transaction {
|
internal global::System.Data.SqlClient.SqlTransaction Transaction {
|
||||||
get {
|
get {
|
||||||
return this._transaction;
|
return this._transaction;
|
||||||
@@ -759,7 +759,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
|
protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
|
||||||
get {
|
get {
|
||||||
if ((this._commandCollection == null)) {
|
if ((this._commandCollection == null)) {
|
||||||
@@ -770,7 +770,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public bool ClearBeforeFill {
|
public bool ClearBeforeFill {
|
||||||
get {
|
get {
|
||||||
return this._clearBeforeFill;
|
return this._clearBeforeFill;
|
||||||
@@ -781,7 +781,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void InitAdapter() {
|
private void InitAdapter() {
|
||||||
this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
|
this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
|
||||||
global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
|
global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
|
||||||
@@ -794,31 +794,34 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void InitConnection() {
|
private void InitConnection() {
|
||||||
this._connection = new global::System.Data.SqlClient.SqlConnection();
|
this._connection = new global::System.Data.SqlClient.SqlConnection();
|
||||||
this._connection.ConnectionString = global::FPJ0000.Properties.Settings.Default.gwcs;
|
this._connection.ConnectionString = global::FPJ0000.Properties.Settings.Default.gwcs;
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void InitCommandCollection() {
|
private void InitCommandCollection() {
|
||||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
|
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
|
||||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||||
this._commandCollection[0].Connection = this.Connection;
|
this._commandCollection[0].Connection = this.Connection;
|
||||||
this._commandCollection[0].CommandText = "SELECT pidx, projectName, MAX(pdate) AS pdate\r\nFROM JobReport\r\nWHERE (ISNUL" +
|
this._commandCollection[0].CommandText = @"SELECT pidx, projectName, MAX(pdate) AS pdate
|
||||||
"L(projectName, N\'\') LIKE @search OR\r\n ISNULL(description, N\'\') LIK" +
|
FROM JobReport
|
||||||
"E @search) AND (projectName <> \'\')\r\nGROUP BY pidx, projectName\r\nORDER BY project" +
|
WHERE (ISNULL(projectName, N'') LIKE @search OR
|
||||||
"Name";
|
ISNULL(description, N'') LIKE @search) AND (projectName <> '') AND (gcode = @gcode)
|
||||||
|
GROUP BY pidx, projectName
|
||||||
|
ORDER BY projectName";
|
||||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||||
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@search", global::System.Data.SqlDbType.NVarChar, 1024, global::System.Data.ParameterDirection.Input, 0, 0, "", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@search", global::System.Data.SqlDbType.NVarChar, 1024, global::System.Data.ParameterDirection.Input, 0, 0, "", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||||
|
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
|
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
|
||||||
public virtual int FillSearch(dsQuery.JobReportItemListDataTable dataTable, string search) {
|
public virtual int FillSearch(dsQuery.JobReportItemListDataTable dataTable, string search, string gcode) {
|
||||||
this.Adapter.SelectCommand = this.CommandCollection[0];
|
this.Adapter.SelectCommand = this.CommandCollection[0];
|
||||||
if ((search == null)) {
|
if ((search == null)) {
|
||||||
throw new global::System.ArgumentNullException("search");
|
throw new global::System.ArgumentNullException("search");
|
||||||
@@ -826,6 +829,12 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
else {
|
else {
|
||||||
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(search));
|
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(search));
|
||||||
}
|
}
|
||||||
|
if ((gcode == null)) {
|
||||||
|
throw new global::System.ArgumentNullException("gcode");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(gcode));
|
||||||
|
}
|
||||||
if ((this.ClearBeforeFill == true)) {
|
if ((this.ClearBeforeFill == true)) {
|
||||||
dataTable.Clear();
|
dataTable.Clear();
|
||||||
}
|
}
|
||||||
@@ -834,10 +843,10 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
|
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
|
||||||
public virtual dsQuery.JobReportItemListDataTable GetSearch(string search) {
|
public virtual dsQuery.JobReportItemListDataTable GetSearch(string search, string gcode) {
|
||||||
this.Adapter.SelectCommand = this.CommandCollection[0];
|
this.Adapter.SelectCommand = this.CommandCollection[0];
|
||||||
if ((search == null)) {
|
if ((search == null)) {
|
||||||
throw new global::System.ArgumentNullException("search");
|
throw new global::System.ArgumentNullException("search");
|
||||||
@@ -845,6 +854,12 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
else {
|
else {
|
||||||
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(search));
|
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(search));
|
||||||
}
|
}
|
||||||
|
if ((gcode == null)) {
|
||||||
|
throw new global::System.ArgumentNullException("gcode");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(gcode));
|
||||||
|
}
|
||||||
dsQuery.JobReportItemListDataTable dataTable = new dsQuery.JobReportItemListDataTable();
|
dsQuery.JobReportItemListDataTable dataTable = new dsQuery.JobReportItemListDataTable();
|
||||||
this.Adapter.Fill(dataTable);
|
this.Adapter.Fill(dataTable);
|
||||||
return dataTable;
|
return dataTable;
|
||||||
@@ -865,7 +880,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
private global::System.Data.IDbCommand[] _commandCollection;
|
private global::System.Data.IDbCommand[] _commandCollection;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected global::System.Data.IDbCommand[] CommandCollection {
|
protected global::System.Data.IDbCommand[] CommandCollection {
|
||||||
get {
|
get {
|
||||||
if ((this._commandCollection == null)) {
|
if ((this._commandCollection == null)) {
|
||||||
@@ -876,7 +891,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private void InitCommandCollection() {
|
private void InitCommandCollection() {
|
||||||
this._commandCollection = new global::System.Data.IDbCommand[1];
|
this._commandCollection = new global::System.Data.IDbCommand[1];
|
||||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||||
@@ -887,7 +902,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||||
public virtual global::System.Nullable<bool> CheckHoliday(string pdate) {
|
public virtual global::System.Nullable<bool> CheckHoliday(string pdate) {
|
||||||
global::System.Data.SqlClient.SqlCommand command = ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[0]));
|
global::System.Data.SqlClient.SqlCommand command = ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[0]));
|
||||||
@@ -938,7 +953,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
private global::System.Data.IDbConnection _connection;
|
private global::System.Data.IDbConnection _connection;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public UpdateOrderOption UpdateOrder {
|
public UpdateOrderOption UpdateOrder {
|
||||||
get {
|
get {
|
||||||
return this._updateOrder;
|
return this._updateOrder;
|
||||||
@@ -949,7 +964,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public bool BackupDataSetBeforeUpdate {
|
public bool BackupDataSetBeforeUpdate {
|
||||||
get {
|
get {
|
||||||
return this._backupDataSetBeforeUpdate;
|
return this._backupDataSetBeforeUpdate;
|
||||||
@@ -960,7 +975,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Browsable(false)]
|
[global::System.ComponentModel.Browsable(false)]
|
||||||
public global::System.Data.IDbConnection Connection {
|
public global::System.Data.IDbConnection Connection {
|
||||||
get {
|
get {
|
||||||
@@ -975,7 +990,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
[global::System.ComponentModel.Browsable(false)]
|
[global::System.ComponentModel.Browsable(false)]
|
||||||
public int TableAdapterInstanceCount {
|
public int TableAdapterInstanceCount {
|
||||||
get {
|
get {
|
||||||
@@ -988,7 +1003,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
///Update rows in top-down order.
|
///Update rows in top-down order.
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private int UpdateUpdatedRows(dsQuery dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
private int UpdateUpdatedRows(dsQuery dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
||||||
int result = 0;
|
int result = 0;
|
||||||
return result;
|
return result;
|
||||||
@@ -998,7 +1013,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
///Insert rows in top-down order.
|
///Insert rows in top-down order.
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private int UpdateInsertedRows(dsQuery dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
private int UpdateInsertedRows(dsQuery dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
||||||
int result = 0;
|
int result = 0;
|
||||||
return result;
|
return result;
|
||||||
@@ -1008,7 +1023,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
///Delete rows in bottom-up order.
|
///Delete rows in bottom-up order.
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private int UpdateDeletedRows(dsQuery dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
|
private int UpdateDeletedRows(dsQuery dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
|
||||||
int result = 0;
|
int result = 0;
|
||||||
return result;
|
return result;
|
||||||
@@ -1018,7 +1033,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
|
///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
||||||
if (((updatedRows == null)
|
if (((updatedRows == null)
|
||||||
|| (updatedRows.Length < 1))) {
|
|| (updatedRows.Length < 1))) {
|
||||||
@@ -1042,7 +1057,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
///Update all changes to the dataset.
|
///Update all changes to the dataset.
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public virtual int UpdateAll(dsQuery dataSet) {
|
public virtual int UpdateAll(dsQuery dataSet) {
|
||||||
if ((dataSet == null)) {
|
if ((dataSet == null)) {
|
||||||
throw new global::System.ArgumentNullException("dataSet");
|
throw new global::System.ArgumentNullException("dataSet");
|
||||||
@@ -1152,13 +1167,13 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
|
protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
|
||||||
global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
|
global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) {
|
protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) {
|
||||||
if ((this._connection != null)) {
|
if ((this._connection != null)) {
|
||||||
return true;
|
return true;
|
||||||
@@ -1176,7 +1191,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///Update Order Option
|
///Update Order Option
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public enum UpdateOrderOption {
|
public enum UpdateOrderOption {
|
||||||
|
|
||||||
InsertUpdateDelete = 0,
|
InsertUpdateDelete = 0,
|
||||||
@@ -1187,7 +1202,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///Used to sort self-referenced table's rows
|
///Used to sort self-referenced table's rows
|
||||||
///</summary>
|
///</summary>
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
|
private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
|
||||||
|
|
||||||
private global::System.Data.DataRelation _relation;
|
private global::System.Data.DataRelation _relation;
|
||||||
@@ -1195,7 +1210,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
private int _childFirst;
|
private int _childFirst;
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) {
|
internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) {
|
||||||
this._relation = relation;
|
this._relation = relation;
|
||||||
if (childFirst) {
|
if (childFirst) {
|
||||||
@@ -1207,7 +1222,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) {
|
private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) {
|
||||||
global::System.Diagnostics.Debug.Assert((row != null));
|
global::System.Diagnostics.Debug.Assert((row != null));
|
||||||
global::System.Data.DataRow root = row;
|
global::System.Data.DataRow root = row;
|
||||||
@@ -1246,7 +1261,7 @@ namespace FPJ0000.dsQueryTableAdapters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||||
public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) {
|
public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) {
|
||||||
if (object.ReferenceEquals(row1, row2)) {
|
if (object.ReferenceEquals(row1, row2)) {
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@@ -9,17 +9,18 @@
|
|||||||
<Tables>
|
<Tables>
|
||||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="JobReportItemListTableAdapter" GeneratorDataComponentClassName="JobReportItemListTableAdapter" Name="JobReportItemList" UserDataComponentName="JobReportItemListTableAdapter">
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="JobReportItemListTableAdapter" GeneratorDataComponentClassName="JobReportItemListTableAdapter" Name="JobReportItemList" UserDataComponentName="JobReportItemListTableAdapter">
|
||||||
<MainSource>
|
<MainSource>
|
||||||
<DbSource ConnectionRef="gwcs (Settings)" DbObjectName="GroupWare.dbo.JobReport" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillSearch" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetSearch" GeneratorSourceName="FillSearch" GetMethodModifier="Public" GetMethodName="GetSearch" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetSearch" UserSourceName="FillSearch">
|
<DbSource ConnectionRef="gwcs (Settings)" DbObjectName="EE.dbo.JobReport" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillSearch" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetSearch" GeneratorSourceName="FillSearch" GetMethodModifier="Public" GetMethodName="GetSearch" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetSearch" UserSourceName="FillSearch">
|
||||||
<SelectCommand>
|
<SelectCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
<CommandText>SELECT pidx, projectName, MAX(pdate) AS pdate
|
<CommandText>SELECT pidx, projectName, MAX(pdate) AS pdate
|
||||||
FROM JobReport
|
FROM JobReport
|
||||||
WHERE (ISNULL(projectName, N'') LIKE @search OR
|
WHERE (ISNULL(projectName, N'') LIKE @search OR
|
||||||
ISNULL(description, N'') LIKE @search) AND (projectName <> '')
|
ISNULL(description, N'') LIKE @search) AND (projectName <> '') AND (gcode = @gcode)
|
||||||
GROUP BY pidx, projectName
|
GROUP BY pidx, projectName
|
||||||
ORDER BY projectName</CommandText>
|
ORDER BY projectName</CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="search" ColumnName="" DataSourceName="" DataTypeServer="unknown" DbType="String" Direction="Input" ParameterName="@search" Precision="0" Scale="0" Size="1024" SourceColumn="" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="search" ColumnName="" DataSourceName="" DataTypeServer="unknown" DbType="String" Direction="Input" ParameterName="@search" Precision="0" Scale="0" Size="1024" SourceColumn="" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="gcode" ColumnName="gcode" DataSourceName="EE.dbo.JobReport" DataTypeServer="varchar(10)" DbType="AnsiString" Direction="Input" ParameterName="@gcode" Precision="0" ProviderType="VarChar" Scale="0" Size="10" SourceColumn="gcode" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</SelectCommand>
|
</SelectCommand>
|
||||||
@@ -53,11 +54,11 @@ WHERE (pdate = @pdate)</CommandText>
|
|||||||
<xs:element name="dsQuery" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="dsQuery" msprop:Generator_UserDSName="dsQuery">
|
<xs:element name="dsQuery" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="dsQuery" msprop:Generator_UserDSName="dsQuery">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||||
<xs:element name="JobReportItemList" msprop:Generator_TableClassName="JobReportItemListDataTable" msprop:Generator_TableVarName="tableJobReportItemList" msprop:Generator_TablePropName="JobReportItemList" msprop:Generator_RowDeletingName="JobReportItemListRowDeleting" msprop:Generator_RowChangingName="JobReportItemListRowChanging" msprop:Generator_RowEvHandlerName="JobReportItemListRowChangeEventHandler" msprop:Generator_RowDeletedName="JobReportItemListRowDeleted" msprop:Generator_UserTableName="JobReportItemList" msprop:Generator_RowChangedName="JobReportItemListRowChanged" msprop:Generator_RowEvArgName="JobReportItemListRowChangeEvent" msprop:Generator_RowClassName="JobReportItemListRow">
|
<xs:element name="JobReportItemList" msprop:Generator_TableClassName="JobReportItemListDataTable" msprop:Generator_TableVarName="tableJobReportItemList" msprop:Generator_RowChangedName="JobReportItemListRowChanged" msprop:Generator_TablePropName="JobReportItemList" msprop:Generator_RowDeletingName="JobReportItemListRowDeleting" msprop:Generator_RowChangingName="JobReportItemListRowChanging" msprop:Generator_RowEvHandlerName="JobReportItemListRowChangeEventHandler" msprop:Generator_RowDeletedName="JobReportItemListRowDeleted" msprop:Generator_RowClassName="JobReportItemListRow" msprop:Generator_UserTableName="JobReportItemList" msprop:Generator_RowEvArgName="JobReportItemListRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="pidx" msprop:Generator_ColumnVarNameInTable="columnpidx" msprop:Generator_ColumnPropNameInRow="pidx" msprop:Generator_ColumnPropNameInTable="pidxColumn" msprop:Generator_UserColumnName="pidx" type="xs:int" />
|
<xs:element name="pidx" msprop:Generator_ColumnVarNameInTable="columnpidx" msprop:Generator_ColumnPropNameInRow="pidx" msprop:Generator_ColumnPropNameInTable="pidxColumn" msprop:Generator_UserColumnName="pidx" type="xs:int" minOccurs="0" />
|
||||||
<xs:element name="projectName" msprop:Generator_ColumnVarNameInTable="columnprojectName" msprop:Generator_ColumnPropNameInRow="projectName" msprop:Generator_ColumnPropNameInTable="projectNameColumn" msprop:Generator_UserColumnName="projectName">
|
<xs:element name="projectName" msprop:Generator_ColumnVarNameInTable="columnprojectName" msprop:Generator_ColumnPropNameInRow="projectName" msprop:Generator_ColumnPropNameInTable="projectNameColumn" msprop:Generator_UserColumnName="projectName" minOccurs="0">
|
||||||
<xs:simpleType>
|
<xs:simpleType>
|
||||||
<xs:restriction base="xs:string">
|
<xs:restriction base="xs:string">
|
||||||
<xs:maxLength value="255" />
|
<xs:maxLength value="255" />
|
||||||
|
|||||||
@@ -1 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--<autogenerated>
|
||||||
|
This code was generated by a tool to store the dataset designer's layout information.
|
||||||
|
Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
the code is regenerated.
|
||||||
|
</autogenerated>-->
|
||||||
|
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="0" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||||
|
<Shapes>
|
||||||
|
<Shape ID="DesignTable:JobReportItemList" ZOrder="2" X="70" Y="70" Height="134" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||||
|
<Shape ID="DesignSources:QueriesTableAdapter" ZOrder="1" X="392" Y="70" Height="48" Width="189" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="16" />
|
||||||
|
</Shapes>
|
||||||
|
<Connectors />
|
||||||
|
</DiagramLayout>
|
||||||
116
SubProject/FPJ0000/fHistAddDay.Designer.cs
generated
Normal file
116
SubProject/FPJ0000/fHistAddDay.Designer.cs
generated
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
namespace FPJ0000
|
||||||
|
{
|
||||||
|
partial class fHistAddDay
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
this.mcDate = new System.Windows.Forms.MonthCalendar();
|
||||||
|
this.label1 = new System.Windows.Forms.Label();
|
||||||
|
this.label2 = new System.Windows.Forms.Label();
|
||||||
|
this.tbRemark = new System.Windows.Forms.TextBox();
|
||||||
|
this.btOK = new System.Windows.Forms.Button();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// mcDate
|
||||||
|
//
|
||||||
|
this.mcDate.Location = new System.Drawing.Point(13, 38);
|
||||||
|
this.mcDate.Name = "mcDate";
|
||||||
|
this.mcDate.TabIndex = 4;
|
||||||
|
//
|
||||||
|
// label1
|
||||||
|
//
|
||||||
|
this.label1.AutoSize = true;
|
||||||
|
this.label1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||||
|
this.label1.Location = new System.Drawing.Point(13, 17);
|
||||||
|
this.label1.Name = "label1";
|
||||||
|
this.label1.Size = new System.Drawing.Size(44, 12);
|
||||||
|
this.label1.TabIndex = 2;
|
||||||
|
this.label1.Text = "등록일";
|
||||||
|
//
|
||||||
|
// label2
|
||||||
|
//
|
||||||
|
this.label2.AutoSize = true;
|
||||||
|
this.label2.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||||
|
this.label2.Location = new System.Drawing.Point(247, 17);
|
||||||
|
this.label2.Name = "label2";
|
||||||
|
this.label2.Size = new System.Drawing.Size(31, 12);
|
||||||
|
this.label2.TabIndex = 0;
|
||||||
|
this.label2.Text = "내용";
|
||||||
|
//
|
||||||
|
// tbRemark
|
||||||
|
//
|
||||||
|
this.tbRemark.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||||
|
| System.Windows.Forms.AnchorStyles.Left)
|
||||||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.tbRemark.Location = new System.Drawing.Point(247, 38);
|
||||||
|
this.tbRemark.Multiline = true;
|
||||||
|
this.tbRemark.Name = "tbRemark";
|
||||||
|
this.tbRemark.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
||||||
|
this.tbRemark.Size = new System.Drawing.Size(525, 512);
|
||||||
|
this.tbRemark.TabIndex = 1;
|
||||||
|
this.tbRemark.WordWrap = false;
|
||||||
|
//
|
||||||
|
// btOK
|
||||||
|
//
|
||||||
|
this.btOK.Location = new System.Drawing.Point(13, 208);
|
||||||
|
this.btOK.Name = "btOK";
|
||||||
|
this.btOK.Size = new System.Drawing.Size(220, 64);
|
||||||
|
this.btOK.TabIndex = 3;
|
||||||
|
this.btOK.Text = "확인(&S)";
|
||||||
|
this.btOK.UseVisualStyleBackColor = true;
|
||||||
|
this.btOK.Click += new System.EventHandler(this.btOK_Click);
|
||||||
|
//
|
||||||
|
// fHistAdd
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(784, 561);
|
||||||
|
this.Controls.Add(this.btOK);
|
||||||
|
this.Controls.Add(this.tbRemark);
|
||||||
|
this.Controls.Add(this.label2);
|
||||||
|
this.Controls.Add(this.label1);
|
||||||
|
this.Controls.Add(this.mcDate);
|
||||||
|
this.KeyPreview = true;
|
||||||
|
this.MinimizeBox = false;
|
||||||
|
this.Name = "fHistAdd";
|
||||||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
|
this.Text = "History Add/Edit";
|
||||||
|
this.Load += new System.EventHandler(this.fHistAdd_Load);
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
this.PerformLayout();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private System.Windows.Forms.MonthCalendar mcDate;
|
||||||
|
private System.Windows.Forms.Label label1;
|
||||||
|
private System.Windows.Forms.Label label2;
|
||||||
|
private System.Windows.Forms.TextBox tbRemark;
|
||||||
|
private System.Windows.Forms.Button btOK;
|
||||||
|
}
|
||||||
|
}
|
||||||
45
SubProject/FPJ0000/fHistAddDay.cs
Normal file
45
SubProject/FPJ0000/fHistAddDay.cs
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace FPJ0000
|
||||||
|
{
|
||||||
|
public partial class fHistAddDay : Form
|
||||||
|
{
|
||||||
|
dsPRJ.EETGW_ProjecthistoryDRow dr = null;
|
||||||
|
public fHistAddDay(dsPRJ.EETGW_ProjecthistoryDRow dr_)
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
this.dr = dr_;
|
||||||
|
this.KeyDown += fHistAdd_KeyDown;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fHistAdd_KeyDown(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.KeyCode == Keys.Escape) this.Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void fHistAdd_Load(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (this.dr.IsremarkNull() == false)
|
||||||
|
this.tbRemark.Text = this.dr.remark;
|
||||||
|
else
|
||||||
|
this.tbRemark.Text = string.Empty;
|
||||||
|
|
||||||
|
this.mcDate.SetDate(DateTime.Parse(dr.pdate));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void btOK_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
this.Validate();
|
||||||
|
this.dr.remark = tbRemark.Text.Trim();
|
||||||
|
this.dr.pdate = mcDate.SelectionStart.ToShortDateString();
|
||||||
|
DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
120
SubProject/FPJ0000/fHistAddDay.resx
Normal file
120
SubProject/FPJ0000/fHistAddDay.resx
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
Reference in New Issue
Block a user