Commit 6f082c23 by lizefeng

tsst

parent 5cb0e7aa
...@@ -26,7 +26,7 @@ t3.buyer_name, ...@@ -26,7 +26,7 @@ t3.buyer_name,
t4.estimated_arrival_time, t4.estimated_arrival_time,
t4.purchase_id, t4.purchase_id,
t3.sku_title_cn, t3.sku_title_cn,
(case when ( ifnull(t4.count)>0) and now()>t4.estimated_arrival_time then 1 else 0 end) as 'is_overdue', (case when ( ifnull(t4.count,0)>0) and now()>t4.estimated_arrival_time then 1 else 0 end) as 'is_overdue',
t4.deliver_name t4.deliver_name
from from
dc_auto_forecast_fluctuation as t1 dc_auto_forecast_fluctuation as t1
......
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