CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverWorkBookPrint.aspx.cs
@@ -21,6 +21,7 @@
        CoreCmsPlanOrderBLL bll_CoreCmsPlanOrderBLL = null;
        CoreCmsPlanOrderItemBLL bll_CoreCmsPlanOrderItemBLL = null;
        EC_OrderPrintParameterBLL _eC_OrderPrintParameterBLL = null;
        OA_StaffBLL bll_OA_StaffBLL = null;
        public string orderid = "";
        //初始化
@@ -29,6 +30,7 @@
            bll_CoreCmsPlanOrderBLL = new CoreCmsPlanOrderBLL();
            bll_CoreCmsPlanOrderItemBLL = new CoreCmsPlanOrderItemBLL();
            _eC_OrderPrintParameterBLL = new EC_OrderPrintParameterBLL();
            bll_OA_StaffBLL = new OA_StaffBLL();
        }
        //页面加载
@@ -37,7 +39,11 @@
            
            if (!IsPostBack)
            {
                this.selSonghuoren.DataSource = bll_OA_StaffBLL.SelectListByFirmId(CurrentUser.MemberId, false, false).Where(x => x.SM_Post == "司机");
                this.selSonghuoren.DataTextField = "Name";
                this.selSonghuoren.DataValueField = "Name";
                this.selSonghuoren.DataBind();
                this.selSonghuoren.Items.Insert(0, new ListItem("全部", ""));
                BindList();
            }
@@ -63,6 +69,11 @@
            {
                coreCmsPlanOrders = coreCmsPlanOrders.Where(x => x.shipAddress.Contains(xuexiao));
            }
            var status = this.selstatus.Value.Trim().ToInt32(); ;
            if (status.HasValue)
            {
                coreCmsPlanOrders = coreCmsPlanOrders.Where(x => x.DeliverState == status);
            }