username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OutsourePreDeposit.aspx.cs" Inherits="CY.WebForm.Pages.financial.OutsourePreDeposit" %>
 
<!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" />
    <script type="text/javascript">
        //存款
        function onDeposit(keyid) {
            top.Dialog.open({ URL: "/Pages/financial/DepositsOutsoure.aspx?Keyid=" + keyid, Title: "外协预付款存款", Width: 900, Height: 680 });
        }
        //查看
        function onView(keyid) {
            top.Dialog.open({ URL: "/Pages/financial/DepositsOutsoure.aspx?i=v&Keyid=" + keyid, Title: "外协预付款记录", Width: 900, Height: 680 });
        }
        $(function () {
            $(".iscs").each(function (ii, vv) {
                $(vv).remove();
            });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server" class="form">
    <div id="scrollContent">
        <div class="box1" paneltitle="功能面板" roller="false">
            <table class="TableNewStyle">
                <tr>
                    <td style="width: 100px">
                        外协厂商名称:
                    </td>
                    <td>
                        <input type="text" class="w122px" runat="server" id="txtquery_userName" />
                    </td>
                    <td>
                        <asp:Button CssClass="button" ID="btn_Search" Text="查询" runat="server" padding="0px" OnClick="btn_Search_Click" />
                    </td>
                </tr>
            </table>
        </div>
        <div class="box_tool_min">
            <div class="center">
                <div class="left">
                    <div class="right">
                        <div class="padding_top5 padding_left10">
                            如外协厂商为会员,那么外协预付款由此外协厂商操作客户预付款所得。
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div>
            <asp:Repeater ID="RepClientList" runat="server">
                <HeaderTemplate>
                    <table class="tableStyle" useclick="false" usecheckbox="true" sortmode="true" style="text-align:center;">
                        <tr>
                            <%--<th width="25"></th>--%>
                            <th>
                                编号
                            </th>
                            <th>
                                外协厂商名称
                            </th>
                            <th>
                                预付款余额
                            </th>
                            <th width="80">
                                操作
                            </th>
                        </tr>
                </HeaderTemplate>
                <ItemTemplate>
                    <tr>
                        <%--<td><input type="checkbox" class="SelectCheck" /></td>--%>
                        <td>
                            <%#Container.ItemIndex + 1+ this.UCPager1.PageSize * (this.UCPager1.PageIndex - 1)%>
                        </td>
                        <td>
                            <%#Eval("OutVendorName")%>
                        </td>
                        <td>
                            <%#Eval("Prepayments", "{0:F2}")%>
                        </td>
                        <td class="Operate">
                            <span menu_member_case_id="case_onDeposit" menu_member_case_name="存款" class=" <%#Eval("Keyid").ToString() == Eval("FirmId").ToString() ? "" : "iscs"%>" onclick="onDeposit('<%#Eval("Keyid")%>')">存款</span>
                            <span menu_member_case_id="case_onView" menu_member_case_name="查看" class=" <%#Eval("Keyid").ToString() == Eval("FirmId").ToString() ? "iscs" : ""%>" onclick="onView('<%#Eval("Keyid")%>')">查看</span>
                        </td>
                    </tr>
                </ItemTemplate>
                <FooterTemplate>
                    </table>
                </FooterTemplate>
            </asp:Repeater>
            <div id="page">
                <uc:UCPager ID="UCPager1" runat="server" />
            </div>
        </div>
    </div>
    </form>
</body>
</html>