bonus-material-app/src/services/ledger.js

32 lines
617 B
JavaScript
Raw Normal View History

2025-06-06 09:08:23 +08:00
import { http } from '@/utils/http'
/**
2025-06-06 16:57:21 +08:00
* 工器具台账 ---- 列表查询
2025-06-06 09:08:23 +08:00
*/
export const getToolsLedgerList = (data) => {
return http({
method: 'GET',
url: '/material/complex_query/getToolsLedgerList',
data,
})
2025-06-06 16:57:21 +08:00
}
/**
* 工器具台账详情 ---- 列表查询
*/
export const getToolsLedgerDetailsList = (data) => {
return http({
method: 'GET',
url: '/material/complex_query/getToolsDetailsList',
data,
})
2025-06-13 09:02:28 +08:00
}
// 班组库存
export const getTeamUseNumList = (data) => {
return http({
method: 'GET',
url: '/material/complex_query/getTeamUseNumList',
data,
})
2025-06-06 09:08:23 +08:00
}