username@email.com
2025-05-14 99ddfbcecf0fa2881eb3a91028257eef87dab6de
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyBaoxiaoDetail.aspx.cs" Inherits="CY.WebForm.Pages.work.MyBaoxiaoDetail" %>
 
<!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 id="Head1" runat="server">
    <title>报销明细</title>
    <uc:CMSHead ID="CMSHead1" runat="server" />
    <style type="text/css">
        .w70px { width: 70px; }
        fieldset { padding: 3px; margin: 5px auto; }
    </style>
</head>
<body>
    <form id="form1" class="form2" runat="server">
    <div>
        <fieldset>
            <legend>报销信息</legend>
            <table class="tableStyle" style="margin: 0px auto;" cellpadding="0" cellspacing="0">
                <tr>
                     <td class="ali03" colspan="3" style="width:30%; ">
                        部门:
                    </td>
                    <td style="width:70%; ">
                        <span id="spanDepart" runat="server"></span>
                    </td>
                </tr>
                <tr>
                     <td class="ali03" colspan="3">
                        姓名:
                    </td>
                    <td>
                        <span id="spanPlanPeople" runat="server"></span>
                    </td>
                </tr>
                <tr>
                   
                    <td class="ali03 " colspan="3">
                        金额:
                    </td>
                    <td>
                        <span id="spanPlanMoney" runat="server"></span>
                    </td>
                </tr>
                  <tr>
                   
                    <td class="ali03 " colspan="3">
                        科目:
                    </td>
                    <td>
                        <span id="spanSubject" runat="server"></span>
                    </td>
                </tr>
                <tr>
                   
                    <td class="ali03 " colspan="3">
                       摘要:
                    </td>
                    <td>
                        <span id="spanPlanContent" runat="server"></span>
                    </td>
                </tr>
             <tr>
                   
                    <td class="ali03 " colspan="3">
                       发票:
                    </td>
                    <td>
                         <asp:Repeater ID="RepClientList" runat="server">
                           <ItemTemplate>
                              
                    <a title="查看发票"    target="view_window" href="<%#Eval("PlanAttachment")%>">
                               发票 <%#Container.ItemIndex + 1 %> 
                            </a>  &nbsp; &nbsp; &nbsp;
 
                                </ItemTemplate>
                           </asp:Repeater>
                    </td>
                </tr>
 
                 <tr>
                   
                    <td class="ali03 " colspan="3">
                       附件:
                    </td>
                    <td>
                         <asp:Repeater ID="Repeater1" runat="server">
                           <ItemTemplate>
                              
                    <a title="查看附件"    target="view_window" href="<%#Eval("PlanAttachment")%>">
                               附件 <%#Container.ItemIndex + 1 %> 
                            </a>  &nbsp; &nbsp; &nbsp;
 
                                </ItemTemplate>
                           </asp:Repeater>
                    </td>
                </tr>
              <tr>
                   
                    <td class="ali03 " colspan="3">
                       后补发票:
                    </td>
                    <td>
                        <span id="spanHoubufapiaoStatus" runat="server"></span>
                    </td>
                </tr>
 
 
            </table>
        </fieldset>
        <fieldset>
            <legend>批复信息</legend>
            <table class="tableStyle" style="margin: 0px auto;" cellpadding="0" cellspacing="0">
                
 
                   <asp:Repeater ID="Repeater2" runat="server">
 
                       <HeaderTemplate>
                 
                        <tr>
                             
                            <th width="60" style="text-align: center">
                                审批人
                            </th>
                            <th width="130" style="text-align: center">
                                审批时间
                            </th>
                            <th width="70" style="text-align: center">
                                审批结果
                            </th>
                            <th style="text-align: center">
                                审批回复
                            </th>
                            
                        </tr>
                </HeaderTemplate>
 
                           <ItemTemplate>
                                <tr>
                        
                        <td>
                            <%#Eval("ApprovalStaffName")%> 
                        </td>
                        
                        <td>
                            <%#Eval("ApprovalTime", "{0:yyyy-MM-dd HH:mm:ss}")%>
                        </td>
                                    <td>
                           <%#Eval("ApprovalStatusName")%> 
                        </td>
                                    <td>
                           <%#Eval("ApprovalContent")%> 
                        </td>
 
                    </tr>
                    
 
                                </ItemTemplate>
                           </asp:Repeater>
                
                  
                     
                
            </table>
        </fieldset>
    </div>
    </form>
</body>
</html>