From a0d38325a97957b37dd755bf732b63f6f7e2a5ff Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 24 十二月 2024 08:40:48 +0800
Subject: [PATCH] 修改外协付款

---
 CY_ECommercePlatform/CY.WebForm/Pages/work/MyRequestAdd.aspx.cs |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/work/MyRequestAdd.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/work/MyRequestAdd.aspx.cs
index 61b09ef..bbbf045 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/work/MyRequestAdd.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/work/MyRequestAdd.aspx.cs
@@ -13,6 +13,7 @@
 using CY.BLL.EC;
 using CY.Infrastructure.DESEncrypt;
 using CY.Infrastructure.Query;
+using CY.BLL.OA;
 
 namespace CY.WebForm.Pages.work
 {
@@ -26,7 +27,7 @@
         Sys_DictionaryBLL bll_Sys_DictionaryBLL = null;
         OA_WorkPlanBll oA_WorkReminderBll = null;
         OA_CarDictionaryBLL bll_OA_CarDictionaryBLL = null;
-
+        OA_SuppliersBLL _OA_SuppliersBLL = null;
         public MyRequestAdd()
         {
             departmentBll = new OA_DepartmentBll();
@@ -34,6 +35,7 @@
             oA_WorkReminderBll = new OA_WorkPlanBll();
             oA_StaffBLL = new OA_StaffBLL();
             bll_OA_CarDictionaryBLL = new OA_CarDictionaryBLL();
+            _OA_SuppliersBLL = new OA_SuppliersBLL(); 
         }
 
         //椤甸潰鍔犺浇
@@ -46,6 +48,12 @@
                 this.selPlanTitle.DataTextField = "ParName";
                 this.selPlanTitle.DataBind();
                 this.selPlanTitle.Items.Insert(0, new ListItem("鍏ㄩ儴", ""));
+
+                //渚涘簲鍟�
+                this.selSuppliers.DataSource = _OA_SuppliersBLL.getSupplierTable(CurrentUser.MemberId);
+                this.selSuppliers.DataBind();
+                this.selSuppliers.Items.Insert(0, new ListItem("鍏ㄩ儴", ""));
+
                 InitData();
             }
         }

--
Gitblit v1.9.1