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

7 months ago
  1. const PalletSku = {
  2. columnMapping: [
  3. {
  4. columnProp: "seqNo",
  5. columnLabel: "序号",
  6. },
  7. {
  8. columnProp: "cmcInvoice",
  9. columnLabel: "发票号",
  10. },
  11. {
  12. columnProp: "seqNo",
  13. columnLabel: "托盘号/箱号",
  14. },
  15. {
  16. columnProp: "customerPO",
  17. columnLabel: "PO",
  18. },
  19. {
  20. columnProp: "pn",
  21. columnLabel: "PN",
  22. },
  23. {
  24. columnProp: "qty",
  25. columnLabel: "数量",
  26. },
  27. {
  28. columnProp: "boxQty",
  29. columnLabel: "箱数",
  30. },
  31. {
  32. columnProp: "rolls",
  33. columnLabel: "Rolls",
  34. },
  35. {
  36. columnProp: "pallet_qty",
  37. columnLabel: "托数",
  38. },
  39. {
  40. columnProp: "length",
  41. columnLabel: "长(M)",
  42. },
  43. {
  44. columnProp: "width",
  45. columnLabel: "宽(M)",
  46. },
  47. {
  48. columnProp: "height",
  49. columnLabel: "高(M)",
  50. },
  51. {
  52. columnProp: "volume",
  53. columnLabel: "体积",
  54. },
  55. {
  56. columnProp: "grossWeight",
  57. columnLabel: "毛重",
  58. },
  59. {
  60. columnProp: "netWeight",
  61. columnLabel: "净重",
  62. },
  63. {
  64. columnProp: "shippingMode",
  65. columnLabel: "运输方式",
  66. },
  67. {
  68. columnProp: "destination",
  69. columnLabel: "客户目的地",
  70. },
  71. ],
  72. mergeSetting: {
  73. mergeSetting: {
  74. refs: [],
  75. columns: []
  76. }
  77. }
  78. }
  79. export default {
  80. PalletSku,
  81. };