loulijun2021
2022-07-15 869f6c069e86c2ff90393c1441854a6f05989481
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import request from '@/utils/request'
 
// 制造模型:存货分类同步
export function SeaveSearchInventoryClass() {
  return request({
    url: 'ErpSyncMes/SeaveSearchInventoryClass',
    method: 'post'
  })
}
// 制造模型:存货档案同步
export function SeaveSearchInventory() {
  return request({
    url: 'ErpSyncMes/SeaveSearchInventory',
    method: 'post'
  })
}
// 物料管理:仓库库位同步
export function SeaveSearchWhareHouseLocation() {
  return request({
    url: 'ErpSyncMes/SeaveSearchWhareHouseLocation',
    method: 'post'
  })
}
//
export function SeaveSearchPartner() {
  return request({
    url: 'ErpSyncMes/SeaveSearchPartner',
    method: 'post'
  })
}