📄 checkmoney.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CheckMoney.aspx.cs" Inherits="CRM.WEB.Bussiness.adccount.CheckMoney" %>
<%@ Register Assembly="PowerEasy.Controls" Namespace="PowerEasy.Controls" TagPrefix="cc1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc2" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>帐务核对</title>
<link href="../../Css/TabPage.css" rel="stylesheet" type="text/css" />
<link href="../../Css/Common.css" type="text/css" rel="stylesheet" />
<script language="javascript" type="text/javascript">
function ShowTabs(ID){
for (i=0;i< 5;i++){
if(i == ID){
document.getElementById("TabTitle" + i).className="titlemouseover";
document.getElementById("Tabs" + i).style.display="";
}
else{
document.getElementById("TabTitle" + i).className="tabtitle";
document.getElementById("Tabs" + i).style.display="none";
}
}
}
</script>
<script type="text/javascript">
function Cover(bottom,top)
{
var location = Sys.UI.DomElement.getLocation(bottom);
top.style.position = 'absolute';
top.style.top=location.y+'px';
top.style.left=location.x+'px';
top.style.height=bottom.offsetHeight+'px';
top.style.width=bottom.offsetWidth+'px';
}
</script>
</head>
<body runat="server" id="MasterPagebody">
<form id="form1" runat="server">
<asp:ScriptManager ID="sm" runat="server" EnablePageMethods="true"></asp:ScriptManager>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr align="center">
<td id="TabTitle0" class="titlemouseover" onclick="ShowTabs(0)">
合同款项</td>
<td id="TabTitle1" class="tabtitle" onclick="ShowTabs(1)">
回款计划</td>
<td id="TabTitle2" class="tabtitle" onclick="ShowTabs(2)">
回款记录</td>
<td id="TabTitle3" class="tabtitle" onclick="ShowTabs(3)">
开票</td>
<td>
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="5" cellspacing="1" class="border">
<tbody id="Tabs0">
<tr align="center">
<td class="spacingtitle" colspan="4">
<strong>
合同款项</strong></td>
</tr>
<tr class="tdbg">
<td class="tdbgleft" style="text-align: right; width: 15%;">
合同款项:</td>
<td style="width: 35%">
</td>
<td class="tdbgleft" style="text-align: right; width: 15%;">
应核金额:</td>
<td style="width: 35%">
<asp:Label ID="lblCheckMoney" runat="server" ForeColor="Red"></asp:Label></td>
</tr>
<tr class="tdbg">
<td colspan="4">
<cc1:ExtendedGridView ID="EgvContract" runat="server" AutoGenerateColumns="False" CheckBoxFieldHeaderWidth="3%" HeaderStyle-CssClass="gridtitle" IsHoldState="True"
SerialText="" DataKeyNames="c_contractId"
Width="100%">
<HeaderStyle CssClass="gridtitle" />
<Columns>
<asp:BoundField DataField="c_title" HeaderText="合同主题">
</asp:BoundField>
<asp:BoundField DataField="c_contractNo" HeaderText="合同编号">
</asp:BoundField>
<asp:BoundField DataField="c_contractMoney" HeaderText="合同金额">
</asp:BoundField>
<asp:BoundField DataField="c_payMoney" HeaderText="预付金额">
</asp:BoundField>
<asp:BoundField DataField="c_contractStage" HeaderText="执行状态">
</asp:BoundField>
</Columns>
</cc1:ExtendedGridView>
</td>
</tr>
<tr class="tdbg">
<td colspan="4">
<asp:LinkButton ID="btnInfo" runat="server" Text="核对规则:" OnClientClick="return false" ForeColor="Red"></asp:LinkButton>
<div>
</div>
<div id="flyout" style ="display:none; width:250px; z-index:2; background-color:#FFFFFF; border:solid 1px #D0D0D0;"></div><%--filter: progid:dximagetransform.microsoft.alpha(opacity=50);filter: progid:dximagetransform.microsoft.alpha(opacity=50);--%>
<div id="info" style="border-right: #3300cc 1px solid; border-top: #3300cc 1px solid;
border-left: #3300cc 1px solid; width: 500px; border-bottom: #3300cc 1px solid;
height: 240px; background-color: #ffffcc; text-align: center; display: none;">
<div id="btnCloseParent" style="float: right; width: 23px; height: 23px; font-weight: bold; color: silver; background-color: #ffffff; ">
<asp:LinkButton ID="btnClose" runat="server" OnClientClick="return false">X</asp:LinkButton></div>
1,财务核对的规律.
<br />
<span style="color: red"> *</span>合同金额 = 预付款 + 回款计划总额
<br />
<span style="color: red">*</span>回款计划总额 = 回款计划+回款计划 +.....
<br />
<span style="color: red">*</span>回款总额 = 回款记录 + 回款记录 + ....
<br />
<span style="color: red"><span style="color: #000000"> </span>*</span>差帐 = 合同金额 -- 实际回款
<br />
预付款 <br />
+
回款总额<br />
________________________<br />
实际回款 <br />
2,核对后的状态说明.
<br />
1> 如果合同金额与实际回款基本相符,则需选中。已回清,反之,选中,未回清。<br />
2> 如果款项多次回款无法回清,并且,已收回无望.则选中,作坏帐。
<br />
</div>
<cc2:AnimationExtender ID="openAnimation" runat="server" TargetControlID="btnInfo">
<Animations>
<OnClick>
<Sequence>
<EnableAction Enabled="false" />
<ScriptAction Script="Cover($get('btnInfo'),$get('flyout'));" />
<StyleAction AnimationTarget="flyout" Attribute="display" Value="block" />
<Parallel AnimationTarget="flyout" Duration=".3" Fps="25">
<Move Horizontal="166" Vertical="-50" />
<Resize Width="166" Height="183" />
<Color PropertyKey="backgroundColor" StartValue="#AAAAAA" EndValue="#FFFFFF" />
</Parallel>
<ScriptAction Script="Cover($get('flyout'),$get('info'));" />
<StyleAction AnimationTarget="info" Attribute="display" Value="block" />
<FadeIn AnimationTarget="info" Duration=".3" />
<StyleAction AnimationTarget="flyout" Attribute="display" Value="none" />
<Parallel AnimationTarget="info" Duration=".5">
<Color PropertyKey="color" StartValue="#666666" EndValue="#FF0000" />
<Color PropertyKey="borderColor" StartValue="#666666" EndValue="#FF0000" />
</Parallel>
<Parallel AnimationTarget="info" Duration=".5">
<Color PropertyKey="color" StartValue="#FF0000" EndValue="#666666" />
<Color PropertyKey="borderColor" StartValue="#FF0000" EndValue="#666666" />
<FadeIn AnimationTarget="btnCloseParent" MaxinumOpacity=".5" />
</Parallel>
</Sequence>
</OnClick>
</Animations>
</cc2:AnimationExtender>
<cc2:AnimationExtender ID="closeAnimation" runat="server" TargetControlID="btnClose">
<Animations>
<OnClick>
<Sequence>
<FadeOut AnimationTarget="info" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -