index.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import $ from 'jquery';
  2. import HelloWorld from './components/HelloWorld.vue';
  3. import WmsSetting from './components/WmsSetting.vue';
  4. import GradeDefinition from './components/GradeDefinition.vue';
  5. import GeneratePosition from './components/GeneratePosition.vue';
  6. import InventoryPrint from './components/InventoryPrint.vue';
  7. import InventoryPrintScan from './components/InventoryPrintScan.vue';
  8. import StockOutPrepareLine from './pick/StockOutPrepareLine.vue';
  9. import PickingCar from './pick/PickingCar.vue';
  10. import StockOutPrepareApproved from './pick/StockOutPrepareApproved.vue';
  11. import StockOutPrepateTemplate from './pick/StockOutPrepateTemplate.vue';
  12. import StockOutPrepateTemplateRecording from './pick/StockOutPrepateTemplateRecording.vue';
  13. import StockOutPrepareTemplateApproved from './pick/StockOutPrepareTemplateApproved.vue';
  14. import StockOutPrepareLineAddProject from './pick/StockOutPrepareLineAddProject.vue';
  15. import StockOutPrepareLineProjectReceivingAddress from './pick/StockOutPrepareLineProjectReceivingAddress.vue';
  16. import StockOutPrepareLineProjectShippingAddress from './pick/StockOutPrepareLineProjectShippingAddress.vue';
  17. import PurchaseOrderLinePrint from './print/PurchaseOrderLinePrint.vue';
  18. import PositionPrint from './print/PositionPrint.vue';
  19. import PurchaseOrderPrint from './print/PurchaseOrderPrint.vue';
  20. import QueryPurchaseOrderLine from './print/QueryPurchaseOrderLine.vue';
  21. import PackInventoryInstance from './print/PackInventoryInstance.vue';
  22. import NeedPrint from './print/NeedPrint.vue';
  23. import Printed from './print/PrintedPurchaseOrder.vue';
  24. import PrintInventoryInstance from './print/PrintInventoryInstance.vue';
  25. import CheckProfit from './inout/CheckProfit.vue';
  26. import CheckLoss from './inout/CheckLoss.vue';
  27. import StockInLineInstance from './inout/StockInLineInstance.vue';
  28. import StockOutLineInstance from './inout/StockOutLineInstance.vue';
  29. import PurchaseOrderLineTraceEdit from './inout/PurchaseOrderLineTraceEdit.vue';
  30. import CurrentStock from './stock/CurrentStock.vue';
  31. import StockLedger from './stock/StockLedger.vue';
  32. import GenerateToolRequest from './stock/GenerateToolRequest.vue';
  33. import AutoGenerateInventorySafeStock from './stock/AutoGenerateInventorySafeStock.vue';
  34. import AutoGenerateInventoryClassSafeStock from './stock/AutoGenerateInventoryClassSafeStock.vue';
  35. import ProjectItemAdjust from './customer/ProjectItemAdjust.vue';
  36. import InvoiceGenerate from './customer/InvoiceGenerate.vue';
  37. import BalanceInventory from './customer/BalanceInventory.vue';
  38. import VouchCheck from './customer/VouchCheck.vue';
  39. import ExpressInquiry from './customer/ExpressInquiry.vue';
  40. import RepertoryCheck from './customer/RepertoryCheck.vue';
  41. import InventorySearchDetail from './customer/InventorySearchDetail.vue';
  42. import GenerateDocumentTool from './components/GenerateDocumentTool.vue';
  43. import InventoryCheckLoss from './customer/InventoryCheckLoss.vue';
  44. import AdjustPositions from './stock/AdjustPositions.vue';
  45. import CurrentStockProjectItemManger from './stock/CurrentStockProjectItemManger.vue';
  46. import UploadTrainingVideo from './pad/UploadTrainingVideo.vue';
  47. import SynchronousMaintenanceForm from './pad/SynchronousMaintenanceForm.vue';
  48. import QueryMaintenancePlan from './pad/QueryMaintenancePlan.vue';
  49. import LightSetting from './light/LightSetting.vue';
  50. import LightStockInOrOut from './light/LightStockInOrOut.vue';
  51. import ShelfBoard from './shelf/ShelfBoard.vue';
  52. export {
  53. HelloWorld,
  54. WmsSetting,
  55. GradeDefinition,
  56. GeneratePosition,
  57. InventoryPrint,
  58. InventoryPrintScan,
  59. StockOutPrepareLine,
  60. PickingCar,
  61. StockOutPrepareApproved,
  62. StockOutPrepateTemplate,
  63. StockOutPrepateTemplateRecording,
  64. StockOutPrepareTemplateApproved,
  65. StockOutPrepareLineAddProject,
  66. StockOutPrepareLineProjectReceivingAddress,
  67. StockOutPrepareLineProjectShippingAddress,
  68. PurchaseOrderLinePrint,
  69. PositionPrint,
  70. PurchaseOrderPrint,
  71. QueryPurchaseOrderLine,
  72. PackInventoryInstance,
  73. NeedPrint,
  74. Printed,
  75. PrintInventoryInstance,
  76. CheckProfit,
  77. CheckLoss,
  78. StockInLineInstance,
  79. StockOutLineInstance,
  80. PurchaseOrderLineTraceEdit,
  81. CurrentStock,
  82. StockLedger,
  83. GenerateToolRequest,
  84. AutoGenerateInventorySafeStock,
  85. AutoGenerateInventoryClassSafeStock,
  86. ProjectItemAdjust,
  87. InvoiceGenerate,
  88. BalanceInventory,
  89. VouchCheck,
  90. ExpressInquiry,
  91. RepertoryCheck,
  92. InventorySearchDetail,
  93. GenerateDocumentTool,
  94. InventoryCheckLoss,
  95. AdjustPositions,
  96. CurrentStockProjectItemManger,
  97. UploadTrainingVideo,
  98. SynchronousMaintenanceForm,
  99. QueryMaintenancePlan,
  100. LightSetting,
  101. LightStockInOrOut,
  102. ShelfBoard,
  103. };