payne
2024-04-24 0609ad2318e9d20dfa1d1eebe3c24242717cd112
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
30
31
32
33
34
35
36
37
38
39
40
41
import { axios } from '@/utils/request'
 
/**
 * 胶合板备料单查询
 *
 * @author yhh
 */
export function PlywoodPreparationPage (parameter) {
  return axios({
    url: '/plywoodpreparation/page',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 胶合板备料单据详情
 *
 * @author yhh
 */
export function PlywoodPreparationDetailPage (params) {
  return axios({
    url: '/plywoodpreparation/detailPage',
    method: 'get',
    params:params
  })
}
 
 
/**
 * 胶合板备料计划下发
 *
 * @author yhh
 */
export function Distribute (ids) {
  return axios({
    url: '/plywoodpreparation/BatchPreparationMaterials',
    method: 'post',
    data:{id:ids}
  })
}