2025-03-27 15:05:14 +08:00

46 lines
2.0 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Equipment.ascx.cs"
Inherits="SuperMap.RealEstate.MainTenance.Storage.Modules.Equipment.Equipment" %>
<%@ Register Assembly="RealEstate.Web" Namespace="SuperMap.RealEstate.Web.UI.WebControls" TagPrefix="smwc" %>
<ul class="ListItem Col2">
<li>
<smwc:DropDownListEx runat="server" Width="100%" CaptionText="设备类型:" AllowEmpty="false"
ID="EQUIPMENT_TYPE" ValidType="Integer">
<smwc:ListItemEx Text="收银机" Value="0" />
<smwc:ListItemEx Text="服务器" Value="1" />
<smwc:ListItemEx Text="打印机" Value="2" />
<smwc:ListItemEx Text="盘点枪" Value="3" />
<smwc:ListItemEx Text="扫码器" Value="4" />
</smwc:DropDownListEx>
</li>
<li>
<smwc:TextBoxEx ID="EQUIPMENT_CODE" Width="100%" runat="server" CaptionText="设备编码:"
AllowEmpty="false" ReadOnly="true" />
</li>
<li>
<smwc:TextBoxEx ID="EQUIPMENT_NAME" Width="100%" runat="server" CaptionText="设备名称:"
AllowEmpty="false" />
</li>
<li>
<smwc:DropDownListEx runat="server" Width="100%" CaptionText="设备状态:" AllowEmpty="false"
ID="EQUIPMENT_STATE" ValidType="Integer">
<smwc:ListItemEx Text="有效" Value="0"></smwc:ListItemEx>
<smwc:ListItemEx Text="无效" Value="1"></smwc:ListItemEx>
</smwc:DropDownListEx>
</li>
<li style="width: 100%;">
<smwc:TextBoxEx ID="EQUIPMENT_DESC" Width="100%" runat="server" CaptionText="  备注:"
TextMode="MultiLine" Rows="4" />
</li>
</ul>
<ul>
<li style="display: none;">
<smwc:TextBoxEx ID="SURPLUS_STOCK" Width="100%" runat="server" CaptionText="剩余库存:"
ValidType="Double" DigitsLength="6" />
</li>
<li style="display: none;">
<smwc:TextBoxEx ID="EQUIPMENT_ID" Width="100%" runat="server" CaptionText="内码:"
ValidType="Integer" ReadOnly="True" />
</li>
</ul>