import request from '@/utils/http'
|
|
function normalizeText(value) {
|
return typeof value === 'string' ? value.trim() : value
|
}
|
|
function normalizeIds(ids) {
|
if (Array.isArray(ids)) {
|
return ids.map((id) => String(id).trim()).filter(Boolean).join(',')
|
}
|
if (ids === null || ids === undefined) {
|
return ''
|
}
|
return String(ids).trim()
|
}
|
|
function normalizeNumericParam(value) {
|
if (value === '' || value === null || value === undefined) {
|
return undefined
|
}
|
const numericValue = Number(value)
|
return Number.isFinite(numericValue) ? numericValue : value
|
}
|
|
export function buildQlyIsptItemPageParams(params = {}) {
|
const result = {
|
current: params.current || 1,
|
pageSize: params.pageSize || params.size || 20
|
}
|
|
;[
|
'condition',
|
'matnrCode',
|
'maktx',
|
'label',
|
'splrName',
|
'splrBatch',
|
'stockBatch',
|
'platOrderCode',
|
'platWorkCode',
|
'projectCode',
|
'picPath',
|
'memo'
|
].forEach((key) => {
|
const value = normalizeText(params[key])
|
if (value !== undefined && value !== null && value !== '') {
|
result[key] = value
|
}
|
})
|
|
;['ispectId', 'rcptQty', 'dlyQty', 'disQty', 'safeQty', 'status'].forEach((key) => {
|
const value = normalizeNumericParam(params[key])
|
if (value !== undefined && value !== '') {
|
result[key] = value
|
}
|
})
|
|
return result
|
}
|
|
export function buildQlyIsptItemResultPageParams(params = {}) {
|
const result = {
|
current: params.current || 1,
|
pageSize: params.pageSize || params.size || 20
|
}
|
|
const inspectId = normalizeNumericParam(params.id ?? params.ispectId)
|
if (inspectId !== undefined && inspectId !== '') {
|
result.id = inspectId
|
}
|
|
return result
|
}
|
|
export function fetchQlyIsptItemPage(params = {}) {
|
return request.post({
|
url: '/qlyIsptItem/page',
|
params: buildQlyIsptItemPageParams(params)
|
})
|
}
|
|
export function fetchQlyIsptItemResultPage(params = {}) {
|
return request.post({
|
url: '/qlyIsptItem/ispt/result/page',
|
params: buildQlyIsptItemResultPageParams(params)
|
})
|
}
|
|
export function fetchGetQlyIsptItemDetail(id) {
|
return request.get({
|
url: `/qlyIsptItem/${id}`
|
})
|
}
|
|
export function fetchGetQlyIsptItemMany(ids) {
|
return request.post({
|
url: `/qlyIsptItem/many/${normalizeIds(ids)}`
|
})
|
}
|
|
export async function fetchExportQlyIsptItemReport(payload = {}, options = {}) {
|
return fetch(`${import.meta.env.VITE_API_URL}/qlyIsptItem/export`, {
|
method: 'POST',
|
headers: {
|
'Content-Type': 'application/json',
|
...(options.headers || {})
|
},
|
body: JSON.stringify(payload)
|
})
|
}
|