store and load articles correctly
This commit is contained in:
parent
4143fc2e89
commit
b100fc8e51
2 changed files with 42 additions and 9 deletions
|
@ -15,7 +15,7 @@ Database::Database()
|
||||||
{
|
{
|
||||||
namespace fs = std::filesystem;
|
namespace fs = std::filesystem;
|
||||||
|
|
||||||
#if defined(__linux__) || defined (__APPLE__)
|
#if defined(__linux__) || defined(__APPLE__)
|
||||||
fs::path dbpath = fs::path(std::getenv("HOME")) / ".local/share/kima2";
|
fs::path dbpath = fs::path(std::getenv("HOME")) / ".local/share/kima2";
|
||||||
#elif defined(_WIN64) || defined(_WIN32)
|
#elif defined(_WIN64) || defined(_WIN32)
|
||||||
fs::path dbpath = fs::path(std::getenv("LOCALAPPDATA") / "/kima2";
|
fs::path dbpath = fs::path(std::getenv("LOCALAPPDATA") / "/kima2";
|
||||||
|
@ -435,5 +435,39 @@ unsigned int Database::loadSellers(std::vector<std::unique_ptr<Seller>>& sellers
|
||||||
|
|
||||||
sqlite3_finalize(stmt);
|
sqlite3_finalize(stmt);
|
||||||
|
|
||||||
|
for (auto& seller : sellers) {
|
||||||
|
retCode = sqlite3_prepare_v2(db_,
|
||||||
|
"SELECT id, source_no, article_no, description, price"
|
||||||
|
" FROM articles"
|
||||||
|
" WHERE seller_id = :seller_uuid"
|
||||||
|
" ORDER BY article_no",
|
||||||
|
-1, &stmt, nullptr);
|
||||||
|
if (retCode != SQLITE_OK)
|
||||||
|
throw std::runtime_error(sqlite3_errmsg(db_));
|
||||||
|
|
||||||
|
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":seller_uuid"),
|
||||||
|
boost::uuids::to_string(seller->getUuid()).c_str(), -1, SQLITE_TRANSIENT);
|
||||||
|
|
||||||
|
retCode = sqlite3_step(stmt);
|
||||||
|
|
||||||
|
while (retCode != SQLITE_DONE) {
|
||||||
|
++count;
|
||||||
|
auto article = std::make_unique<Article>();
|
||||||
|
article->setUuidFromString(reinterpret_cast<const char*>(sqlite3_column_text(stmt, 0)));
|
||||||
|
article->setSeller(seller.get());
|
||||||
|
article->setSourceNo(sqlite3_column_int(stmt, 1));
|
||||||
|
article->setArticleNo(sqlite3_column_int(stmt, 2));
|
||||||
|
article->setDescription(reinterpret_cast<const char*>(sqlite3_column_text(stmt, 3)));
|
||||||
|
article->setPrice(sqlite3_column_int(stmt, 4));
|
||||||
|
article->setState(Article::State::OK);
|
||||||
|
|
||||||
|
seller->addArticle(std::move(article));
|
||||||
|
|
||||||
|
retCode = sqlite3_step(stmt);
|
||||||
|
}
|
||||||
|
|
||||||
|
sqlite3_finalize(stmt);
|
||||||
|
}
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
|
@ -36,9 +36,10 @@ int Marketplace::getNextSellerNo()
|
||||||
|
|
||||||
int Marketplace::getNextArticleNo()
|
int Marketplace::getNextArticleNo()
|
||||||
{
|
{
|
||||||
auto iter = std::max_element(
|
auto iter = std::max_element(sellers_.begin(), sellers_.end(),
|
||||||
sellers_.begin(), sellers_.end(),
|
[](const auto& a, const auto& b) -> bool {
|
||||||
[](const auto& a, const auto& b) -> bool { return a->getMaxArticleNo() < b->getMaxArticleNo(); });
|
return a->getMaxArticleNo() < b->getMaxArticleNo();
|
||||||
|
});
|
||||||
if (iter == sellers_.end())
|
if (iter == sellers_.end())
|
||||||
return 1;
|
return 1;
|
||||||
return (*iter)->getMaxArticleNo() + 1;
|
return (*iter)->getMaxArticleNo() + 1;
|
||||||
|
@ -80,12 +81,10 @@ void Marketplace::finishCurrentSale()
|
||||||
sale->addArticle((*iter).get());
|
sale->addArticle((*iter).get());
|
||||||
(*iter)->getSeller()->addArticle(std::move(*iter));
|
(*iter)->getSeller()->addArticle(std::move(*iter));
|
||||||
}
|
}
|
||||||
|
|
||||||
sales_.push_back(std::move(sale));
|
sales_.push_back(std::move(sale));
|
||||||
basket_.clear();
|
basket_.clear();
|
||||||
|
storeToDb();
|
||||||
}
|
}
|
||||||
|
|
||||||
BasketVec& Marketplace::getBasket()
|
BasketVec& Marketplace::getBasket() { return basket_; }
|
||||||
{
|
|
||||||
return basket_;
|
|
||||||
}
|
|
Loading…
Reference in a new issue