пофиксил проблему с пдф, почему-то слетели копирования + увидел проблему с 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 Microsoft.Extensions.Logging;
using TypographyDataModels.Enums;
using AbstractShopView;
using TypogrphyView;
using TypographyBusinessLogic.BusinessLogics;
using DocumentFormat.OpenXml.Spreadsheet;
using TypographyPlantView;

View File

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

View File

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

View File

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

View File

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

View File

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