You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
451 B
JavaScript
20 lines
451 B
JavaScript
|
2 years ago
|
import request from '@/utils/request'
|
||
|
|
|
||
|
|
// 查询清单率报表
|
||
|
|
export function inventoryRateReportList(query) {
|
||
|
|
return request({
|
||
|
|
url: '/report/productionReport/inventoryRateReportList',
|
||
|
|
method: 'get',
|
||
|
|
params: query
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 查询生产执行报表
|
||
|
|
export function productionExecutionReportList(query) {
|
||
|
|
return request({
|
||
|
|
url: '/report/productionReport/productionExecutionReportList',
|
||
|
|
method: 'get',
|
||
|
|
params: query
|
||
|
|
})
|
||
|
|
}
|