出货详情
收货方名称
{{orderInfo.consigneeName || ''}}
废纸品类
{{orderInfo.productName || ''}}
纸品包数
{{orderInfo.packageQuantity || ''}}
车牌号码
{{orderInfo.plateNumber || ''}}
司机姓名
{{orderInfo.driverName}}
代卖订单详情
第一次过磅(皮重)
{{formate.minWeight(poundInfo.firstWeight, poundInfo.secondWeight)}}
第二次过磅(毛重)
重量(公斤):{{formate.maxWeight(poundInfo.firstWeight, poundInfo.secondWeight)}}
净重(公斤)
{{poundInfo.netWeight}}
过磅人
{{poundInfo.operaterName}}
纸品品类
{{form.categoryName || ''}}
结算单价(元/吨)
{{formate.formatePrice(form.settleUnitPrice)}}
净重(吨)
{{formate.formateWeight(form.netWeight)}}
结算重量(吨)
{{formate.formateWeight(form.settleWeight)}}
扣点(%)
{{ form.deductPercent || ''}}
其他费用(元)
{{ form.otherFee}}
结算金额(元)
{{ form.settlePrice}}
纸厂磅单
收货方名称
{{orderInfo.consigneeName || ''}}
废纸品类
{{orderInfo.productName || ''}}
纸品包数
{{orderInfo.packageQuantity || ''}}
车牌号码
{{orderInfo.plateNumber || ''}}
司机姓名
{{ orderInfo.driverName || ''}}
第一次过磅(皮重)
{{formate.minWeight(poundInfo.firstWeight, poundInfo.secondWeight)}}
第二次过磅(毛重)
重量(公斤):{{formate.maxWeight(poundInfo.firstWeight, poundInfo.secondWeight)}}
净重(公斤)
{{poundInfo.netWeight}}
过磅人
{{poundInfo.operaterName}}
function statusOrder(status) {
if(status == 0){
return '待审核'
} else if(status == 1){
return '待收款'
} else if(status == 2){
return '已完成'
} else if(status == 3){
return '已关闭'
}
}
module.exports = statusOrder