Commit 9284665a by 泽锋 李

fix

parent f4cbce7d
...@@ -2075,7 +2075,12 @@ where t1.gmt_modified>=@btime and t1.gmt_modified<=@etime ...@@ -2075,7 +2075,12 @@ where t1.gmt_modified>=@btime and t1.gmt_modified<=@etime
// 查询利润数据 // 查询利润数据
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) if (profit_data == null)
{ {
return; 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