пофиксил проблему с пдф, почему-то слетели копирования + увидел проблему с namespase

This commit is contained in:
Алексей Крюков 2024-05-18 03:51:23 +04:00
parent aa04448a6e
commit 9ba2e29dad
6 changed files with 15 additions and 7 deletions

View File

@ -11,7 +11,7 @@ using TypographyContracts.BindingModels;
using TypographyContracts.BusinessLogicsContracts; using TypographyContracts.BusinessLogicsContracts;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using TypographyDataModels.Enums; using TypographyDataModels.Enums;
using AbstractShopView; using TypogrphyView;
using TypographyBusinessLogic.BusinessLogics; using TypographyBusinessLogic.BusinessLogics;
using DocumentFormat.OpenXml.Spreadsheet; using DocumentFormat.OpenXml.Spreadsheet;
using TypographyPlantView; using TypographyPlantView;

View File

@ -3,7 +3,7 @@ using TypographyContracts.BusinessLogicsContracts;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using Microsoft.Reporting.WinForms; using Microsoft.Reporting.WinForms;
namespace AbstractShopView namespace TypogrphyView
{ {
public partial class FormReportOrders : Form public partial class FormReportOrders : Form
{ {

View File

@ -1,4 +1,4 @@
namespace AbstractShopView namespace TypogrphyView
{ {
partial class FormReportOrders partial class FormReportOrders
{ {

View File

@ -63,20 +63,20 @@
// Shop // Shop
// //
Shop.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; Shop.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
Shop.HeaderText = "Shop"; Shop.HeaderText = "Магазин";
Shop.MinimumWidth = 6; Shop.MinimumWidth = 6;
Shop.Name = "Shop"; Shop.Name = "Shop";
// //
// Printed // Printed
// //
Printed.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; Printed.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
Printed.HeaderText = "Printed"; Printed.HeaderText = "Изделие";
Printed.MinimumWidth = 6; Printed.MinimumWidth = 6;
Printed.Name = "Printed"; Printed.Name = "Printed";
// //
// Count // Count
// //
Count.HeaderText = "Count"; Count.HeaderText = "Количество";
Count.MinimumWidth = 6; Count.MinimumWidth = 6;
Count.Name = "Count"; Count.Name = "Count";
Count.Width = 125; Count.Width = 125;

View File

@ -7,7 +7,7 @@ using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging; using NLog.Extensions.Logging;
using TypographyBusinessLogic.OfficePackage.Implements; using TypographyBusinessLogic.OfficePackage.Implements;
using TypographyBusinessLogic.OfficePackage; using TypographyBusinessLogic.OfficePackage;
using AbstractShopView; using TypogrphyView;
using TypographyPlantView; using TypographyPlantView;
namespace TypographyView namespace TypographyView
@ -65,6 +65,8 @@ namespace TypographyView
services.AddTransient<FormShops>(); services.AddTransient<FormShops>();
services.AddTransient<FormMakeShipment>(); services.AddTransient<FormMakeShipment>();
services.AddTransient<FormShopSell>(); services.AddTransient<FormShopSell>();
services.AddTransient<FormReportOrders>();
services.AddTransient<FormReportPrintedComponents>();
} }
} }
} }

View File

@ -36,6 +36,12 @@
<None Update="nlog.config"> <None Update="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None> </None>
<None Update="ReportOrders.rdlc">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ReportOrdersByDate.rdlc">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup> </ItemGroup>
</Project> </Project>