Authored by caoyan

订单管理

... ... @@ -349,14 +349,21 @@ function getAlreadyJudgedList(){
columns: [[{
title: "平台快递单号",
field: "sellerWaybillCode",
field: "platformWaybillCode",
width: 30,
align: "center"
}, {
title: "收货仓库",
field: "depotNo",
width: 20,
align: "center"
align: "center",
formatter: function (value, rowData, rowIndex) {
if (value == 0) {
return "北京";
}else if(value == 1){
return "南京";
}
}
}, {
title: "商品件数",
field: "productNum",
... ... @@ -364,7 +371,7 @@ function getAlreadyJudgedList(){
align: "center"
}, {
title: "SKU-P",
field: "skuStr",
field: "skup",
width: 20,
align: "center"
}, {
... ... @@ -457,9 +464,9 @@ function addRejectPage(id) {
}
function deliverGoods(id){
var expressCompany = $("#expressCompany").myCombobox("getValue");
var expressCompanyId = $("#expressCompany").myCombobox("getValue");
var waybillCode = $("#waybillCode").textbox("getValue");
if(expressCompany==''){
if(expressCompanyId==''){
alert("请选择快递公司!");
return;
}
... ... @@ -470,7 +477,7 @@ function deliverGoods(id){
$.post(contextPath + "/buyerOrder/updateOrderStatus", {
id : id,
status : 4,
expressCompay : expressCompany,
expressCompanyId : expressCompanyId,
waybillCode : waybillCode
}, function(data) {
if (data.code == 200) {
... ...