You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

884 lines
32 KiB
Plaintext

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DD_OrderBlank.aspx.cs" Inherits="TradeManage.DingDan.DD_OrderBlank" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>订单信息</title>
<link rel="stylesheet" type="text/css" href="../themes/default/easyui.css" />
<link rel="stylesheet" type="text/css" href="../themes/icon.css" />
<link rel="stylesheet" type="text/css" href="../themes/New.css" />
<link rel="stylesheet" type="text/css" href="../themes/DataGrid.css" />
<script src="../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
<script src="../Scripts/jquery.min.js" type="text/javascript"></script>
<script src="../Scripts/jquery.easyui.min.js" type="text/javascript"></script>
<script src="../Scripts/DataGrid.js" type="text/javascript"></script>
<script src="../Scripts/DataPager.js" type="text/javascript"></script>
<script src="../Scripts/jquery.bgiframe.min.js" type="text/javascript"></script>
<script src="../Scripts/Global.js" type="text/javascript"></script>
<script src="../Scripts/jquery.url.js" type="text/javascript"></script>
<script src="../Scripts/WindowLoad.js" type="text/javascript"></script>
<script src="../Scripts/jquery.cookies.min.js" type="text/javascript"></script>
<script src="../Scripts/MaskedTextBox.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="../Scripts/fancybox/jquery.fancybox-1.3.4.css"
media="screen" />
<script type="text/javascript" src="../Scripts/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="../Scripts/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script src="../Scripts/DatePicker/WdatePicker.js" type="text/javascript"></script>
<script type="text/javascript" src="//www.17track.net/api/scripts/17track_api_p.js"></script>
<script type="text/javascript" src="//www.17track.net/api/scripts/api_result.js?v=140929fEA"></script>
<script type="text/javascript">
var datagrid1 = new nblf.ui.DataGrid("DataGrid1");
var WindowLoadModel = new WindowLoad();
$(document).ready(function () {
WindowLoadModel.ApplicationPath = "../";
WindowLoadModel.ControlID = "WindowLoad";
WindowLoadModel.Isbgiframe = true;
WindowLoadModel.Load();
ajaxInit(WindowLoadModel);
CreateDataGrid();
GetExpressType();
GetExpress();
GetBasePlat();
$("#select_plat").bind("change", function () {
GetShopList();
});
ReadData();
$("#btn_tj1").bind("click", function () {
window.location.href = "DD_DoneOrderListForTM.aspx";
});
$("#select_wl").bind("change", function () {
GetExpress();
});
$("#" + datagrid1.TableID + " a[CommandName='cmdLook']").live("click", function () {
var RowIndex = $(this).parentsUntil("tr").parent().attr("index");
var model = datagrid1.Get_Model(RowIndex);
// window.parent.addTab("订单修改", "DingDan/DD_OrderGoodsMateForTM.aspx?CF=1&Title=订单查询&OrderId=" + model.OrderId, true);
window.location.href = "DD_OrderBlankAdd.aspx?Id=" + model.Id;
});
$("#btn_Print").click(function () {
if ($("#select_post").val() == 0) {
alert("请按物流渠道筛选后再打印")
return;
}
Print();
});
$("#btn_sch,#Rad_1,#Rad_2,#Rad_3").bind("click", function () {
ReadData();
});
$("#select_fhstate,#select_post").bind("change", function () {
ReadData();
});
});
function GetExpressType() {
$("#select_wl").append("<option value='0'>全部</option>");
WindowLoadModel.Show();
$.ajax({
url: "../SysManage/SysManageService.asmx/GetExpressTypeList",
// data: Sys.Serialization.JavaScriptSerializer.serialize(param),
async: false,
success: function (data) {
WindowLoadModel.Hide();
if (data.d != null) {
$(data.d).each(function () {
$("#select_wl").append("<option value='" + this.LogisticsId + "'>" + this.LogisticsName + "</option>");
});
}
}
});
}
function GetExpress() {
$("#select_post").empty();
$("#select_post").append("<option value='0'>-全部-</option>");
//$("#div_postinfo").empty();
var param = new Object();
param.LogisticsId = $("#select_wl").val();
WindowLoadModel.Show();
$.ajax({
url: "../BaseData.asmx/GetExpressPostList",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
async: false,
success: function (data) {
WindowLoadModel.Hide();
if (data.d != null) {
$(data.d).each(function (i) {
$("#select_post").append("<option value='" + this.ExpressID + "'>" + this.Name + "</option>");
})
}
}
});
}
function Print() {
var list = datagrid1.GetSelectListModel();
if (list == null || list.length == 0) {
alert("请选择要打印的订单");
return;
}
var param = new Object();
var printlist = new Array();
var error = "";
var nowpostid = 0;
var muchwl = 0;
var orderids = "";
$(list).each(function () {
orderids += this.OrderId + ",";
});
window.parent.addTab("打印", "PrintTemplate/OrderPrint.aspx?Title=订单打印&orderid=" + orderids + "&printType=3", true);
}
function DonePrint() {
var list = datagrid1.GetSelectListModel();
if (list == null || list.length == 0) {
alert("请选择要标记打印的订单");
return;
}
var param = new Object();
var printlist = new Array();
$(list).each(function () {
var md = new Object();
md.Id = this.Id;
md.State = this.State;
Array.add(printlist, md);
});
param.list = printlist;
WindowLoadModel.Show();
$.ajax({
url: "DD_OrderService.asmx/SaveBlankOrderPrint",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
success: function (data) {
WindowLoadModel.Hide();
alert("标记成功");
ReadData();
}
});
}
function GetDepartMent() {
$("#select_dept").append("<option value='0'>全部</option>");
var param = new Object();
param.DeptType = "事业部";
WindowLoadModel.Show();
$.ajax({
url: "../SysManage/SysManageService.asmx/GetDepartList",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
async: false,
success: function (data) {
WindowLoadModel.Hide();
if (data.d != null) {
$(data.d).each(function () {
$("#select_dept").append("<option value='" + this.DeptId + "'>" + this.DeptName + "</option>");
});
}
}
});
}
function GetBasePlat() {
$("#select_plat").append("<option value='0'>全部</option>");
var param = new Object();
param.CompanyID = 0;
param.KeyName = "ptlx";
WindowLoadModel.Show();
$.ajax({
url: "../UserService.asmx/GetPlatBaseCode",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
success: function (data) {
WindowLoadModel.Hide();
if (data.d != null) {
$(data.d).each(function () {
$("#select_plat").append("<option value='" + this.SortNo + "'>" + this.Name + "</option>");
});
GetShopList();
}
}
});
}
function GetShopList() {
$("#select_shop").empty();
$("#select_shop").append("<option value='0'>全部</option>");
var param = new Object();
param.PlatType = $("#select_plat").val();
WindowLoadModel.Show();
$.ajax({
url: "../BaseData.asmx/GetShopList",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
success: function (data) {
WindowLoadModel.Hide();
if (data.d != null) {
$(data.d).each(function (i) {
$("#select_shop").append("<option value='" + this.ShopId + "'>" + this.ShopName + "</option>");
});
}
}
});
}
function AddTr() {
$("#" + datagrid1.TableID + " tr").each(function (i) {
if (i > 0) {
var shtmls = "<tr><td colspan='14'>";
var index = $(this).attr("index");
var md = datagrid1.Get_Model(index);
if (md.GoodsList != null) {
$(md.GoodsList).each(function () {
var imgurl = "";
if (this.productImgUrl != null && this.productImgUrl != "")
imgurl = "<a iurl='" + this.productImgUrl + "' style='cursor:pointer;'><img src='" + this.productImgUrl + "' alt='' width='30px' height='30px'/></a>";
if (this.DetailId == 0)
shtmls += "<table width='90%' class='trTable'><tr><td width='40%'>跟踪码RJ1234567重量400g<br/>" + imgurl + "<font >订单商品:</font><span>" + this.GoodsName + " &nbsp; &nbsp;" + this.GoodsDesc + " &nbsp; &nbsp;" + this.GoodsSKU + "</span></td><td width='60%'><font >数量:</font><span>" + this.GoodsNum + "</span> &nbsp; &nbsp;<font ></font>未分配货物</td></tr></table>";
else
shtmls += "<table width='90%' class='trTable'><tr><td width='40%'>跟踪码RJ1234567重量400g<br/>" + imgurl + "<font >订单商品:</font><a style='cursor: pointer; text-decoration: underline; color: blue;'>" + this.GoodsCode + "--" + this.GoodsOldCode + this.GoodsName + " &nbsp; &nbsp;<span>" + this.GoodsDesc + " &nbsp; &nbsp;" + this.GoodsSKU + "</span></td><td width='60%'><font >数:</font>" + this.GoodsNum + " &nbsp; &nbsp;<font >库存量:</font>" + this.CKGoodsNum + " &nbsp; &nbsp;<font >采购途中:</font>" + this.GoodsInNum + " &nbsp; &nbsp;<font >剩余参考:</font>" + this.GoodsLeftNum + " &nbsp; &nbsp;<font >库存分配数量:</font>" + this.LockNum + " &nbsp; &nbsp;<font >发货数量:</font>" + this.OutNum + "</td></tr></table>";
});
}
shtmls += "</td><tr>";
$(this).after(shtmls);
// $(".fancybox").fancybox();
}
});
}
function fopen() {
$.fancybox({
'width': '40%',
'height': '40%',
'autoScale': false,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'href': '#test',
'onComplete': function () {
}
});
}
function fopen2() {
$.fancybox({
'width': '40%',
'height': '40%',
'autoScale': false,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'href': '#test2',
'onComplete': function () {
}
});
}
//#endregion
//#region 初始化DataGrid
function CreateDataGrid() {
var col = new nblf.ui.DataGridColumn();
col.HeaderText = "订单号";
col.CellTemplate = "<a CommandName='cmdLook' class='linka'>{Bind PlatOrderCode}</a>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "店铺";
col.CellTemplate = "<a>{Bind ShopName}</a>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "国家";
col.CellTemplate = "<span>{Bind RevCountry}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "收件人";
col.CellTemplate = "<span>{Bind RevName}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "保存日期";
col.CellTemplate = "<span>{Bind InDate,yyyy-MM-dd HH:mm}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "打印日期";
col.CellTemplate = "<span>{Bind PrintDate,yyyy-MM-dd HH:mm}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "发货日期";
col.CellTemplate = "<span>{Bind PostDate,yyyy-MM-dd HH:mm}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "物流渠道";
col.CellTemplate = "<span>{Bind PostInfo}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "跟踪码";
col.CellTemplate = "<span>{Bind TrackCode}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "状态";
col.CellTemplate = "<span>{Bind StateName}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "操作";
col.Width = "100px";
col.CellTemplate = "<input onclick='DelCol(this)' class='btnClass dgbtnDel' type='button' value='删除'></input> ";
Array.add(datagrid1.Columns, col);
datagrid1.SetPageSize(50);
datagrid1.SetPageIndex(1);
datagrid1.IsFixHeader = false;
datagrid1.ShowIndexColumn = false;
datagrid1.AllowPaging = true;
datagrid1.Width = "100%";
datagrid1.SelectMode = nblf.ui.SelectMode.CheckBox;
datagrid1.Init();
datagrid1.add_PageIndexChanged(function () { ReadData(); });
}
//#endregion
//#region 读取数据
function ReadData() {
var param = new Object();
if ($("#select_plat").find("option").length > 0)
param.PlatType = $("#select_plat").val();
else
param.PlatType = 0;
if ($("#select_shop").find("option").length > 0)
param.ShopId = $("#select_shop").val();
else
param.ShopId = 0;
param.PostId = $("#select_post").val();
param.DateType = $("#select_rqlx").val();
param.SDate = null;
if ($("#txt_SDate").val() != "")
param.SDate = $("#txt_SDate").val();
param.EDate = null;
if ($("#txt_EDate").val() != "")
param.EDate = $("#txt_EDate").val();
param.TjType = $("#select_tj").val();
param.Name = $("#txt_Name").val();
param.PostState = $("#select_fhstate").val();
param.PrintState = -1;
if ($("#Rad_2").is(':checked') == true)
param.PrintState = 1;
else if ($("#Rad_3").is(':checked') == true)
param.PrintState = 0;
param.PageSize = datagrid1.Get_PageSize();
param.PageIndex = datagrid1.Get_PageIndex();
WindowLoadModel.Show();
$.ajax({
url: "DD_OrderService.asmx/GetListOrderBlank",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
success: function (data) {
WindowLoadModel.Hide();
datagrid1.Set_RowCount(data.d.RowCount);
datagrid1.DataBind(data.d.DataSource);
}
});
}
function GetExcelData() {
var param = new Object();
param.IsDetail = 0;
if ($("#chk_pp").is(':checked') == true)
param.IsDetail = 1;
if ($("#select_plat").find("option").length > 0)
param.PlatType = $("#select_plat").val();
else
param.PlatType = 0;
if ($("#select_shop").find("option").length > 0)
param.ShopId = $("#select_shop").val();
else
param.ShopId = 0;
if ($("#txt_days").val() != "")
param.OutDays = $("#txt_days").val();
else
param.OutDays = 0;
param.DateType = $("#select_rqlx").val();
param.SDate = null;
if ($("#txt_SDate").val() != "")
param.SDate = $("#txt_SDate").val();
param.EDate = null;
if ($("#txt_EDate").val() != "")
param.EDate = $("#txt_EDate").val();
param.TjType = $("#select_tj").val();
param.Name = $("#txt_Name").val();
param.MateState = $("#select_ppstate").val();
param.State = $("#select_fhstate").val();
param.PrintState =-1;
if ($("#Rad_2").is(':checked') == true)
param.PrintState = 1;
else if ($("#Rad_3").is(':checked') == true)
param.PrintState = 0;
param.IsSku = 0;
param.MoneyState = $("#select_moneystate").val();
if ($("#chk_sku").is(':checked') == true)
param.IsSku = 1;
param.IsError = 0;
if ($("#chk_yc").is(':checked') == true)
param.IsError = 1;
param.HBOrder = 0;
if ($("#chk_hb").is(':checked') == true)
param.HBOrder = 1;
var fname = "订单导出.xls";
WindowLoadModel.Show();
$.ajax({
url: "DD_OrderService.asmx/ExcelOrderData",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
async: false,
success: function (data) {
WindowLoadModel.Hide();
params = { FilePath: data.d, FileName: fname };
window.location = "../GlobalAshx/DownFile.ashx?" + jQuery.param(params);
}
});
}
//#endregion
//#region 删除
function DelCol(obj) {
if (window.confirm('确定要删除该空包裹吗?') == false) return;
var rowindex = $(obj).parent().parent().attr("index");
var param = new Object();
var model = datagrid1.Get_Model(rowindex);
if (model.State == 3) {
alert("该空包裹已经发货,无法删除");
return;
}
param.Id = model.Id;
$.ajax({
url: "DD_OrderService.asmx/DeleteBlankOrder",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
success: function (data) {
alert("删除成功");
}
});
datagrid1.Del_Row(rowindex);
}
function BackCancelOrder() {
var SelectListModels = datagrid1.GetSelectListModel();
if (SelectListModels == null || $(SelectListModels).length == 0) {
alert("请选择要回复的订单");
return;
}
var list = new Array();
var error = "";
$(SelectListModels).each(function () {
if (this.State != 3) {
error += this.PlatOrderCode + "订单状态不是取消状态,不能恢复;";
}
else {
var md = new Object();
md.OrderId = this.OrderId;
Array.add(list, md);
}
});
if (error != "") {
alert(error);
return;
}
if (window.confirm('确定要恢复订单吗?') == false) return;
var param = new Object();
param.list = list;
$.ajax({
url: "DD_OrderService.asmx/CancelBackOrderForTM",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
success: function (data) {
alert("恢复成功");
ReadData();
}
});
}
function CancelOrder() {
var SelectListModels = datagrid1.GetSelectListModel();
if (SelectListModels == null || $(SelectListModels).length == 0) {
alert("请选择要取消的订单");
return;
}
var list = new Array();
var error = "";
$(SelectListModels).each(function () {
if (this.State != 1) {
error += this.PlatOrderCode + "订单状态已经发货或者已经取消,不能再取消了;";
}
else {
var md = new Object();
md.OrderId = this.OrderId;
Array.add(list, md);
}
});
if (error != "") {
alert(error);
return;
}
if (window.confirm('确定要取消订单吗?') == false) return;
var param = new Object();
param.list = list;
$.ajax({
url: "DD_OrderService.asmx/DeleteCancelOrderForTM",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
success: function (data) {
alert("取消成功");
ReadData();
}
});
}
function UpdatePostState() {
if (window.confirm('确定要修改成允许发货吗?') == false) return;
var selectlist = datagrid1.GetSelectListModel();
if (selectlist == null || selectlist.length == 0) {
alert("请选择要修改发货的订单");
return;
}
var param = new Object();
param.list = selectlist;
$.ajax({
url: "DD_OrderService.asmx/UpdatePostState",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
success: function (data) {
alert("修改完成");
ReadData();
}
});
}
function doTrack() {
var num = document.getElementById('yq_num').value;
if (num === '') {
alert('请输入单号');
return;
}
yqtrack_v4({
container: document.getElementById('track_container'),
width: 550,
height: 400,
num: num,
et: document.getElementById('yq_et').value,
lng: 'zh-CN'
});
}
//#endregion
</script>
</head>
<body class="headbody">
<div class="title_ico">
空包裹信息
</div>
<div style="display: none">
<div id="test" title="货物图片" style="width: 200px; height: 150px;">
<table width="95%" class="tableAll" border="1" ellspacing="0" cellpadding="2">
<tr>
<td align="center">
<img src="../attached/images/1.jpg" width="150px" height="130px" id="img_1" />
</td>
</tr>
</table>
</div>
<div id="test2" title="物流" style="width: 650px; height: 600px;">
<table width="95%" class="tableAll" border="1" ellspacing="0" cellpadding="2">
<tr>
<td class="f1" width="15%">
<select id="yq_et" class="selectClass">
<!--#<!--代码脚本示例中的选项-->
<option value="0">全球邮政</option>
<option value="100002">UPS</option>
<option value="100001">DHL</option>
<option value="100003">Fedex</option>
<option value="100004">TNT</option>
<option value="100007">DPD</option>
<option value="100010">DPD(UK)</option>
<option value="100011">One World</option>
<option value="100005">GLS</option>
<option value="100012">顺丰速运</option>
<option value="100008">EShipper</option>
<option value="100009">Toll</option>
<option value="100006">Aramex</option>
<option value="190002">飞特物流</option>
<option value="190008">云途物流</option>
<option value="190011">百千诚物流</option>
<option value="190007">俄速递</option>
<option value="190003">华翰物流</option>
<option value="190012">燕文物流</option>
<option value="190018">捷买送</option>
<option value="190014">俄易达</option>
<option value="190015">俄速通</option>
<option value="190017">俄通收</option>
<option value="190016">俄顺达</option>
</select></td>
<td>
<input name="" class="editTextbox" maxlength="38" type="text" id="yq_num" value="" />
<input type="button" class="btnClass btnClassFind" value="查询" onclick="doTrack()" /></td>
</tr>
<tr>
<td colspan="2">
<div id="track_container" style="overflow:auto;height:440px;width:630px"></div>
</td>
</tr>
</table>
</div>
</div>
<table id="tb1" class="tableAll" style="width: 100%;">
<tr>
<td colspan="7">
<input id="btn_tj1" class="btnUnSelected" type="button" value="普通包裹" /> &nbsp;<input id="btn_tj2" class="btnSelected" type="button" value="空包裹" /></td>
</tr>
<tr>
<td class="f1" width="10%">打印状态:</td>
<td colspan="6">
<input id="Rad_1" name="pp" type="radio" /><label for="Rad_1">全部</label><input id="Rad_2" name="pp" type="radio" /><label for="Rad_2">已打印</label><input id="Rad_3" checked="checked" name="pp" type="radio" /><label for="Rad_3">未打印</label></td>
</tr>
<tr>
<td class="f1" width="10%">平台/分组:</td>
<td width="18%">
<select id="select_plat" class="selectClass" style="width: 70px" name="D6">
</select><select id="select_shop" class="selectClass" style="width: 80px" name="D7">
</select></td>
<td class="f1" width="12%">
<select id="select_tj" class="selectClass" style="width: 90px" name="D1">
<option value="1">订单号:</option>
<option value="2">收件人姓名:</option>
<option value="3">收件人电话:</option>
<option value="4">收件人国家:</option>
<option value="5">收件人邮编:</option>
<option value="6">收件人地址:</option>
<option value="10">物流跟踪码:</option>
</select></td>
<td width="15%">
<input id="txt_Name" class="editTextbox" style="width: 120px;" type="text" /></td>
<td class="f1" style="width: 10%;">
运输方式:</td>
<td width="22%">
<select id="select_wl" class="selectClass" name="D8" style="width:120px">
</select>
<select id="select_post" class="selectClass" name="D2" style="width:120px">
</select></td>
<td>
<input id="btn_sch" class="btnClass btnClassFind" type="button" value="查询" /></td>
</tr>
<tr>
<td class="f1" width="10%">发货状态:</td>
<td width="18%">
<select id="select_fhstate" class="selectClass" style="width: 120px" name="D3">
<option value="-1">全部</option>
<option value="0">未发货</option>
<option value="1">已发货</option>
</select></td>
<td style="width: 12%;" class="f1" align="center">
<select id="select_rqlx" class="selectClass" style="width: 90px" name="D4">
<option value="1">创建日期:</option>
<option value="2">打印日期:</option>
<option value="3">发货日期:</option>
</select></td>
<td colspan="3">
<input id="txt_SDate" class="editTextbox" onfocus="WdatePicker()" style="width: 80px;" type="text" />
-<input id="txt_EDate" class="editTextbox" onfocus="WdatePicker()" style="width: 80px;" type="text" /></td>
<td>
</td>
</tr>
<tr>
<td colspan="7">
<input id="btn_Print" class="btnClass btnClassFind" type="button" value="打印面单" />&nbsp;<input id="btn_DonePrint" class="btnClass btnClassEdit" type="button" value="标记为已打印" onclick="DonePrint();" />
&nbsp;<select id="select_postaddr" class="selectClass" name="D6" style="width:300px;display:none">
</select>
<input id="btn_allpp0" class="btnClass btnClassEdit" onclick="SelectAddr();" style="display:none" type="button" value="选择发货地址" /></td>
</tr>
<tr>
<td valign="top" colspan="7">
<div id="DataGrid1" class="DataGridStyle"></div>
</td>
</tr>
</table>
</body>
</html>