zouyu
2023-11-17 e5ed44879d7722c160b9af63ba51b333bc7f4d1d
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'
  })
}