<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DeliverPlanShifou.aspx.cs" Inherits="CY.WebForm.Pages.business.DeliverPlanShifou" %>
|
|
<!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 songhuo(shifouDelivery, ids, buyerid, orderId) {
|
var sss = $('#txtWorkTime').val();
|
if (sss == "") {
|
alertMsg('必须填写送货时间!');
|
return;
|
}
|
if (shifouDelivery == '1') {
|
OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + buyerid + '&orderId=' + orderId + '&shifouDelivery=' + shifouDelivery + '&DeliveryTime=' + sss);
|
} else {
|
OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + buyerid + '&orderId=' + orderId + '&shifouDelivery=' + shifouDelivery + '&DeliveryTime=' + sss);
|
}
|
|
top.Dialog.close();
|
}
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div class="box1">
|
<table class="tableStyle">
|
|
<tr>
|
|
<td class="ali03 w100px">送货时间:</td>
|
<td><input id="txtWorkTime" type="text" runat="server" class='date req' maxlength='10' /></td>
|
</tr>
|
|
<tr>
|
<td class="ali03 w100px">是否安排送货?</td>
|
<td ><input type="button" value="是" onclick="songhuo('1','<%=ids %>','<%=buyerid %>','<%=orderId %>');" /> <input type="button" value="否" onclick="songhuo('2','<%=ids %>','<%=buyerid %>','<%=orderId %>');" /></td>
|
</tr>
|
</table>
|
</div>
|
</form>
|
</body>
|
</html>
|