code cleanup

This commit is contained in:
Martin Brodbeck 2019-10-09 10:36:51 +02:00
parent 9fd29d588f
commit ec0b7cbf0d
2 changed files with 3 additions and 3 deletions

View File

@ -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();
}
}

View File

@ -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