zouyu
2023-11-14 4951d18cec6485e4d0e2fc2f529b35407c8db957
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'
  })
}