Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Source/FikaAmazonAPI/ReportGeneration/LedgerDetailReport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ public class LedgerDetailReportRow
public int? ReconciledQuantity { get; set; }
public int? UnreconciledQuantity { get; set; }
public string refNumber { get; set; }
public DateTime? DateAndTime { get; set; }


public static LedgerDetailReportRow FromRow(TableRow rowData, string refNumber)
{
var row = new LedgerDetailReportRow();
row.Date = DataConverter.GetDate(rowData.GetString("Date"), DataConverter.DateTimeFormat.DATE_LEDGER_FORMAT);
row.DateAndTime = DataConverter.GetDate(rowData.GetString("Date and Time"), DataConverter.DateTimeFormat.DATETIME_K_FORMAT);
row.FNSKU = rowData.GetString("FNSKU");
row.ASIN = rowData.GetString("ASIN");
row.MSKU = rowData.GetString("MSKU");
Expand Down
Loading