zhou zhou
4 天以前 1553782fd262f97a336fecc8b38f8f309fc08ae6
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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)
  })
}