cleanup articles
This commit is contained in:
parent
ba86af4064
commit
9ec6ac383f
2 changed files with 15 additions and 2 deletions
|
@ -49,4 +49,16 @@ int Seller::numArticlesSold() const { return static_cast<int>(getArticles(true).
|
|||
|
||||
int Seller::numArticlesOffered() const { return numArticlesOffered_; }
|
||||
|
||||
//int Seller::numArticlesTotal() const { return static_cast<int>(getArticles().size()); }
|
||||
void Seller::cleanupArticles()
|
||||
{
|
||||
articles_.erase(std::remove_if(begin(articles_), end(articles_),
|
||||
[](const std::shared_ptr<Article>& article) {
|
||||
return article->getState() == Article::State::DELETE;
|
||||
}));
|
||||
|
||||
for (auto& article : articles_) {
|
||||
article->setState(Article::State::OK);
|
||||
}
|
||||
}
|
||||
|
||||
// int Seller::numArticlesTotal() const { return static_cast<int>(getArticles().size()); }
|
|
@ -22,13 +22,14 @@ class Seller : public Entity
|
|||
void setLastName(const std::string& lastName);
|
||||
void setNumArticlesOffered(int number);
|
||||
void addArticle(std::shared_ptr<Article> article);
|
||||
void cleanupArticles();
|
||||
|
||||
std::string getFirstName() const;
|
||||
std::string getLastName() const;
|
||||
int getSellerNo() const;
|
||||
int numArticlesOffered() const;
|
||||
int numArticlesSold() const;
|
||||
//int numArticlesTotal() const;
|
||||
// int numArticlesTotal() const;
|
||||
std::vector<Article*> getArticles(bool onlySold = true) const;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue