From 0fb5eab0d6787922d3e915543e95fe5073d767ff Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 13 三月 2025 08:48:13 +0800 Subject: [PATCH] 派了车就不能再派车了 派车的时候选择新的送货时间和填写注意事项 完成 --- CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanList.aspx.cs | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanList.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanList.aspx.cs index 85f920b..f274868 100644 --- a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanList.aspx.cs +++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanList.aspx.cs @@ -66,11 +66,11 @@ //鍔犺浇鏌ヨ鏉′欢 protected void InitialSelectData() { - this.selDriverId.DataSource = bll_OA_StaffBLL.SelectListByFirmId(CurrentUser.MemberId, null, null).Where(x => x.BF_IsDriver == true);//.Where(x => x.SM_Post.Equals("椹鹃┒鍛�")) ; - this.selDriverId.DataTextField = "Name"; - this.selDriverId.DataValueField = "Keyid"; - this.selDriverId.DataBind(); - this.selDriverId.Items.Insert(0, new ListItem("鍏ㄩ儴", "")); + //this.selDriverId.DataSource = bll_OA_StaffBLL.SelectListByFirmId(CurrentUser.MemberId, null, null).Where(x => x.BF_IsDriver == true);//.Where(x => x.SM_Post.Equals("椹鹃┒鍛�")) ; + //this.selDriverId.DataTextField = "Name"; + //this.selDriverId.DataValueField = "Keyid"; + //this.selDriverId.DataBind(); + //this.selDriverId.Items.Insert(0, new ListItem("鍏ㄩ儴", "")); this.selCarId.DataSource = _OA_CarManageBll.SelectListByFirmId(CurrentUser.MemberId); this.selCarId.DataTextField = "CarNumber"; @@ -84,6 +84,8 @@ this.selBusinessManager.DataValueField = "Keyid"; this.selBusinessManager.DataBind(); this.selBusinessManager.Items.Insert(0, new ListItem("鍏ㄩ儴", "")); + + this.selPaiche.Value = "2"; //this.selDriverIddo.DataSource = bll_OA_StaffBLL.SelectListByFirmId(CurrentUser.MemberId, null, null).Where(x => x.BF_IsDriver == true);//.Where(x => x.SM_Post.Equals("椹鹃┒鍛�")); @@ -303,10 +305,10 @@ CurrentUser.MemberId, this.txtDeliveryTime.Value, this.selCarId.Value, - this.selDriverId.Value, + "", "", this.txtCustormerName.Value.Trim(), - this.selBusinessManager.Value + this.selBusinessManager.Value,this.selPaiche.Value ); -- Gitblit v1.9.1