You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.5 KiB
82 lines
1.5 KiB
const PalletSku = {
|
|
columnMapping: [
|
|
{
|
|
columnProp: "seqNo",
|
|
columnLabel: "序号",
|
|
},
|
|
{
|
|
columnProp: "cmcInvoice",
|
|
columnLabel: "发票号",
|
|
},
|
|
{
|
|
columnProp: "seqNo",
|
|
columnLabel: "托盘号/箱号",
|
|
},
|
|
{
|
|
columnProp: "customerPO",
|
|
columnLabel: "PO",
|
|
},
|
|
{
|
|
columnProp: "pn",
|
|
columnLabel: "PN",
|
|
},
|
|
{
|
|
columnProp: "qty",
|
|
columnLabel: "数量",
|
|
},
|
|
{
|
|
columnProp: "boxQty",
|
|
columnLabel: "箱数",
|
|
},
|
|
{
|
|
columnProp: "rolls",
|
|
columnLabel: "Rolls",
|
|
},
|
|
{
|
|
columnProp: "pallet_qty",
|
|
columnLabel: "托数",
|
|
},
|
|
{
|
|
columnProp: "length",
|
|
columnLabel: "长(M)",
|
|
},
|
|
{
|
|
columnProp: "width",
|
|
columnLabel: "宽(M)",
|
|
},
|
|
{
|
|
columnProp: "height",
|
|
columnLabel: "高(M)",
|
|
},
|
|
{
|
|
columnProp: "volume",
|
|
columnLabel: "体积",
|
|
},
|
|
{
|
|
columnProp: "grossWeight",
|
|
columnLabel: "毛重",
|
|
},
|
|
{
|
|
columnProp: "netWeight",
|
|
columnLabel: "净重",
|
|
},
|
|
{
|
|
columnProp: "shippingMode",
|
|
columnLabel: "运输方式",
|
|
},
|
|
{
|
|
columnProp: "destination",
|
|
columnLabel: "客户目的地",
|
|
},
|
|
],
|
|
mergeSetting: {
|
|
mergeSetting: {
|
|
refs: [],
|
|
columns: []
|
|
}
|
|
}
|
|
}
|
|
|
|
export default {
|
|
PalletSku,
|
|
};
|