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

89 lines
6.6 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Default.ascx.cs" Inherits="SuperMap.RealEstate.HighWay.Compents.Supplement.Default" %>
<%@ Register Assembly="RealEstate.Web" Namespace="SuperMap.RealEstate.Web.UI.WebControls" TagPrefix="smwc" %>
<ul class="ListItem Col1">
<li>
<fieldset class="cssGroupBar">
<legend><b>营收汇总情况</b></legend>
<ul>
<li style="width: 100%;">合计实收金额:<asp:Label ID="CASHPAY" runat="server" Enabled="false" ForeColor="#ff6600"></asp:Label>元
</li>
</ul>
</fieldset>
<fieldset class="cssGroupBar">
<legend><b>门店营收清单</b></legend>
<ul class="ListItem Col1">
<li class="Col1">
<asp:Button ID="ButtonNew" CssClass="ButtonNew" CausesValidation="false" runat="server" Text="添加" />
&nbsp;&nbsp;&nbsp;
<smwc:DropDownListEx ID="BUSINESS_TRADE" runat="server" CaptionText="经营业态:"
OnCallBackSetControl="ButtonSearch_CallBackClick" Visible="false" />
<smwc:DropDownListEx ID="BUSINESS_TYPE" runat="server" CaptionText="经营模式:" Width="200px">
<smwc:ListItemEx Text="全部" Value="-1"></smwc:ListItemEx>
<smwc:ListItemEx Text="业主自营" Value="1000" Level="1"></smwc:ListItemEx>
<smwc:ListItemEx Text="合作经营" Value="2000" Level="1"></smwc:ListItemEx>
<smwc:ListItemEx Text="固定租金" Value="3000" Level="1"></smwc:ListItemEx>
<smwc:ListItemEx Text="临时展销" Value="4000" Level="1"></smwc:ListItemEx>
</smwc:DropDownListEx>
<asp:TextBox ID="TextBox_Search" CssClass="TextBoxSearch" Width="180px" runat="server"></asp:TextBox>
<smwc:CallBackButton ID="ButtonSearch" CssClass="ButtonSearch" runat="server" Text="搜索" OnCallBackClick="ButtonSearch_CallBackClick" />
<smwc:LayoutButton ID="LayoutButton_Search" runat="server" Text="搜索选项">
<smwc:GridViewSearch ID="GridViewSearch1" runat="server" OnCallBackClick="ButtonSearch_CallBackClick">
<smwc:SearchItem FieldName="SHOPNAME" Text="搜索“经营门店”" Checked="true" />
<smwc:SearchItem FieldName="CASHPAY" Text="搜索“实收金额”" Checked="true" />
</smwc:GridViewSearch>
</smwc:LayoutButton>
<smwc:LayoutButton ID="LayoutButton_OrderBy" runat="server" Text="排序选项">
<smwc:GridViewOrderBy ID="GridViewOrderBy1" runat="server" OnCallBackClick="ButtonSearch_CallBackClick">
<smwc:OrderByItem FieldName="SUPPLYACCOUNT_ID" Text="添加顺序" GroupName="RadioOrderBy" Checked="true" />
<smwc:OrderByItem FieldName="ENDACCOUNT_DATE" Text="统计时间" GroupName="RadioOrderBy" />
<smwc:OrderByItem FieldName="SHOPNAME" Text="经营门店" GroupName="RadioOrderBy" />
<smwc:OrderByItem FieldName="CASHPAY" Text="实收金额" GroupName="RadioOrderBy" />
</smwc:GridViewOrderBy>
</smwc:LayoutButton>
</li>
<li class="Col1">
<smwc:GridViewEx ID="GridViewEx1" runat="server" OnSelectMethodParameters="GridViewEx1_SelectMethodParameters"
DataKeyNames="SUPPLYACCOUNT_ID" DataTableName="T_SUPPLYACCOUNT" OnRowDataBound="GridViewEx1_RowDataBound"
PopDialogUrl="SUPPLYACCOUNTPage.aspx" PopDialogWidth="1000" PopDialogHeight="500" PopDialogName="SUPPLYACCOUNTPage">
<Columns>
<asp:TemplateField>
<HeaderTemplate>序</HeaderTemplate>
<ItemTemplate>
<%# GridPageEx1.PageSize * GridPageEx1.CurrentPageIndex + Container.DataItemIndex + 1 %>.
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="SHOPNAME" Visible="true" HeaderText="经营门店" />
<asp:BoundField DataField="ENDACCOUNT_STARTDATE" Visible="true" HeaderText="开始时间"
HtmlEncode="false" DataFormatString="{0:yyyy年MM月dd日}" ItemStyle-Wrap="false" />
<asp:BoundField DataField="ENDACCOUNT_DATE" Visible="true" HeaderText="结束时间"
HtmlEncode="false" DataFormatString="{0:yyyy年MM月dd日}" ItemStyle-Wrap="false" />
<asp:BoundField DataField="BUSINESS_TRADENAME" Visible="true" HeaderText="经营业态" />
<asp:BoundField DataField="BUSINESS_TYPE" Visible="true" HeaderText="经营模式" />
<asp:BoundField DataField="TICKETCOUNT" Visible="false" HeaderText="客单数量" />
<asp:BoundField DataField="TOTALCOUNT" Visible="false" HeaderText="销售数量" />
<asp:BoundField DataField="TOTALSELLAMOUNT" Visible="false" HeaderText="销售金额" />
<asp:BoundField DataField="TOTALOFFAMOUNT" Visible="false" HeaderText="优惠金额" />
<asp:BoundField DataField="CASHPAY" Visible="true" HeaderText="实收金额" ItemStyle-HorizontalAlign="Right" />
<asp:BoundField DataField="MOBILEPAYMENT" Visible="true" HeaderText="租金" />
<asp:BoundField DataField="OPERATE_DATE" Visible="true" HeaderText="上传时间" />
<asp:BoundField DataField="SUPPLYACCOUNT_DESC" Visible="true" HeaderText="备注说明" />
</Columns>
<HeaderStyle Wrap="False" />
<RowStyle Wrap="False" />
</smwc:GridViewEx>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" EnableViewState="true"></asp:ObjectDataSource>
</li>
<li class="Col1">
<smwc:GridPageEx ID="GridPageEx1" runat="server" PageSize="20" OnCallBackPageChanged="GridPageEx1_CallBackPageChanged" />
</li>
</ul>
</fieldset>
</li>
</ul>
<script type="text/javascript">
function setData(e) {
jQuery("#M_user0_CASHPAY").html(e);
}
</script>