于继渤 1 rok temu
rodzic
commit
6924fccdf3
2 zmienionych plików z 26 dodań i 1 usunięć
  1. 24 0
      api/pages/ivt/inboundItem.js
  2. 2 1
      app.js

+ 24 - 0
api/pages/ivt/inboundItem.js

@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright(c) 2024 dongke All rights reserved. / Confidential
+ * 类的信息:
+ *		1.程序名称:
+ *		2.功能描述:入库
+ * 编辑履历:
+ *		作者				日期					版本				修改内容
+ *		于继渤		  	     2024-1-19       			1.00		       	新建
+ *******************************************************************************/
+module.exports = {
+  inboundItemService: {
+      // 前缀
+      prefix: 'mdm-server/ivt/inboundItem/', 
+      costCheckOk:'cost_check_ok',
+
+  },
+
+  routeUrl: {
+    inbound: { 
+  
+    
+    }
+  } 
+};

+ 2 - 1
app.js

@@ -73,10 +73,11 @@ const inventoryAdjustment = require('./api/pages/ivt/inventoryAdjustment.js');
 const saleReport = require('./api/pages/mst/saleReport.js');
 const saleReport = require('./api/pages/mst/saleReport.js');
 const printLayout = require('./api/pages/mst/printLayout.js');
 const printLayout = require('./api/pages/mst/printLayout.js');
 const exportPage = require('./api/pages/common/export.js');
 const exportPage = require('./api/pages/common/export.js');
+const inboundItem = require('./api/pages/ivt/inboundItem.js');
 
 
 // api服务路由文件
 // api服务路由文件
 var apiList = [common, oauth,setting, company, wechatPay,user, staff, staffRight, staffPurview, settingValue, customer, role, roleFun, org, roleSensitive, goodsBrand, goodsCategory, goodsSeries, unit, supplier, warehouse, saleChannel, goodsSku, basicData,customerMst,purchase,account,payment,
 var apiList = [common, oauth,setting, company, wechatPay,user, staff, staffRight, staffPurview, settingValue, customer, role, roleFun, org, roleSensitive, goodsBrand, goodsCategory, goodsSeries, unit, supplier, warehouse, saleChannel, goodsSku, basicData,customerMst,purchase,account,payment,
-  receiptPayment,inbound,inboundOther,inboundProcessing,inboundPurchaseReturn,outbound,outboundOther,outboundProcessing,outboundSaleReturn,inventory,moneyAccount,intoReturn,intoReturnItem,cusFollow,order,transfer,saleOutBound,inboundReturn,cusReceiptPayment,menuFrequency,userMenuFrequency,comMenu,saleOutBoundReturn,activity,check,freeze,otherReceivable,otherPayable,inventoryAdjustment,report,saleReport,printLayout,exportPage]
+  receiptPayment,inbound,inboundOther,inboundProcessing,inboundPurchaseReturn,outbound,outboundOther,outboundProcessing,outboundSaleReturn,inventory,moneyAccount,intoReturn,intoReturnItem,cusFollow,order,transfer,saleOutBound,inboundReturn,cusReceiptPayment,menuFrequency,userMenuFrequency,comMenu,saleOutBoundReturn,activity,check,freeze,otherReceivable,otherPayable,inventoryAdjustment,report,saleReport,printLayout,exportPage,inboundItem]
 
 
 const util = require('./utils/util.js')
 const util = require('./utils/util.js')
 const baseMethod = require('./api/pages/baseMethod.js')
 const baseMethod = require('./api/pages/baseMethod.js')