CY_ECommercePlatform/CY.WebForm/Pages/business/OrderList.aspx.cs
@@ -674,6 +674,20 @@
                PageIndex = UCPager1.AspNetPager.CurrentPageIndex
            };
            IEnumerable<EC_OrderBasic> result = _eC_OrderBasicBLL.SelectModelPage_Seller(pagination, SearchParam);
            foreach (var eC_OrderBasic in result)
            {
                if(eC_OrderBasic.DeliveryTime.HasValue && eC_OrderBasic.DeliveryTime.Value < DateTime.Now.Date)
                {
                    eC_OrderBasic.Shifoubiaohongwangong = "<p style=\"color:red;\">完工</p>";
                    eC_OrderBasic.Shifoubiaohongsonghuo = "<p style=\"color:red;\">送货</p>";
                }
                else
                {
                    eC_OrderBasic.Shifoubiaohongwangong = "完工";
                    eC_OrderBasic.Shifoubiaohongsonghuo = "送货";
                }
            }
            rptData.DataSource = result;
            rptData.DataBind();