use semicolon as delimiter
This commit is contained in:
parent
44a736fd79
commit
8ff8cbd6d2
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ void Marketplace::setSalesToDelete(int cashPointNo)
|
||||||
|
|
||||||
void Marketplace::exportReportToCSV(const fs::path& filePath, int feeInPercent, int maxFeeInEuro)
|
void Marketplace::exportReportToCSV(const fs::path& filePath, int feeInPercent, int maxFeeInEuro)
|
||||||
{
|
{
|
||||||
const char delimiter = ',';
|
const char delimiter = ';';
|
||||||
std::ofstream file(filePath);
|
std::ofstream file(filePath);
|
||||||
|
|
||||||
file << "Verk.Nr." << delimiter << "Nachname" << delimiter << "Vorname" << delimiter
|
file << "Verk.Nr." << delimiter << "Nachname" << delimiter << "Vorname" << delimiter
|
||||||
|
|
Loading…
Reference in a new issue