<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DeliverunusualList.aspx.cs" Inherits="CY.WebForm.Pages.business.DeliverunusualList" %>
|
|
<!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 src="../../js/business/Order.js" type="text/javascript"></script>--%>
|
<script type="text/javascript">
|
|
|
//工作考评
|
function ViewYichangchuli(Keyid) {
|
//if (Keyid == '00000000-0000-0000-0000-000000000000') {
|
// alert("请先安排送货!");
|
// return;
|
//}
|
|
top.Dialog.open({ URL: "/Pages/business/DeliverPlanYichangchuli.aspx?Keyid=" + Keyid , Title: "送货异常处理", Width: 800, Height: 300 });
|
}
|
|
//工作考评
|
function ViewXingzhengzhuize(Keyid) {
|
//if (Keyid == '00000000-0000-0000-0000-000000000000') {
|
// alert("请先安排送货!");
|
// return;
|
//}
|
|
top.Dialog.open({ URL: "/Pages/business/DeliverPlanXingzhengzhuize.aspx?Keyid=" + Keyid , Title: "送货行政追责", Width: 800, Height: 300 });
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
打印送货单
|
*/
|
function ToPrintdelev() {
|
var DeliverTimestart = $("#txtDeliverTimestart").val();
|
var DeliverTimeend = $("#txtDeliverTimeend").val();
|
|
// OpenWindowByUrl();
|
window.open('/Pages/business/DeliverunusualPrint.aspx?DeliverTimestart=' + DeliverTimestart + '&DeliverTimeend=' + DeliverTimeend , '', '');
|
}
|
</script>
|
<style type="text/css">
|
.tableStyleXS th { padding: 1px 0 1px 3px; background-image:none; border-bottom:1px solid #CCC; }
|
.tableStyleXS td { padding: 1px 0 1px 3px; }
|
.TableNewStyle select { width: 80px; }
|
.td_hide span { text-decoration: default; display: none; text-align: center; }
|
span.hand_no { cursor: default; display: block; font-size: 12px; }
|
span.hand_no:hover { text-decoration: none; }
|
span.hand_yes { cursor: pointer; display: block; font-size: 12px; }
|
.td_hide { cursor: pointer; }
|
</style>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent" style="width: auto;">
|
<div class="box1">
|
<table class="TableNewStyle" style="width: 100%;">
|
|
<tr>
|
<td class="ali03">
|
送货时间:
|
</td>
|
<td >
|
<input id="txtDeliverTimestart" type="text" runat="server" class='date w80px' maxlength='10' />-<input id="txtDeliverTimeend" type="text" runat="server" class='date w80px' maxlength='10' />
|
</td>
|
|
<td >
|
<asp:button id="btn_Search" text="查询" runat="server" padding="0px" OnClick="btn_Search_Click" /> <input type="button" value='重置' onclick='document.body.innerHTML="";window.location=window.location;' />
|
<input type="button" value='打印' onclick='ToPrintdelev();' />
|
</td>
|
</tr>
|
|
|
</table>
|
</div>
|
|
|
<div clear="fl">
|
<table class="tableStyle tableStyleXS" useclick="false" usecheckbox="true" sortmode="false">
|
<thead>
|
<tr>
|
<th style="text-align: center;" width="70">
|
送货单号
|
</th>
|
<th style="text-align: center;" width="70">
|
送货时间
|
</th>
|
<th width="60">
|
驾驶员
|
</th>
|
<th width="60">
|
车辆
|
</th>
|
|
<th width="70">
|
业务经理
|
</th>
|
<th width="100">
|
客户单位
|
</th>
|
<th width="60">
|
货单数量
|
</th>
|
|
|
|
|
<th width="100">
|
异常原因
|
</th>
|
<th width="100">
|
异常处理
|
</th>
|
<th width="100">
|
行政追责
|
</th>
|
|
</tr>
|
</thead>
|
<tbody>
|
<asp:repeater id="RepClientList" runat="server">
|
<itemtemplate>
|
<tr>
|
|
|
|
<td>
|
<%#Eval("SellerOrderId")%>
|
</td>
|
|
<td>
|
<%#Eval("DeliveredTime", "{0:yyyy-MM-dd}")%>
|
</td>
|
<td>
|
<%#Eval("DriverName")%>
|
</td>
|
<td>
|
<%#Eval("CarName")%>
|
</td>
|
|
|
<td>
|
<%#Eval("BusinessManager")%>
|
</td>
|
<td>
|
<%#Eval("BuyerName")%>
|
</td>
|
|
|
<td>
|
<%#Eval("shuliang")%>
|
</td>
|
<td>
|
<%#Eval("wentifankui")%>
|
</td>
|
|
<td>
|
<a href='javascript:void(0)' title='点击修改异常处理' class='a_under' onclick='ViewYichangchuli("<%#Eval("Keyid")%>")'> <%#Eval("Yichangchuli").ToString()==""?"修改异常处理":Eval("Yichangchuli")%> </a>
|
</td>
|
<td>
|
<a href='javascript:void(0)' title='点击修改行政追责' class='a_under' onclick='ViewXingzhengzhuize("<%#Eval("Keyid")%>")' ><%#Eval("Xingzhengzhuize").ToString()==""?"修改行政追责":Eval("Xingzhengzhuize")%> </a>
|
</td>
|
|
|
</tr>
|
</itemtemplate>
|
</asp:repeater>
|
</tbody>
|
</table>
|
<uc:ucpager id="UCPager1" runat="server" />
|
</div>
|
</div>
|
</form>
|
</body>
|
</html>
|