2024-02-21 开车分包管理修改

This commit is contained in:
2024-02-21 15:13:54 +08:00
parent 9bf96a31db
commit 5378f1b26d
24 changed files with 801 additions and 124 deletions
@@ -28,6 +28,7 @@
<f:Button ID="btnNew" Icon="Add" ToolTip="新增" EnablePostBack="false" runat="server" Hidden="true">
</f:Button>
<f:Button ID="btnSelect" Icon="ApplicationEdit" ToolTip="选标" Text="选标" EnablePostBack="True" runat="server" OnClick="btnSelect_OnClick"> </f:Button>
<f:Button ID="btnProgress" Icon="ApplicationEdit" ToolTip="进度" Text="进度" EnablePostBack="True" runat="server" OnClick="btnProgress_OnClick"> </f:Button>
<f:Button ID="btnScoring" Icon="ApplicationEdit" ToolTip="打分" Text="打分" EnablePostBack="True" runat="server" OnClick="btnScoring_OnClick"> </f:Button>
</Items>
@@ -66,7 +67,7 @@
</f:Panel>
<f:Window ID="Window1" Title="开车分包情况" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="1000px" Height="700px">
Width="1000px" Height="750px">
</f:Window>
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px"
@@ -226,5 +226,23 @@ namespace FineUIPro.Web.TestRun.DriverSub
}
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("DriverSubEdit.aspx?DriverSubPlanId={0}", Grid1.SelectedRowID, "编辑 - ")));
}
protected void btnProgress_OnClick(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
return;
}
if (!DriverSubContactService.IsAllBidirectional(Grid1.SelectedRowID))
{
Alert.ShowInTop("请先进行选标确定中标单位!", MessageBoxIcon.Warning);
return;
}
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("DriverSubSetProgressEdit.aspx?DriverSubPlanId={0}", Grid1.SelectedRowID, "编辑 - ")));
}
}
}
@@ -95,6 +95,15 @@ namespace FineUIPro.Web.TestRun.DriverSub
/// </remarks>
protected global::FineUIPro.Button btnSelect;
/// <summary>
/// btnProgress 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnProgress;
/// <summary>
/// btnScoring 控件。
/// </summary>
@@ -4,7 +4,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>开车分包管理</title>
<title>开车分包管理打分</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="~/res/css/common.css" rel="stylesheet" type="text/css" />
</head>
@@ -26,12 +26,15 @@
</Items>
</f:Panel>
<f:Panel runat="server" ID="panelCenterRegion" RegionPosition="Center" ShowBorder="true"
Layout="VBox" ShowHeader="false" BodyPadding="5px" IconFont="PlusCircle" Title="焊接任务单"
Layout="VBox" ShowHeader="false" BodyPadding="5px" IconFont="PlusCircle" Title="履约情况评价表"
TitleToolTip="履约情况评价表" AutoScroll="true">
<Items>
<f:TextBox runat="server" ID="txtSubContractName" Label="分包合同名称" LabelAlign="Left" LabelWidth="120px" />
<f:TextBox runat="server" ID="txtDriverContractCode" Label="开车合同号" LabelAlign="Left" LabelWidth="120px" />
<f:TextBox runat="server" ID="txtEvaluator" Label="评价人" LabelAlign="Left" LabelWidth="120px" />
<f:Grid ID="Grid1" CssClass="blockpanel" ShowBorder="true" ShowHeader="false" Title="" EnableCollapse="false"
runat="server" DataKeyNames="Number" AllowCellEditing="true" ClicksToEdit="1" ForceFit="true"
EnableColumnLines="true" DataIDField="Number" Height="450px">
EnableColumnLines="true" DataIDField="Number" Height="400px">
<Columns>
<f:RenderField ColumnID="Number" DataField="Number" FieldType="String" Width="5px"
HeaderText="序号" HeaderTextAlign="Center">
@@ -47,6 +50,10 @@
</f:RenderField>
</Columns>
</f:Grid>
<f:Label runat="server" Text="填表说明:以百分制进行评价,60分以下为履约差,60~80分为履约一般,80~100分为履约优秀。"/>
<f:Button ID="btnPrinter" EnablePostBack="true" runat="server"
Text="导出履约情况评价表" Icon="Printer" OnClick="btnOut_Click" EnableAjax="false" DisableControlBeforePostBack="true">
</f:Button>
<f:Button ID="btnAttach" Icon="TableCell" EnablePostBack="true" Text="附件" runat="server" OnClick="btnAttach_Click">
</f:Button>
</Items>
@@ -94,6 +94,9 @@ namespace FineUIPro.Web.TestRun.DriverSub
if (model!=null)
{
DriverSubId = model.DriverSubId;
txtDriverContractCode.Text = model.DriverContractCode;
txtSubContractName.Text = model.SubContractName;
txtEvaluator.Text = model.Evaluator;
}
else
{
@@ -160,7 +163,9 @@ namespace FineUIPro.Web.TestRun.DriverSub
newData.DriverSubPlanId = DriverSubPlanId;
newData.DriverSubContractorsId = tvControlItem.SelectedNodeID;
newData.EvaluationData = json;
newData.DriverContractCode = txtDriverContractCode.Text;
newData.SubContractName = txtSubContractName.Text;
newData.Evaluator = txtEvaluator.Text;
if (string.IsNullOrEmpty(DriverSubId))
{
newData.DriverSubId = SQLHelper.GetNewID(typeof(Model.DriverSub_DriverSub));
@@ -177,5 +182,14 @@ namespace FineUIPro.Web.TestRun.DriverSub
#endregion
protected void btnOut_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(DriverSubId))
{
ShowNotify("请先编辑数据!", MessageBoxIcon.Success);
return;
}
BLL.DriverSubService.PrintFile(DriverSubPlanId, tvControlItem.SelectedNodeID);
}
}
}
@@ -68,6 +68,33 @@ namespace FineUIPro.Web.TestRun.DriverSub
/// </remarks>
protected global::FineUIPro.Panel panelCenterRegion;
/// <summary>
/// txtSubContractName 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtSubContractName;
/// <summary>
/// txtDriverContractCode 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtDriverContractCode;
/// <summary>
/// txtEvaluator 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtEvaluator;
/// <summary>
/// Grid1 控件。
/// </summary>
@@ -86,6 +113,15 @@ namespace FineUIPro.Web.TestRun.DriverSub
/// </remarks>
protected global::FineUIPro.TextBox txtGrade;
/// <summary>
/// btnPrinter 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnPrinter;
/// <summary>
/// btnAttach 控件。
/// </summary>
@@ -39,9 +39,7 @@
<asp:Label ID="Label1" runat="server" Text='<%# BLL.DriverSubPlanService.GetSubcontractingTypeNames(Eval("SubcontractingTypes")) %>'></asp:Label>
</ItemTemplate>
</f:TemplateField>
<f:RenderField ColumnID="StateName" DataField="StateName"
FieldType="String" HeaderText="状态" HeaderTextAlign="Center" TextAlign="Center" Width="55px">
</f:RenderField>
<f:LinkButtonField HeaderText="附件" ConfirmTarget="Top" CommandName="AttachUrl" ColumnID="AttachUrl"
TextAlign="Center" ToolTip="附件查看" Icon="Find" />
@@ -44,12 +44,7 @@
<Items>
<f:CheckBoxList ID="SubcontractingTypes" Label="开车分包类别" runat="server" LabelAlign="Right" LabelWidth="150px" Required="True" ShowRedStar="True" ></f:CheckBoxList>
</Items>
</f:FormRow>
<f:FormRow runat="server">
<Items>
<f:dropdownlist ID="drpstate" Label="分包状态" LabelAlign="Right" LabelWidth="150px" Required="true" ShowRedStar="true" runat="server" ></f:dropdownlist>
</Items>
</f:FormRow>
</f:FormRow>
<f:FormRow runat="server">
<Items>
<f:Panel ID="Panel3" Width="300px" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
@@ -23,10 +23,7 @@ namespace FineUIPro.Web.TestRun.DriverSub
SubcontractingTypes.DataValueField = "Value";
SubcontractingTypes.DataBind();
drpstate.DataSource = DropListService.drpDriverSubPlanStateList();
drpstate.DataTextField = "Text";
drpstate.DataValueField = "Value";
drpstate.DataBind();
if (!string.IsNullOrEmpty(id))
{
Model.DriverSub_DriverSubPlan data = BLL.DriverSubPlanService.GetDriverSubPlanById(id);
@@ -35,17 +32,7 @@ namespace FineUIPro.Web.TestRun.DriverSub
this.hdId.Text = id;
this.txtCode.Text = data.Code;
this.SubcontractingTypes.SelectedValueArray= data.SubcontractingTypes.Split(',');
this.drpstate.SelectedValue= data.State.ToString();
//if (!string.IsNullOrEmpty(data.SubUnitId))
//{
// this.drpSubUnitId.SelectedValue = data.SubUnitId;
//}
//this.txtIntroductions.Text = data.Introductions;
//this.txtAchievement.Text = data.Achievement;
//this.txtCooperation.Text = data.Cooperation;
//this.drpUnitWorkIds.SelectedValueArray = data.InstallationIds.Split(',');
//this.rblIsInvited.SelectedValue = data.IsInvited.ToString();
//this.txtRemark.Text = data.Remark;
}
}
}
@@ -81,7 +68,6 @@ namespace FineUIPro.Web.TestRun.DriverSub
Model.DriverSub_DriverSubPlan newData = new Model.DriverSub_DriverSubPlan();
newData.Code = this.txtCode.Text.Trim();
newData.SubcontractingTypes = GetStringByArray(this.SubcontractingTypes.SelectedValueArray);
newData.State = int.Parse(drpstate.SelectedValue);
newData.ProjectId = this.CurrUser.LoginProjectId;
if (!string.IsNullOrEmpty(id))
{
@@ -122,15 +122,6 @@ namespace FineUIPro.Web.TestRun.DriverSub
/// </remarks>
protected global::FineUIPro.CheckBoxList SubcontractingTypes;
/// <summary>
/// drpstate 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpstate;
/// <summary>
/// Panel3 控件。
/// </summary>
@@ -6,7 +6,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>编辑开车分包联络</title>
<title>开车分包管理选标</title>
</head>
<body>
<form id="form1" runat="server">
@@ -0,0 +1,70 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DriverSubSetProgressEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.DriverSub.DriverSubSetProgressEdit" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>开车分包管理进度</title>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="btnSave" OnClick="btnSave_Click" Icon="SystemSave" runat="server" ToolTip="保存" Text="保存" ValidateForms="SimpleForm1">
</f:Button>
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" Text="关闭" runat="server" Icon="SystemClose" Size="Medium">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
<Rows>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpCatalystLoading" AutoSelectFirstItem="false" EmptyText="请从下拉选项中选择" MatchFieldWidth="false" Label="催化剂装填" LabelWidth="130px" LabelAlign="Right" Required="True" ShowRedStar="True" Hidden="True" Readonly="True">
</f:DropDownList>
<f:dropdownlist ID="drpCatalystLoadingState" Label="分包状态" LabelAlign="Right" LabelWidth="150px" Required="true" ShowRedStar="true" runat="server" Hidden="True" ></f:dropdownlist>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpOven" AutoSelectFirstItem="false" EmptyText="请从下拉选项中选择" MatchFieldWidth="false" Label="烘炉" LabelWidth="130px" LabelAlign="Right" Required="True" ShowRedStar="True" Hidden="True" Readonly="True">
</f:DropDownList>
<f:dropdownlist ID="drpOvenState" Label="分包状态" LabelAlign="Right" LabelWidth="150px" Required="true" ShowRedStar="true" runat="server" Hidden="True" ></f:dropdownlist>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpChemicalCleaning" AutoSelectFirstItem="false" EmptyText="请从下拉选项中选择" MatchFieldWidth="false" Label="化学清洗" LabelWidth="130px" LabelAlign="Right" Required="True" ShowRedStar="True" Hidden="True" Readonly="True">
</f:DropDownList>
<f:dropdownlist ID="drpChemicalCleaningState" Label="分包状态" LabelAlign="Right" LabelWidth="150px" Required="true" ShowRedStar="true" runat="server" Hidden="True" ></f:dropdownlist>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpDrivingTeam" AutoSelectFirstItem="false" EmptyText="请从下拉选项中选择" MatchFieldWidth="false" Label="开车队" LabelWidth="130px" LabelAlign="Right" Required="True" ShowRedStar="True" Hidden="True" Readonly="True">
</f:DropDownList>
<f:dropdownlist ID="drpDrivingTeamState" Label="分包状态" LabelAlign="Right" LabelWidth="150px" Required="true" ShowRedStar="true" runat="server" Hidden="True" ></f:dropdownlist>
</Items>
</f:FormRow>
</Rows>
</f:Form>
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px"
Height="500px">
</f:Window>
</form>
</body>
</html>
@@ -0,0 +1,115 @@
using BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.TestRun.DriverSub
{
public partial class DriverSubSetProgressEdit : PageBase
{
public string DriverSubPlanId
{
get { return (string)ViewState["DriverSubPlanId"]; }
set { ViewState["DriverSubPlanId"] = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
DriverSubPlanId = Request.Params["DriverSubPlanId"];
Bind();
}
}
void Save()
{
DriverSubContactService.SetState(DriverSubPlanId, drpCatalystLoading.SelectedValue,drpCatalystLoadingState.SelectedValue );
DriverSubContactService.SetState(DriverSubPlanId, drpOven.SelectedValue, drpOvenState.SelectedValue);
DriverSubContactService.SetState(DriverSubPlanId, drpChemicalCleaning.SelectedValue, drpChemicalCleaningState.SelectedValue);
DriverSubContactService.SetState(DriverSubPlanId, drpDrivingTeam.SelectedValue, drpDrivingTeamState.SelectedValue);
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}
void Bind()
{
var model = BLL.DriverSubPlanService.GetDriverSubPlanById(DriverSubPlanId);
if (model != null)
{
var subcontractingtypeList = model.SubcontractingTypes.Split(',');
foreach (string item in subcontractingtypeList)
{
if (item.Contains("1"))
{
drpCatalystLoading.Hidden = false;
DriverSubContactService.InitDropListByDriverSubPlanId(DriverSubPlanId, item, drpCatalystLoading);
drpCatalystLoading.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "1")?.DriverSubContractorsId;
drpCatalystLoadingState.Hidden=false;
DriverSubContactService.InitDriverSubPlanState(drpCatalystLoadingState);
drpCatalystLoadingState.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "1")?.State.ToString();
}
else if (item.Contains("2"))
{
drpOven.Hidden = false;
DriverSubContactService.InitDropListByDriverSubPlanId(DriverSubPlanId, item, drpOven);
drpOven.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "2")?.DriverSubContractorsId;
drpOvenState.Hidden = false;
DriverSubContactService.InitDriverSubPlanState(drpOvenState);
drpOvenState.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "2")?.State.ToString();
}
else if (item.Contains("3"))
{
drpChemicalCleaning.Hidden = false;
DriverSubContactService.InitDropListByDriverSubPlanId(DriverSubPlanId, item, drpChemicalCleaning);
drpChemicalCleaning.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "3")?.DriverSubContractorsId;
drpChemicalCleaningState.Hidden = false;
DriverSubContactService.InitDriverSubPlanState(drpChemicalCleaningState);
drpChemicalCleaningState.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "3")?.State.ToString();
}
else if (item.Contains("4"))
{
drpDrivingTeam.Hidden = false;
DriverSubContactService.InitDropListByDriverSubPlanId(DriverSubPlanId, item, drpDrivingTeam);
drpDrivingTeam.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "4")?.DriverSubContractorsId;
drpDrivingTeamState.Hidden = false;
DriverSubContactService.InitDriverSubPlanState(drpDrivingTeamState);
drpDrivingTeamState.SelectedValue = DriverSubContactService
.GetBidirectional(DriverSubPlanId, "4")?.State.ToString();
}
}
}
}
protected void btnSave_Click(object sender, EventArgs e)
{
Save();
}
}
}
@@ -0,0 +1,161 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.TestRun.DriverSub
{
public partial class DriverSubSetProgressEdit
{
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// SimpleForm1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form SimpleForm1;
/// <summary>
/// Toolbar1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// ToolbarFill1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarFill ToolbarFill1;
/// <summary>
/// btnSave 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSave;
/// <summary>
/// btnClose 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnClose;
/// <summary>
/// drpCatalystLoading 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpCatalystLoading;
/// <summary>
/// drpCatalystLoadingState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpCatalystLoadingState;
/// <summary>
/// drpOven 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpOven;
/// <summary>
/// drpOvenState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpOvenState;
/// <summary>
/// drpChemicalCleaning 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpChemicalCleaning;
/// <summary>
/// drpChemicalCleaningState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpChemicalCleaningState;
/// <summary>
/// drpDrivingTeam 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpDrivingTeam;
/// <summary>
/// drpDrivingTeamState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpDrivingTeamState;
/// <summary>
/// WindowAtt 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Window WindowAtt;
}
}