loulijun2021
2022-07-18 f35da7050efeaff1fd442c233008fdc00b10851f
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'
  })
}