2025-03-28 09:49:56 +08:00

77 lines
3.6 KiB
Plaintext

<%@ Page Language="C#" CodeBehind="BUSINESSPAYMENTPage.aspx.cs" AutoEventWireup="true"
Inherits="SuperMap.RealEstate.Contract.Storage.BUSINESSPAYMENTPage" %>
<%@ Register Src="BUSINESSPAYMENT.ascx" TagName="BUSINESSPAYMENT" TagPrefix="uc1" %>
<!DOCTYPE html>
<!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">
<div>
<table style="overflow: auto; width: 100%;">
<tr>
<td>
经营合同名称:<asp:TextBox ID="REGISTERCOMPACT_NAME" Width="95%" runat="server"></asp:TextBox>
</td>
<td>
经营项目名称:<asp:TextBox ID="BUSINESSPROJECT_NAME" Width="95%" runat="server" CaptionText=""></asp:TextBox>
</td>
<td>
经营商户名称:<asp:TextBox ID="MERCHANTS_NAME" Width="95%" runat="server" CaptionText=""></asp:TextBox>
</td>
</tr>
<tr>
<td>
应收账款:<asp:TextBox ID="REVENUE_ACCOUNT" Width="95%" runat="server"></asp:TextBox>
</td>
<td>
结算日期:<asp:TextBox ID="SETTLE_DATE" Width="95%" runat="server"></asp:TextBox>
</td>
<td>
有效状态:<asp:DropDownList ID="BUSINESSPAYMENT_STATUS" Width="95%" runat="server">
<asp:ListItem Value="1" Selected="True">有效</asp:ListItem>
<asp:ListItem Value="0">无效</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td colspan="3">
更新说明:<asp:TextBox ID="BUSINESSPAYMENT_DESC" Width="98%" runat="server"
TextMode="MultiLine" Rows="4"></asp:TextBox>
</td>
</tr>
<tr style="display: none;">
<td>
更新日期:<asp:TextBox ID="OPERATE_DATE" Width="95%" runat="server"></asp:TextBox>
</td>
<td>
经营项目执行情况内码:<asp:TextBox ID="BUSINESSPAYMENT_ID" Width="100%" runat="server"></asp:TextBox>
经营合同内码:<asp:TextBox ID="REGISTERCOMPACT_ID" Width="100%" runat="server"></asp:TextBox>
经营项目内码:<asp:TextBox ID="BUSINESSPROJECT_ID" Width="100%" runat="server"></asp:TextBox>
经营商户内码:<asp:TextBox ID="MERCHANTS_ID" Width="100%" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td style="text-align: right;" colspan="3">
<asp:Button ID="ButtonSave" runat="server" OnClick="ButtonSave_Click" Text="保存" CssClass="ButtonSave" />
<asp:Button ID="ButtonDelete" runat="server" OnClick="ButtonDelete_Click"
CausesValidation="false" Text="删除" CssClass="ButtonDelete" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="resultMessage" runat="server" Width="98%" TextMode="MultiLine" Rows="4"></asp:TextBox>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>