Commit 830d165d by 王勇飞

pp

parent 5a1764d3
......@@ -422,19 +422,19 @@ class AliHandler {
obj.skuCode = data.skuCode;
}
if (data.needsolution.status) { //交付单状态码
if (data.needsolution.status = "PAID") {//已支付
if (data.needsolution.status == "PAID") {//已支付
obj.deliverStatus = "received";
}
if (data.needsolution.status = "USER_UPLOADED") {//已上传
if (data.needsolution.status == "USER_UPLOADED") {//已上传
obj.deliverStatus = "collecting";
}
}
if (data.needsolution.customerRemark) { //状态原因
obj.statusReason = data.needsolution.customerRemark;
}
if (data.needsolution.status) { //成本
obj.costPrice = data.needsolution.status;
}
// if (data.needsolution.status) { //成本
// obj.costPrice = data.needsolution.status;
// }
if (data.needsolution.totalSum) { //价格
obj.sellingPrice = data.needsolution.totalSum;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment