95 lines
3.9 KiB
Plaintext
95 lines
3.9 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_ML_ShDet.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_ML_ShDet" %>
|
|
|
|
|
|
|
|
<div runat="server" id="divBlock" class="alert alert-primary border border-primary border-thick row" role="alert">
|
|
<asp:Label runat="server" ID="lblTitle" />
|
|
<asp:HiddenField runat="server" ID="hfStatus" />
|
|
<asp:HiddenField runat="server" ID="hfStatusEnd" />
|
|
<asp:HiddenField ID="hfBatchID" runat="server" />
|
|
<asp:FormView ID="frmView" runat="server" Width="100%" DataKeyNames="SheetID" DataSourceID="ods">
|
|
<ItemTemplate>
|
|
SheetID:
|
|
<asp:Label ID="SheetIDLabel" runat="server" Text='<%# Eval("SheetID") %>' />
|
|
<br />
|
|
StackID:
|
|
<asp:Label ID="StackIDLabel" runat="server" Text='<%# Bind("StackID") %>' />
|
|
<br />
|
|
ShStatus:
|
|
<asp:Label ID="ShStatusLabel" runat="server" Text='<%# Bind("ShStatus") %>' />
|
|
<br />
|
|
SheetIndex:
|
|
<asp:Label ID="SheetIndexLabel" runat="server" Text='<%# Bind("SheetIndex") %>' />
|
|
<br />
|
|
IsNext:
|
|
<asp:Label ID="IsNextLabel" runat="server" Text='<%# Bind("IsNext") %>' />
|
|
<br />
|
|
MatID:
|
|
<asp:Label ID="MatIDLabel" runat="server" Text='<%# Bind("MatID") %>' />
|
|
<br />
|
|
WrkTimeEst:
|
|
<asp:Label ID="WrkTimeEstLabel" runat="server" Text='<%# Bind("WrkTimeEst") %>' />
|
|
<br />
|
|
WrkTimeReal:
|
|
<asp:Label ID="WrkTimeRealLabel" runat="server" Text='<%# Bind("WrkTimeReal") %>' />
|
|
<br />
|
|
Prepared:
|
|
<asp:Label ID="PreparedLabel" runat="server" Text='<%# Bind("Prepared") %>' />
|
|
<br />
|
|
PrntStart:
|
|
<asp:Label ID="PrntStartLabel" runat="server" Text='<%# Bind("PrntStart") %>' />
|
|
<br />
|
|
PrntEnd:
|
|
<asp:Label ID="PrntEndLabel" runat="server" Text='<%# Bind("PrntEnd") %>' />
|
|
<br />
|
|
WrkStart:
|
|
<asp:Label ID="WrkStartLabel" runat="server" Text='<%# Bind("WrkStart") %>' />
|
|
<br />
|
|
WrkEnd:
|
|
<asp:Label ID="WrkEndLabel" runat="server" Text='<%# Bind("WrkEnd") %>' />
|
|
<br />
|
|
UnlStart:
|
|
<asp:Label ID="UnlStartLabel" runat="server" Text='<%# Bind("UnlStart") %>' />
|
|
<br />
|
|
UnlEnd:
|
|
<asp:Label ID="UnlEndLabel" runat="server" Text='<%# Bind("UnlEnd") %>' />
|
|
<br />
|
|
RemnantID:
|
|
<asp:Label ID="RemnantIDLabel" runat="server" Text='<%# Bind("RemnantID") %>' />
|
|
<br />
|
|
PrintFilePath:
|
|
<asp:Label ID="PrintFilePathLabel" runat="server" Text='<%# Bind("PrintFilePath") %>' />
|
|
<br />
|
|
CncFilePath:
|
|
<asp:Label ID="CncFilePathLabel" runat="server" Text='<%# Bind("CncFilePath") %>' />
|
|
<br />
|
|
DrawFilePath:
|
|
<asp:Label ID="DrawFilePathLabel" runat="server" Text='<%# Bind("DrawFilePath") %>' />
|
|
<br />
|
|
MatExtCode:
|
|
<asp:Label ID="MatExtCodeLabel" runat="server" Text='<%# Bind("MatExtCode") %>' />
|
|
<br />
|
|
MatDesc:
|
|
<asp:Label ID="MatDescLabel" runat="server" Text='<%# Bind("MatDesc") %>' />
|
|
<br />
|
|
L_mm:
|
|
<asp:Label ID="L_mmLabel" runat="server" Text='<%# Bind("L_mm") %>' />
|
|
<br />
|
|
W_mm:
|
|
<asp:Label ID="W_mmLabel" runat="server" Text='<%# Bind("W_mm") %>' />
|
|
<br />
|
|
T_mm:
|
|
<asp:Label ID="T_mmLabel" runat="server" Text='<%# Bind("T_mm") %>' />
|
|
<br />
|
|
|
|
</ItemTemplate>
|
|
</asp:FormView>
|
|
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByMLStatus" TypeName="AppData.DS_AppTableAdapters.SheetListTableAdapter">
|
|
<SelectParameters>
|
|
<asp:ControlParameter ControlID="hfBatchID" DefaultValue="0" Name="BatchID" PropertyName="Value" Type="Int32" />
|
|
<asp:ControlParameter ControlID="hfStatus" DefaultValue="-1" Name="ShStatusStart" PropertyName="Value" Type="Int32" />
|
|
<asp:ControlParameter ControlID="hfStatusEnd" DefaultValue="-1" Name="ShStatusEnd" PropertyName="Value" Type="Int32" />
|
|
</SelectParameters>
|
|
</asp:ObjectDataSource>
|
|
</div>
|