| | |
| | | using CY.BLL.EC; |
| | | using CY.Infrastructure.DESEncrypt; |
| | | using CY.Infrastructure.Query; |
| | | using CY.BLL.OA; |
| | | |
| | | namespace CY.WebForm.Pages.work |
| | | { |
| | |
| | | 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(); |
| | |
| | | oA_WorkReminderBll = new OA_WorkPlanBll(); |
| | | oA_StaffBLL = new OA_StaffBLL(); |
| | | bll_OA_CarDictionaryBLL = new OA_CarDictionaryBLL(); |
| | | _OA_SuppliersBLL = new OA_SuppliersBLL(); |
| | | } |
| | | |
| | | //页面加载 |
| | |
| | | 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(); |
| | | } |
| | | } |