<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BaozhengjinCuishou.aspx.cs" Inherits="CY.WebForm.Pages.business.BaozhengjinCuishou" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head runat="server">
|
<title>订单收款</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
<link href="../../Styles/ParticularWQJ.css" rel="stylesheet" type="text/css" />
|
<script type="text/javascript">
|
|
</script>
|
</head>
|
<body style='margin: 0; padding: 0;'>
|
<form id="form1" runat="server" onsubmit="if(false)return false;">
|
|
<table class="table2" width="100%">
|
|
|
|
<tr>
|
<td class='col_third' '>
|
付款单位:
|
<label runat="server" id="txtBuyerName"></label>
|
|
</td>
|
</tr>
|
|
<tr>
|
|
<td class='col_third' >
|
金额:
|
<label runat="server" id="txtjine"></label>
|
|
</td>
|
</tr>
|
<tr >
|
<td class="contentLeft" colspan='2' >催款时间: <input type="text" id="txtStartTime" runat="server" class="date w150px" datefmt="yyyy-MM-dd HH:mm" /></td>
|
|
</tr>
|
<tr >
|
<td class="contentLeft" colspan='2'> 催款情况: </td>
|
|
</tr>
|
<tr >
|
|
<td class="contentLeft" colspan='2' > <textarea id="txtCuikuanqingkuang" runat="server" maxlength="250" style=" width:570px; height:120px;"></textarea></td>
|
|
</tr>
|
|
|
<tr>
|
<td class="contentLeft" colspan='2'>
|
     <input type="button" value="确认" runat="server" id='btnSubmit' />
|
<input type="hidden" id="ids" runat="server" />
|
</td>
|
</tr>
|
</table>
|
|
<table class="tableStyle tableStyleXS" useclick="false" usecheckbox="true" sortmode="false" id="test_table">
|
<thead>
|
<tr>
|
<th width="25">
|
编号
|
</th>
|
<th style="text-align: center;" width="70">
|
催款时间
|
</th>
|
<th style="text-align: center;" width="200">
|
催收情况
|
</th>
|
<th style="text-align: center;" width="70">
|
催款人
|
</th>
|
|
|
|
|
</tr>
|
</thead>
|
<tbody>
|
<asp:repeater id="rptData" runat="server">
|
<itemtemplate>
|
<tr>
|
|
<td>
|
<%#Container.ItemIndex +1 /*(UCPager1.PageSize *( UCPager1.PageIndex-1)+1)*/%>
|
</td>
|
<td>
|
<%#Eval("CreateTime", "{0:MM-dd HH:mm}")%>
|
|
</td>
|
<td style="text-align: center;">
|
<%#Eval("Cuikuanqingkuang")%>
|
|
|
</td>
|
<td style="text-align: center;">
|
<%#Eval("Creater")%>
|
|
|
</td>
|
|
|
|
</tr>
|
</itemtemplate>
|
</asp:repeater>
|
</tbody>
|
</table>
|
</form>
|
</body>
|
</html>
|