zhou zhou
昨天 aaf8a50511d77dbc209ca93bbba308c21179a8bc
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import request from '@/utils/http'
 
function normalizeText(value) {
  return typeof value === 'string' ? value.trim() : String(value ?? '').trim()
}
 
function normalizeNumber(value, fallback = void 0) {
  if (value === '' || value === null || value === undefined) {
    return fallback
  }
  const parsed = Number(value)
  return Number.isNaN(parsed) ? fallback : parsed
}
 
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()
}
 
const TEXT_FIELDS = [
  'condition',
  'timeStart',
  'timeEnd',
  'transferCode',
  'matnrCode',
  'maktx',
  'unit',
  'batch',
  'spec',
  'model',
  'fieldsIndex',
  'platItemId',
  'platOrderCode',
  'platWorkCode',
  'projectCode',
  'memo'
]
 
const NUMBER_FIELDS = ['transferId', 'matnrId', 'anfme', 'workQty', 'qty', 'splrId', 'status']
 
function buildSearchParams(params = {}) {
  const result = {}
 
  TEXT_FIELDS.forEach((key) => {
    const value = normalizeText(params[key])
    if (value) {
      result[key] = value
    }
  })
 
  NUMBER_FIELDS.forEach((key) => {
    const value = normalizeNumber(params[key], void 0)
    if (value !== void 0) {
      result[key] = value
    }
  })
 
  return result
}
 
export function buildTransferItemPageParams(params = {}) {
  return {
    current: params.current || 1,
    pageSize: params.pageSize || params.size || 20,
    ...buildSearchParams(params)
  }
}
 
export function buildTransferItemQueryParams(condition = '') {
  const normalizedCondition = normalizeText(condition)
  return normalizedCondition ? { condition: normalizedCondition } : {}
}
 
export function fetchTransferItemPage(params = {}) {
  return request.post({
    url: '/transferItem/page',
    params: buildTransferItemPageParams(params)
  })
}
 
export function fetchTransferItemList(params = {}) {
  return request.post({
    url: '/transferItem/list',
    data: buildSearchParams(params)
  })
}
 
export function fetchTransferItemMany(ids) {
  return request.post({
    url: `/transferItem/many/${normalizeIds(ids)}`
  })
}
 
export function fetchTransferItemDetail(id) {
  return request.get({
    url: `/transferItem/${id}`
  })
}
 
export function fetchTransferItemQuery(condition = '') {
  return request.post({
    url: '/transferItem/query',
    params: buildTransferItemQueryParams(condition)
  })
}
 
export async function fetchExportTransferItemReport(payload = {}, options = {}) {
  return fetch(`${import.meta.env.VITE_API_URL}/transferItem/export`, {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      ...(options.headers || {})
    },
    body: JSON.stringify(payload)
  })
}