-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iss29 #104
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Предлагаю переделать алгоритм, чтобы присвоение распарсенных значений ячеек происходило за один вызов батчем, а также добавить тесты с книгой (лист с исходными значениями, второй лист с целевыми значениями и форматами, которые должны быть - по тем же адресам ячеек).
const string CURRENCY_TEMPLATE = @"{CUR}"; | ||
|
||
bool autoCalcEnabled = false; | ||
try { autoCalcEnabled = selection.Worksheet.EnableCalculation; } catch { } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
думаю что try-catch тут излишни
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Падает на set .EnableCalculation иногда непредсказуемо. Причину пока не знаю, то работает, то нет.
try | ||
{ | ||
|
||
selection.ApplyForEachCellOfType2<string, object>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Как обсуждали, предлагаю отказаться от ApplyForEachCellOfType2, вручную получив по каждой area массив исходных значений (object[,]
), соответствующую коллекцию NumericParseResult
. Преобразовать коллекцию в двумерных массив (object[,]
), присвоить значения одним вызовом, после чего пробежаться по коллекции NumericParseResult
, чтобы задать формат ячейкам, для которых у результата парсинга есть значок валюты
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
работаю над этим
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
надо тесты допилить с Cells, и проверить, а то вообще все тесты развалятся тогда...
|
||
var cells = new Mock<Range>(MockBehavior.Default); | ||
cells.Setup(x => x.GetEnumerator()).Returns(new[] { selection.Object }.GetEnumerator()); | ||
//selection.SetupSet(x => x.get_Cells = It.Is<object[,]>(z => VerifyParsed(z))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
просьба удалить неиспользуемый закомментированный код
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тесты недоделаны, немогу Range.Cells нормально в тесте сделать... тест не проходит....
No description provided.