From 7dad3e5ef9896edc58a04c7b52e2978c33396d7a Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 31 十二月 2024 09:53:34 +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