Compare commits

..

No commits in common. "8b125e475e4f6970d1948e77fdf832c5e77f2cec" and "e67d94f1995f3de8c4d83eeddf71816589c6bcb5" have entirely different histories.

8 changed files with 37 additions and 44 deletions

View File

@ -161,7 +161,7 @@ public class RhSolutionsFunction
.GetResult()
.FirstOrDefault();
DateTime date = dateField == 0 ? DateTime.Today : DateTime.FromOADate(dateField);
DateTime date = dateField == 0 ? DateTime.Now : DateTime.FromOADate(dateField);
var exchangeRate = currencyClient.GetCurrencyCourse(date)
.GetAwaiter()
.GetResult();
@ -193,7 +193,7 @@ public class RhSolutionsFunction
if (ExcelAsyncUtil.Run("Database request", dateField, delegate
{
DateTime date = dateField == 0 ? DateTime.Today : DateTime.FromOADate(dateField);
DateTime date = dateField == 0 ? DateTime.Now : DateTime.FromOADate(dateField);
var exchangeRate = currencyClient.GetCurrencyCourse(date)
.GetAwaiter()
.GetResult();

View File

@ -84,7 +84,7 @@ public class RibbonController : ExcelRibbon
public bool GetConvertEnabled(IRibbonControl control) => _workbookIsValid;
public bool GetDxfEnabled(IRibbonControl control) => _workbookIsValid;
public bool GetGuessEnabled(IRibbonControl control) => RhSolutionsAddIn.Excel.ActiveWorkbook != null && !_workbookIsValid;
public bool GetGuessEnabled(IRibbonControl control) => RhSolutionsAddIn.Excel.ActiveWorkbook == null ? false : !_workbookIsValid;
public bool GetExportEnabled(IRibbonControl control)
{

View File

@ -1,4 +1,5 @@
using System.IO;
using Microsoft.Office.Interop.Excel;
using System.IO;
namespace RhSolutions.Services;
@ -46,21 +47,19 @@ public class GuessReader : IReader
}
if (currentIndex > productColumnIndex)
{
if (IsAmountColumn(range.Columns[currentIndex]))
if (IsAmountColumn(range.Columns[currentIndex++]))
{
amountColumnIndex = currentIndex;
amountColumnIndex = currentIndex - 1;
break;
}
else currentIndex++;
}
else
{
if (IsAmountColumn(range.Columns[currentIndex]))
if (IsAmountColumn(range.Columns[currentIndex--]))
{
amountColumnIndex = currentIndex;
amountColumnIndex = currentIndex + 1;
break;
}
else currentIndex--;
}
}
@ -94,7 +93,7 @@ public class GuessReader : IReader
continue;
}
if (ProductSku.TryParse(currentCell.ToString(), out _))
if (ProductSku.TryParse(currentCell.ToString(), out IEnumerable<ProductSku> skus))
{
successCounter++;
}
@ -112,43 +111,39 @@ public class GuessReader : IReader
{
int successCounter = 0;
var cells = column.Value2;
double maxValue = 30000;
if (cells == null)
{
return false;
}
if (column.Rows.Count == 1)
for (int row = 1; row < column.Rows.Count + 1; row++)
{
double? value = cells as double?;
return value != null
&& value != 0
&& value < maxValue;
}
else
{
for (int row = 1; row < column.Rows.Count + 1; row++)
object currentCell = column.Rows.Count == 1 ? cells : cells[row, 1];
if (currentCell == null)
{
object currentCell = cells[row, 1];
double? value = currentCell as double?;
continue;
}
if (value == null
|| value == 0
|| value > maxValue)
{
continue;
}
double? value = currentCell as double?;
if (++successCounter > 3)
{
return true;
}
if (value == null || value == 0)
{
continue;
}
if (value > 30000)
{
return false;
}
if (++successCounter > 3)
{
return true;
}
}
return successCounter > 1;
return successCounter > 0;
}
private Dictionary<Product, double> GetDictionaryFromColumns(Range productColumn, Range amountColumn)

View File

@ -15,7 +15,7 @@ public class ReaderFactory
{
"Guess" => (IReader)_serviceProvider.GetService(typeof(GuessReader)),
"Excel" => (IReader)_serviceProvider.GetService(typeof(ExcelReader)),
_ => throw new ArgumentException($"Незвестный интерфейс {nameof(IReader)}: {readerName}")
_ => (IReader)_serviceProvider.GetService(typeof(ExcelReader))
};
}
}

View File

@ -15,7 +15,7 @@ public class WriterFactory
{
"Excel" => (IWriter)_serviceProvider.GetService(typeof(ExcelWriter)),
"Dxf" => (IWriter)_serviceProvider.GetService(typeof(DxfWriter)),
_ => throw new ArgumentException($"Незвестный интерфейс {nameof(IWriter)}: {writerName}")
_ => (IWriter)_serviceProvider.GetService(typeof(ExcelWriter))
};
}
}

View File

@ -11,7 +11,7 @@ internal class ToolFactory
"merge" => new MergeTool(RhSolutionsAddIn.ServiceProvider),
"dxfexport" => new DxfTool(RhSolutionsAddIn.ServiceProvider),
"Guessexport" => new GuessTool(RhSolutionsAddIn.ServiceProvider),
_ => throw new Exception($"Неизвестный инструмент {toolName}"),
_ => throw new Exception("Неизвестный инструмент"),
};
return tool;
}

View File

@ -8,15 +8,13 @@ namespace RhSolutions.Tests;
public class CanDoGuess : IDisposable
{
private RhSolutionsAddIn _addIn;
private IReader _guessReader;
private IReader _reader;
public CanDoGuess()
{
_addIn = new();
_addIn.AutoOpen();
_guessReader = new GuessReader(Util.Application);
_reader = new ExcelReader(Util.Application, RhSolutionsAddIn.Configuration);
_reader = new GuessReader(Util.Application);
}
[ExcelFact(Workbook = @"..\..\..\TestWorkbooks\TestSpecificationGuess.xlsx")]
@ -24,7 +22,7 @@ public class CanDoGuess : IDisposable
{
Worksheet sourceSheet = Util.Workbook.Worksheets[1];
RhSolutionsAddIn.Configuration.SetPriceListPath(Path.GetFullPath(@"..\..\..\TestWorkbooks\TargetSpecificationGuess.xlsx"));
var products = _guessReader.ReadProducts(new[] { sourceSheet });
var products = _reader.ReadProducts(new[] { sourceSheet });
var _writer = new ExcelWriter(Util.Application, RhSolutionsAddIn.Configuration);
_writer.WriteProducts(products);
Worksheet targetSheet = Util.Application.ActiveWindow.ActiveSheet;
@ -41,7 +39,7 @@ public class CanDoGuess : IDisposable
{
Worksheet sourceSheet = Util.Workbook.Worksheets[1];
RhSolutionsAddIn.Configuration.SetPriceListPath(Path.GetFullPath(@"..\..\..\TestWorkbooks\TargetSpecificationGuessOneRow.xlsx"));
var products = _guessReader.ReadProducts(new[] { sourceSheet });
var products = _reader.ReadProducts(new[] { sourceSheet });
var _writer = new ExcelWriter(Util.Application, RhSolutionsAddIn.Configuration);
_writer.WriteProducts(products);
Worksheet targetSheet = Util.Application.ActiveWindow.ActiveSheet;