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