Skip to content

Commit

Permalink
fix: perform value mapping when exporting to CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
hknokh committed Aug 4, 2024
1 parent 570227f commit f53e0ab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/models/job_models/migrationJobTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1047,6 +1047,7 @@ export default class MigrationJobTask {
this.logger.infoNormal(RESOURCES.writingToFile, this.sObjectName, this.data.csvFilename);
let records = await ___filterRecords(this.sourceData.records);
records = ___mockRecords(records);
self.mapRecords(records);
records = ___removeCSVFileColumns(records);
await ___writeToTargetCSVFile(records);
await Common.writeCsvFileAsync(self.data.csvFilename, records, true);
Expand Down

0 comments on commit f53e0ab

Please sign in to comment.