出货详情 {{ statusOrder(orderInfo.status) }} 出货信息 收货方名称 {{orderInfo.consigneeName || ''}} 废纸品类 {{orderInfo.productName || ''}} 纸品包数 {{orderInfo.packageQuantity || ''}} 车牌号码 {{orderInfo.plateNumber || ''}} 司机姓名 {{orderInfo.driverName}} 出货单价(元/吨) {{orderInfo.unitPrice || '--'}} 预估金额 {{orderInfo.estimatedAmount || '--'}} 代卖订单详情 过磅信息 第一次过磅(皮重) 重量(公斤):{{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