common.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*******************************************************************************
  2. * Copyright(c) 2024 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:
  5. * 2.功能描述:共通查询方法
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 周兴 2024-1-19 1.00 新建
  9. *******************************************************************************/
  10. module.exports = {
  11. commonService: {
  12. prefix: 'mdm-server/mst/common/',
  13. getBasicData: 'get_basic_data',
  14. getCustomTag: 'get_customtag',
  15. getCustomTagByPage: 'get_customtag_by_page',
  16. getInitData: 'get_init_data',
  17. getUser: 'get_user',
  18. getUserByPage: 'get_user_by_page',
  19. selectById: '',
  20. goodsBrandListBy: 'goods_brand_list_by', //商品品牌
  21. goodsSeriesListBy: 'goods_Series_list_by', //商品系列
  22. goodsCategoryListBy: 'goods_category_list_by', //商品种类
  23. unitListBy: 'unit_list_by', //计量单位
  24. warehouseListBy: 'get_warehouse_by_page', //仓库档案
  25. getDictionaryData: 'get_dictionary_data', //数据字典
  26. getDataKind: 'get_data_kind', //系统数据
  27. getStaff: 'get_staff', //员工
  28. getOrg: 'get_org', //业务部门
  29. getGoodsCategoryNoPage: 'get_goods_category_no_page', //商品种类不带分页
  30. getSupplierAndCustomerData: 'get_supplier_and_customer_by_page',
  31. getGoodsForOrderByPage: 'get_goods_for_order_by_page', //商品列表
  32. getGoodsForOrder: 'get_goods_for_order', //商品列表
  33. getInventory: 'get_inventory', //商品列表
  34. },
  35. routeUrl: {
  36. common: {
  37. staffadd: { key: 'staffadd', url: '/package-basic-data/pages/staff/add/add' },
  38. orgadd: { key: 'orgadd', url: '/package-basic-data/pages/org/org' },
  39. }
  40. }
  41. };