Skip to content

Commit

Permalink
Merge remote-tracking branch 'qicb/Develop' into Develop
Browse files Browse the repository at this point in the history
Conflicts:
	Application/WorkStation.csproj
	Application/WorkStation.csproj.orig
	Application/frmMain.Designer.cs
	Application/frmMain.cs
	Application/frmMain.cs.orig
	Application/frmMain.resx
  • Loading branch information
katway committed Oct 30, 2012
2 parents 94c3073 + dad6252 commit e602278
Show file tree
Hide file tree
Showing 35 changed files with 6,755 additions and 3,228 deletions.
11 changes: 0 additions & 11 deletions Application/ClassDiagram5.cd

This file was deleted.

7 changes: 7 additions & 0 deletions Application/Code/CommonClass.cs
Expand Up @@ -10,6 +10,13 @@ public class CommonClass
} }
public class BoxItem public class BoxItem
{ {
public BoxItem()
{ }
public BoxItem(string text, string value)
{
this.Text = text;
this.Value = value;
}
private string _text = null; private string _text = null;
private object _value = null; private object _value = null;
public string Text { get { return this._text; } set { this._text = value; } } public string Text { get { return this._text; } set { this._text = value; } }
Expand Down
32 changes: 32 additions & 0 deletions Application/Code/CommonClass.cs.orig
@@ -1,3 +1,34 @@
<<<<<<< HEAD
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace WorkStation
{
public class CommonClass
{
}
public class BoxItem
{
public BoxItem()
{ }
public BoxItem(string text, string value)
{
this.Text = text;
this.Value = value;
}
private string _text = null;
private object _value = null;
public string Text { get { return this._text; } set { this._text = value; } }
public object Value { get { return this._value; } set { this._value = value; } }
public override string ToString()
{
return this._text;
}
}
}
=======
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
Expand All @@ -20,3 +51,4 @@ namespace WorkStation
} }
} }
} }
>>>>>>> hefangli/master
1 change: 1 addition & 0 deletions Application/Code/SqlHelper.cs
Expand Up @@ -420,6 +420,7 @@ public static int ExecuteSqls(string[] strs)
SqlTransaction tran = conn.BeginTransaction(); SqlTransaction tran = conn.BeginTransaction();
SqlCommand command = new SqlCommand(); SqlCommand command = new SqlCommand();
command.Connection = conn; command.Connection = conn;
command.Transaction = tran;
try try
{ {
foreach (string s in strs) foreach (string s in strs)
Expand Down
4,772 changes: 2,382 additions & 2,390 deletions Application/Code/SqlHelper.cs.orig

Large diffs are not rendered by default.

57 changes: 46 additions & 11 deletions Application/WorkStation.csproj
Expand Up @@ -64,6 +64,30 @@
<Compile Include="frmAddCompany.Designer.cs"> <Compile Include="frmAddCompany.Designer.cs">
<DependentUpon>frmAddCompany.cs</DependentUpon> <DependentUpon>frmAddCompany.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="frmAddPlan.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPlan.Designer.cs">
<DependentUpon>frmAddPlan.cs</DependentUpon>
</Compile>
<Compile Include="frmAddPlanExamine.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPlanExamine.Designer.cs">
<DependentUpon>frmAddPlanExamine.cs</DependentUpon>
</Compile>
<Compile Include="frmAddPlanToTask.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPlanToTask.Designer.cs">
<DependentUpon>frmAddPlanToTask.cs</DependentUpon>
</Compile>
<Compile Include="frmAddPlan_Add.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPlan_Add.Designer.cs">
<DependentUpon>frmAddPlan_Add.cs</DependentUpon>
</Compile>
<Compile Include="frmAddPoint.cs"> <Compile Include="frmAddPoint.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
Expand Down Expand Up @@ -100,6 +124,12 @@
<Compile Include="frmAddTask.Designer.cs"> <Compile Include="frmAddTask.Designer.cs">
<DependentUpon>frmAddTask.cs</DependentUpon> <DependentUpon>frmAddTask.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="frmMain.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmMain.Designer.cs">
<DependentUpon>frmMain.cs</DependentUpon>
</Compile>
<Compile Include="frmAddItem.cs"> <Compile Include="frmAddItem.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
Expand Down Expand Up @@ -166,12 +196,6 @@
<Compile Include="frmIssueTask.Designer.cs"> <Compile Include="frmIssueTask.Designer.cs">
<DependentUpon>frmIssueTask.cs</DependentUpon> <DependentUpon>frmIssueTask.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="frmMain.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmMain.Designer.cs">
<DependentUpon>frmMain.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" /> <Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SiteEditDelete.cs"> <Compile Include="SiteEditDelete.cs">
Expand All @@ -192,6 +216,18 @@
<EmbeddedResource Include="frmAddCompany.resx"> <EmbeddedResource Include="frmAddCompany.resx">
<DependentUpon>frmAddCompany.cs</DependentUpon> <DependentUpon>frmAddCompany.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="frmAddPlan.resx">
<DependentUpon>frmAddPlan.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmAddPlanExamine.resx">
<DependentUpon>frmAddPlanExamine.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmAddPlanToTask.resx">
<DependentUpon>frmAddPlanToTask.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmAddPlan_Add.resx">
<DependentUpon>frmAddPlan_Add.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmAddPoint.resx"> <EmbeddedResource Include="frmAddPoint.resx">
<DependentUpon>frmAddPoint.cs</DependentUpon> <DependentUpon>frmAddPoint.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
Expand All @@ -210,6 +246,9 @@
<EmbeddedResource Include="frmAddTask.resx"> <EmbeddedResource Include="frmAddTask.resx">
<DependentUpon>frmAddTask.cs</DependentUpon> <DependentUpon>frmAddTask.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="frmMain.resx">
<DependentUpon>frmMain.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmAddItem.resx"> <EmbeddedResource Include="frmAddItem.resx">
<DependentUpon>frmAddItem.cs</DependentUpon> <DependentUpon>frmAddItem.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
Expand Down Expand Up @@ -243,9 +282,6 @@
<EmbeddedResource Include="frmIssueTask.resx"> <EmbeddedResource Include="frmIssueTask.resx">
<DependentUpon>frmIssueTask.cs</DependentUpon> <DependentUpon>frmIssueTask.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="frmMain.resx">
<DependentUpon>frmMain.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx"> <EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator> <Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput> <LastGenOutput>Resources.Designer.cs</LastGenOutput>
Expand All @@ -262,8 +298,7 @@
<EmbeddedResource Include="SiteNew.resx"> <EmbeddedResource Include="SiteNew.resx">
<DependentUpon>SiteNew.cs</DependentUpon> <DependentUpon>SiteNew.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<None Include="app.config" /> <None Include="app.config">
<None Include="ClassDiagram5.cd" />
<None Include="Properties\Settings.settings"> <None Include="Properties\Settings.settings">
<Generator>PublicSettingsSingleFileGenerator</Generator> <Generator>PublicSettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput> <LastGenOutput>Settings.Designer.cs</LastGenOutput>
Expand Down

0 comments on commit e602278

Please sign in to comment.