<%@ 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">
|
<tr><td class="ali03">订单编号:</td><td colspan="3"><%=Request["OrderShowId"] %></td></tr>
|
<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" /> <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>
|