Commit 900dbbf4 by 泽锋 李

fix

parent 3a4b42ad
using System;
using System.Collections.Generic;
using System.Text;
namespace AutoTurnOver.Models
{
/// <summary>
/// fba 预计调拨入库表
/// </summary>
public class dc_base_trans_expectarrivaltime
{
public int id { get; set; }
public string bailun_sku { get; set; }
public string warehouse_code { get; set; }
public int count { get; set; }
public string transfer_order_id { get; set; }
}
}
...@@ -122,7 +122,7 @@ namespace AutoTurnOver.Controllers ...@@ -122,7 +122,7 @@ namespace AutoTurnOver.Controllers
for (int i = 0; i < 13; i++) for (int i = 0; i < 13; i++)
{ {
var btime = thisDate.GetWeekFirstDayMon(); var btime = thisDate.GetWeekFirstDayMon();
var etime = btime.AddDays(7); var etime = btime.GetWeekLastDaySun();
table.Columns.Add($"预测{btime.ToString("yyyy-MM-dd")}~{etime.ToString("yyyy-MM-dd")}销量"); table.Columns.Add($"预测{btime.ToString("yyyy-MM-dd")}~{etime.ToString("yyyy-MM-dd")}销量");
thisDate = thisDate.AddDays(8); thisDate = thisDate.AddDays(8);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment