Commit 9284665a by 泽锋 李

fix

parent f4cbce7d
......@@ -2073,9 +2073,14 @@ where t1.gmt_modified>=@btime and t1.gmt_modified<=@etime
return;
}
// 查询利润数据
var profit_data = TransferProfitList(bailun_sku, warehouse_code, DateTime.Now).today_data;
var profit_dataData = TransferProfitList(bailun_sku, warehouse_code, DateTime.Now);
if (profit_dataData == null)
{
return;
}
var profit_data = profit_dataData.today_data;
if (profit_data == null)
{
return;
......
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