...
This commit is contained in:
parent
e295c6a743
commit
cf268a62b1
1 changed files with 7 additions and 3 deletions
|
@ -11,8 +11,12 @@ void ExcelReader::readSellersFromFile(const std::string& filename, Marketplace*
|
||||||
const int START_ROW = 6;
|
const int START_ROW = 6;
|
||||||
const int END_ROW = 349;
|
const int END_ROW = 349;
|
||||||
|
|
||||||
|
int rowCount{};
|
||||||
for (const auto& row : ws.rows(false)) {
|
for (const auto& row : ws.rows(false)) {
|
||||||
//auto test = row[0].value<int>();
|
// auto test = row[0].value<int>();
|
||||||
//std::cout << test << "\n";
|
if (rowCount < START_ROW)
|
||||||
|
continue;
|
||||||
|
std::cout << row[0].to_string() << "\n";
|
||||||
|
rowCount++;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue