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
<%@ 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 %>');" />&nbsp;  &nbsp; &nbsp; &nbsp;  <input type="button" value="否"    onclick="songhuo('2','<%=ids %>','<%=buyerid %>','<%=orderId %>');" /></td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>