<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="InvoicingCuishou.aspx.cs" Inherits="CY.WebForm.Pages.business.InvoicingCuishou" %>
|
|
<!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 colspan='2' class='col_third'>
|
开票时间:
|
<label runat="server" id="txtkaipiaoshijian"></label>
|
</td>
|
</tr>
|
<%-- <tr>
|
<td colspan='2' class='col_third' '>
|
开票申请单号:
|
<label runat="server" id="txtSellerOrderId"></label>
|
|
</td>
|
</tr>--%>
|
<tr>
|
<td colspan='2' class='col_third' '>
|
客户单位:
|
<label runat="server" id="txtBuyerName"></label>
|
|
</td>
|
</tr>
|
<tr>
|
<td colspan='2' class='col_third' >
|
业务经理:
|
<label runat="server" id="txtBusinessManager"></label>
|
|
</td>
|
</tr>
|
<tr>
|
<td class='col_third' >
|
订单数量:
|
<label runat="server" id="txtshuliang"></label>
|
|
</td>
|
<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'>
|
     <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="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("Creater")%>
|
|
|
</td>
|
|
|
|
</tr>
|
</itemtemplate>
|
</asp:repeater>
|
</tbody>
|
</table>
|
</form>
|
</body>
|
</html>
|