admin
2024-07-12 2aae2ddd866c3fc88f37c44f69a38f6de076b502
提交 | 用户 | 时间
0ca254 1 import request from '@/utils/request'
A 2
3 // 查询配方配置子信息列表
4 export function listFormulaChild(query) {
5   return request({
6     url: '/bs/formulaChild/list',
7     method: 'get',
8     params: query
9   })
10 }
11
12 // 不分页查询配方配置子信息列表
13 export function noPageListFormulaChild(query) {
14   return request({
15     url: '/bs/formulaChild/noPageListFormulaChild',
16     method: 'get',
17     params: query
18   })
19 }
20
21 // 查询配方配置子信息列表
22 export function releaseCheck(query) {
23   return request({
24     url: '/bs/formulaChild/releaseCheck',
25     method: 'get',
26     params: query
27   })
28 }
29
30 // 查询配方配置子信息列表
31 export function updateResults(query) {
32   return request({
33     url: '/bs/formulaChild/updateResults',
34     method: 'get',
35     params: query
36
37   })
38 }
39
2aae2d 40 export function unfinishedProcess(query) {
A 41   return request({
42     url: '/bs/formulaChild/unfinishedProcess',
43     method: 'get',
44     params: query
45
46   })
47 }
48
0ca254 49 // 查询配方配置子信息列表
7ae9a9 50 export function initializedData(query) {
A 51   return request({
52     url: '/bs/formulaChild/initializedData',
53     method: 'get',
54     params: query
55
56   })
57 }
58
59 // 查询配方配置子信息列表
0ca254 60 export function fistSetpNumber(query) {
A 61   return request({
62     url: '/bs/formulaChild/fistSetpNumber',
63     method: 'get',
64     params: query
65
66   })
67 }
68
69 // 查询配方配置子信息列表
70 export function jrmUpdateResults(query) {
71   return request({
72     url: '/bs/formulaChild/jrmUpdateResults',
73     method: 'get',
74     params: query
75   })
76 }
77
78 // 查询配方配置子信息列表
79 export function yzUpdateResults(query) {
80   return request({
81     url: '/bs/formulaChild/yzUpdateResults',
82     method: 'get',
83     params: query
84
85   })
86 }
87
88 // 查询配方配置子信息列表
89 export function jrmWorkpieceRelease(query) {
90   return request({
91     url: '/bs/formulaChild/jrmWorkpieceRelease',
92     method: 'get',
93     params: query
94
95   })
96 }
97
98 // 查询配方配置子信息列表
99 export function clearWorkpieceRelease(query) {
100   return request({
101     url: '/bs/formulaChild/clearWorkpieceRelease',
102     method: 'get',
103     params: query
104
105   })
106 }
107
108 // 查询配方配置子信息列表
109 export function workpieceRelease(query) {
110   return request({
111     url: '/bs/formulaChild/workpieceRelease',
112     method: 'get',
113     params: query
114
115   })
116 }
117
118 // 查询配方配置子信息列表
119 export function checkMaterialCode(query) {
120   return request({
121     url: '/bs/formulaChild/checkMaterialCode',
122     method: 'get',
123     params: query
124
125   })
126 }
127
128 // 查询配方配置子信息列表
129 export function yzUpdateTighteningFormula(query) {
130   return request({
131     url: '/bs/formulaChild/yzUpdateTighteningFormula',
132     method: 'get',
133     params: query
134
135   })
136 }
137
138 // 查询配方配置子信息列表
139 export function updateTighteningFormula(query) {
140   return request({
141     url: '/bs/formulaChild/updateTighteningFormula',
142     method: 'get',
143     params: query
144
145   })
146 }
147
148 // 查询配方配置子信息详细
149 export function getFormulaChild(id) {
150   return request({
151     url: '/bs/formulaChild/' + id,
152     method: 'get'
153   })
154 }
155
156 // 新增配方配置子信息
157 export function addFormulaChild(data) {
158   return request({
159     url: '/bs/formulaChild',
160     method: 'post',
161     data: data
162   })
163 }
164
165 // 修改配方配置子信息
166 export function updateFormulaChild(data) {
167   return request({
168     url: '/bs/formulaChild',
169     method: 'put',
170     data: data
171   })
172 }
173
174 // 删除配方配置子信息
175 export function delFormulaChild(id) {
176   return request({
177     url: '/bs/formulaChild/' + id,
178     method: 'delete'
179   })
180 }