zouyu
2023-11-24 ad8dd10064f98154f938cd2a624958e5893e7ea0
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'
  })
}