пофиксил проблему с пдф, почему-то слетели копирования + увидел проблему с namespase
This commit is contained in:
parent
aa04448a6e
commit
9ba2e29dad
@ -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;
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
2
TypographyView/FormReportOrders.designer.cs
generated
2
TypographyView/FormReportOrders.designer.cs
generated
@ -1,4 +1,4 @@
|
|||||||
namespace AbstractShopView
|
namespace TypogrphyView
|
||||||
{
|
{
|
||||||
partial class FormReportOrders
|
partial class FormReportOrders
|
||||||
{
|
{
|
||||||
|
@ -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;
|
||||||
|
@ -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>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -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>
|
Loading…
Reference in New Issue
Block a user