Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
hargata committed Aug 23, 2024
1 parent 1904847 commit a57ce55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Helper/StaticHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,10 @@ public static void WriteSupplyRecordExportModel(CsvWriter _csv, IEnumerable<Supp
_csv.WriteField(nameof(SupplyRecordCsvExportModel.PartNumber));
_csv.WriteField(nameof(SupplyRecordCsvExportModel.PartSupplier));
_csv.WriteField(nameof(SupplyRecordCsvExportModel.PartQuantity));
_csv.WriteField(nameof(TaxRecordCsvExportModel.Description));
_csv.WriteField(nameof(TaxRecordCsvExportModel.Notes));
_csv.WriteField(nameof(TaxRecordCsvExportModel.Cost));
_csv.WriteField(nameof(TaxRecordCsvExportModel.Tags));
_csv.WriteField(nameof(SupplyRecordCsvExportModel.Description));
_csv.WriteField(nameof(SupplyRecordCsvExportModel.Notes));
_csv.WriteField(nameof(SupplyRecordCsvExportModel.Cost));
_csv.WriteField(nameof(SupplyRecordCsvExportModel.Tags));
foreach (string extraHeader in extraHeaders)
{
_csv.WriteField($"extrafield_{extraHeader}");
Expand Down

0 comments on commit a57ce55

Please sign in to comment.