zouyu
2023-11-17 1cf81a64af5bac57f2af8c419db0b22b3d5ba7c8
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
import request from '@/router/axios'
 
export function masterProductionScheduleSave() {
  return request({
    url: '/scm/common/masterProductionScheduleSave',
    method: 'get'
  })
}
 
export function changeState(id) {
  return request({
    url: '/scm/common/changeState/' + id,
    method: 'get'
  })
}
 
export function instorage(stockId) {
  return request({
    url: '/scm/common/instorage/' + stockId,
    method: 'get'
  })
}
 
export function matPick(id) {
  return request({
    url: '/scm/common/matPick/' + id,
    method: 'get'
  })
}