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

  1. const PalletSku = {
  2. columnMapping: [
  3. {
  4. columnProp: "pn",
  5. columnLabel: "SKU",
  6. },
  7. {
  8. columnProp: "salesOrder",
  9. columnLabel: "SO",
  10. },
  11. {
  12. columnProp: "qty",
  13. columnLabel: "数量",
  14. },
  15. {
  16. columnProp: "rolls",
  17. columnLabel: "Rolls",
  18. },
  19. {
  20. columnProp: "grossWeight",
  21. columnLabel: "毛重",
  22. },
  23. {
  24. columnProp: "cmcInvoice",
  25. columnLabel: "发票号",
  26. },
  27. {
  28. columnProp: "item_no",
  29. columnLabel: "序号",
  30. },
  31. {
  32. columnProp: "boxQty",
  33. columnLabel: "箱数",
  34. },
  35. ],
  36. mergeSetting: {
  37. mergeSetting: {
  38. refs: [],
  39. columns: []
  40. }
  41. }
  42. }
  43. export default {
  44. PalletSku,
  45. };