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.
46 lines
815 B
46 lines
815 B
const PalletSku = {
|
|
columnMapping: [
|
|
{
|
|
columnProp: "pn",
|
|
columnLabel: "SKU",
|
|
},
|
|
{
|
|
columnProp: "salesOrder",
|
|
columnLabel: "SO",
|
|
},
|
|
{
|
|
columnProp: "qty",
|
|
columnLabel: "数量",
|
|
},
|
|
{
|
|
columnProp: "rolls",
|
|
columnLabel: "Rolls",
|
|
},
|
|
{
|
|
columnProp: "grossWeight",
|
|
columnLabel: "毛重",
|
|
},
|
|
{
|
|
columnProp: "cmcInvoice",
|
|
columnLabel: "发票号",
|
|
},
|
|
{
|
|
columnProp: "item_no",
|
|
columnLabel: "序号",
|
|
},
|
|
{
|
|
columnProp: "boxQty",
|
|
columnLabel: "箱数",
|
|
},
|
|
],
|
|
mergeSetting: {
|
|
mergeSetting: {
|
|
refs: [],
|
|
columns: []
|
|
}
|
|
}
|
|
}
|
|
|
|
export default {
|
|
PalletSku,
|
|
};
|