username@email.com
12 小时以前 ffaad850fd7ecd29ec004bcf4a90e1b0f5be8605
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<%@ 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'> 催款情况: </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'>
            &#12288;&#12288;&#12288;&#12288;&#12288;<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>