First version of the Main form that is able to pull all the required data from the SQL database. Holiday detection is disabled for this build. Fixed some bugs with the debug database conversion code. Still missing Ad Special data in the conversion code.
This commit is contained in:
@@ -54,7 +54,7 @@
|
||||
<TargetZone>LocalIntranet</TargetZone>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<GenerateManifests>true</GenerateManifests>
|
||||
<GenerateManifests>false</GenerateManifests>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup />
|
||||
<PropertyGroup>
|
||||
@@ -82,6 +82,14 @@
|
||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="HtmlRenderer, Version=1.5.0.6, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\HtmlRenderer.Core.1.5.0.6\lib\net45\HtmlRenderer.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
@@ -92,11 +100,14 @@
|
||||
</Reference>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||
<Reference Include="System.Configuration" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Runtime.Serialization" />
|
||||
<Reference Include="System.Security" />
|
||||
<Reference Include="System.Transactions" />
|
||||
<Reference Include="System.Web" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
@@ -104,9 +115,13 @@
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="AdItemCollectionModel.cs" />
|
||||
<Compile Include="ActualSale.cs" />
|
||||
<Compile Include="AdItem.cs" />
|
||||
<Compile Include="AdSpecial.cs" />
|
||||
<Compile Include="AdvertisingProfitControlModel.cs" />
|
||||
<Compile Include="AdvertisingProfitControlTableHelper.cs" />
|
||||
<Compile Include="ApplicationColors.cs" />
|
||||
<Compile Include="CostAnalysi.cs" />
|
||||
<Compile Include="DbTableWriterStatus.cs" />
|
||||
<Compile Include="DbWriterStatus.cs" />
|
||||
<Compile Include="DebugDatabaseConverter.cs">
|
||||
@@ -116,12 +131,18 @@
|
||||
<DependentUpon>DebugDatabaseConverter.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Holiday.cs" />
|
||||
<Compile Include="Inventory.cs" />
|
||||
<Compile Include="Invoice.cs" />
|
||||
<Compile Include="NewModifyRecord.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="NewModifyRecord.Designer.cs">
|
||||
<DependentUpon>NewModifyRecord.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Note.cs" />
|
||||
<Compile Include="Projection.cs" />
|
||||
<Compile Include="Supplier.cs" />
|
||||
<Compile Include="Taxable.cs" />
|
||||
<Compile Include="TextFormat.cs" />
|
||||
<Compile Include="BackPageGenerator.cs" />
|
||||
<Compile Include="DatabaseReader.cs" />
|
||||
@@ -163,6 +184,9 @@
|
||||
<Compile Include="RowParsing.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Version.cs" />
|
||||
<Compile Include="WeekEndingDate.cs" />
|
||||
<Compile Include="WeeklySale.cs" />
|
||||
<EmbeddedResource Include="DebugDatabaseConverter.resx">
|
||||
<DependentUpon>DebugDatabaseConverter.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
@@ -195,6 +219,7 @@
|
||||
<DesignTime>True</DesignTime>
|
||||
</Compile>
|
||||
<None Include="AdvertsingProfitControl_TemporaryKey.pfx" />
|
||||
<None Include="App.config" />
|
||||
<None Include="app.manifest" />
|
||||
<None Include="packages.config" />
|
||||
<None Include="Properties\Settings.settings">
|
||||
|
||||
Reference in New Issue
Block a user