username@email.com
2025-05-15 9be7596c0b251c392ab0788f3d18806502c6ee76
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DeliverWork.aspx.cs" Inherits="CY.WebForm.Pages.business.DeliverWork" %>
 
<!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"/>
    <script type="text/javascript">
        $(
            function () {
                $("#txtDeliverTime").attr("readonly", true);
                showDetail();
                $("#ddlAcceptType").change(
                    function () {
                        showDetail();
                    }
                );
            }
        );
 
            function showDetail() {
                var selAcceptType = $("#ddlAcceptType").val();
                $(".show1").show();
                $(".show2").show();
                switch (selAcceptType) {
                    case "104":
                        $(".show1").hide();
                        $(".show2").hide();
                        break;
                    case "105":
                        $(".show2").hide();
                        break;
                    case "106":
                        $(".show1").hide();
                        break;
                    case "107":
                        $(".show2").hide();
                        break;
                }
            }
    </script>
</head>
<body>
    <form id="form1" runat="server" class="form">
         <table class="tableStyle">
              <asp:Repeater ID="RepClientList" runat="server">
                <ItemTemplate>
            <tr><td class="ali03">订单编号:</td><td colspan="3"> <%#Eval("SellerOrderId")%></td></tr>
                     </ItemTemplate>
            </asp:Repeater>
            <tr><td class="ali03">送货状态:</td><td colspan="3"><asp:RadioButtonList ID="radDeliverType" runat="server" RepeatDirection="Horizontal"><asp:ListItem Value="-1" Text="未送货"></asp:ListItem><asp:ListItem Value="1" Text="已送货" Selected="True"></asp:ListItem></asp:RadioButtonList></td></tr>
             <tr><td class="ali03">货运单号:</td><td colspan="3"><asp:TextBox ID="txtTheAwb" runat="server"></asp:TextBox></td></tr>
            <tr><td class="ali03">送货人:</td><td colspan="3"><asp:TextBox ID="txtDeliverPerson" runat="server"></asp:TextBox></td></tr>
            <tr><td class="ali03">送货时间:</td><td colspan="3"><asp:TextBox ID="txtDeliverTime" runat="server" CssClass="date req"></asp:TextBox></td></tr>
            <tr><td class="ali03">收货方式:</td><td colspan="3"><asp:DropDownList ID="ddlAcceptType" runat="server" keepdefaultstyle='true' ></asp:DropDownList></td></tr>
            <tr class="show1"><td class="ali03">货运公司:</td><td><asp:TextBox ID="txtAppointCourierCompany" runat="server" Width="257px"></asp:TextBox></td><td class="ali03">联系人:</td><td><asp:TextBox ID="txtFetchContacts" runat="server"></asp:TextBox></td></tr>
            <tr class="show1"><td class="ali03">取货地址:</td><td><asp:TextBox ID="txtFetchAddress" runat="server" Width="257px"></asp:TextBox></td><td class="ali03">联系人电话:</td><td><asp:TextBox ID="txtFetchPhoneNum" runat="server"></asp:TextBox></td></tr>
            <tr class="show2"><td class="ali03">收货人:</td><td><asp:TextBox ID="txtAcceptPerson" runat="server" Width="257px"></asp:TextBox></td><td class="ali03">收货人电话:</td><td><asp:TextBox ID="txtAcceptPhoneNum" runat="server"></asp:TextBox></td></tr>
            <tr><td  class="ali03">备注:</td><td colspan="3"><asp:TextBox ID="txtRemark" runat="server" TextMode="MultiLine" Height="82px" Width="550px"></asp:TextBox></td></tr>
            <tr><td colspan="4" align="center"><asp:Button ID="btnSubmit" Text="提交" runat="server" OnClick="btnSubmit_Click" />&nbsp;&nbsp;<input type="button" id="btnClose" value="关闭" onclick="RefreshDIVOpener();"/></td></tr>
         </table>
         <%--<script type="text/javascript">
             ReceiptT('order', '<%=Request["id"] %>', 4, 60);
             $(
                function () {
                    $("#ReceiptTOld").find("td").eq(2).hide();
                    $("#ReceiptTOld").find("td").eq(3).hide();
                    $("#ReceiptTOld").find("td").eq(1).attr("colspan", "3");
                    $("#ReceiptTOld").find("td").eq(1).css("width", "185px");
                    $("#ReceiptTOld").nextAll().find("td").eq(1).css("width", "185px");
                }
             );
         </script>--%>
    </form>
</body>
</html>