code cleanup
This commit is contained in:
parent
9fd29d588f
commit
ec0b7cbf0d
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
#include "article.h"
|
||||
#include "seller.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <iomanip>
|
||||
|
@ -34,4 +35,4 @@ std::string Article::getCompleteArticleNo() const
|
|||
std::stringstream artNoStream;
|
||||
artNoStream << sourceNo_ << "K" << std::setfill('0') << std::setw(5) << articleNo_;
|
||||
return artNoStream.str();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
#define ARTICLE_H
|
||||
|
||||
#include "entityuuid.h"
|
||||
//#include "sale.h"
|
||||
//#include "seller.h"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
@ -43,3 +41,4 @@ class Article : public EntityUuid
|
|||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue