From 66e8300b567c58d3cdd599c092b612249f267323 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Tue, 28 Jan 2025 04:44:52 +0300 Subject: Turn deprecated skus parse off --- RhSolutions.Api/Services/ClosedXMLParser.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RhSolutions.Api/Services/ClosedXMLParser.cs b/RhSolutions.Api/Services/ClosedXMLParser.cs index 81dccf5..1d33b88 100644 --- a/RhSolutions.Api/Services/ClosedXMLParser.cs +++ b/RhSolutions.Api/Services/ClosedXMLParser.cs @@ -58,8 +58,8 @@ namespace RhSolutions.Api.Services .First(); ProductSku.TryParse(row.Field("Актуальный материал") .GetString(), out IEnumerable productSkus); - ProductSku.TryParse(row.Field("Прежний материал") - .GetString(), out IEnumerable deprecatedSkus); + // ProductSku.TryParse(row.Field("Прежний материал") + // .GetString(), out IEnumerable deprecatedSkus); string measureField = new string(row.Field("Ед. изм.") .GetString() @@ -123,7 +123,7 @@ namespace RhSolutions.Api.Services { ProductLines = new List() { productLine }, Name = productName, - DeprecatedSkus = deprecatedSkus.ToList(), + // DeprecatedSkus = deprecatedSkus.ToList(), ProductMeasure = productMeasure, DeliveryMakeUp = productWarehouseCount, IsOnWarehouse = IsOnWarehouse, -- cgit v1.2.3