Fixiaobai
2023-12-14 e7f48f75bfc131854a05b031e1d34b165585e004
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'
  })
}