feat: 完善焊接质量检查和材料管理

补齐焊前专项审核和焊缝外观检测流程,统一质检查询、附件处理与材料明细导出,提升业务数据追溯和组件匹配使用效率。
This commit is contained in:
2026-08-10 17:58:55 +08:00
parent bd73295ff8
commit 2de696fad2
48 changed files with 2252 additions and 131 deletions
@@ -0,0 +1,72 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeldAppearanceCheckEdit.aspx.cs" Inherits="FineUIPro.Web.HJGL.WeldingManage.WeldAppearanceCheckEdit" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>编辑焊缝外观检测</title>
<base target="_self" />
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
</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">
<Rows>
<f:FormRow>
<Items>
<f:DropDownList ID="ddlWeldJoint" runat="server" Label="已焊接焊口" Required="true"
ShowRedStar="true" EnableEdit="true" LabelWidth="130px" />
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="ddlQualified" runat="server" Label="外观是否合格" Required="true"
ShowRedStar="true" LabelWidth="130px">
<f:ListItem Text="合格" Value="1" />
<f:ListItem Text="不合格" Value="0" />
</f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="ddlCheckPerson" runat="server" Label="检测人" Required="true"
ShowRedStar="true" EnableEdit="true" LabelWidth="130px" />
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DatePicker ID="dpCheckTime" runat="server" Label="检测时间" Required="true"
ShowRedStar="true" LabelWidth="130px" />
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextArea ID="txtRemark" runat="server" Label="备注" MaxLength="500"
LabelWidth="130px" />
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Button ID="btnAttach" runat="server" Text="上传/查看照片(必填)" Icon="TableCell"
OnClick="btnAttach_Click" />
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar runat="server" Position="Bottom" ToolbarAlign="Right">
<Items>
<f:Button ID="btnSave" runat="server" Text="保存" Icon="SystemSave"
ValidateForms="SimpleForm1" OnClick="btnSave_Click" />
<f:Button ID="btnClose" runat="server" Text="关闭" Icon="SystemClose"
EnablePostBack="false" />
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
<f:Window ID="WindowAtt" Title="外观检测照片" Hidden="true" EnableIFrame="true"
EnableMaximize="true" Target="Parent" runat="server" IsModal="true" Width="720px"
Height="440px" />
</form>
</body>
</html>