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
| // 生产订单页面接口
| import request from "@/utils/request";
|
| // 分页查询
| export function schedulingListPage(query) {
| return request({
| url: "/salesLedger/scheduling/listPage",
| method: "get",
| params: query,
| });
| }
| // 生产派工
| export function productionDispatch(query) {
| return request({
| url: "/salesLedger/scheduling/productionDispatch",
| method: "post",
| data: query,
| });
| }
|
| // 生产订单-查询产品结构列表
| export function listProcessBom(query) {
| return request({
| url: "/productOrder/listProcessBom",
| method: "get",
| params: query,
| });
| }
|
|