zhou zhou
3 天以前 0a1d91e42e6c5af96e1108e9ebcc37e99eb3b22c
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
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()
}
 
export function buildOutStockItemSearchParams(params = {}) {
  const result = {}
 
  ;[
    'condition',
    'orderCode',
    'poCode',
    'platItemId',
    'matnrCode',
    'maktx',
    'batch',
    'splrBatch',
    'trackCode',
    'barcode',
    'fieldsIndex'
  ].forEach((key) => {
    const value = normalizeText(params[key])
    if (value) {
      result[key] = value
    }
  })
 
  if (params.status !== '' && params.status !== undefined && params.status !== null) {
    const numericStatus = Number(params.status)
    if (!Number.isNaN(numericStatus)) {
      result.status = numericStatus
    }
  }
 
  if (params.orderId !== '' && params.orderId !== undefined && params.orderId !== null) {
    const numericOrderId = Number(params.orderId)
    if (!Number.isNaN(numericOrderId)) {
      result.orderId = numericOrderId
    }
  }
 
  return result
}
 
export function buildOutStockItemPageParams(params = {}) {
  return {
    current: params.current || 1,
    pageSize: params.pageSize || params.size || 20,
    ...buildOutStockItemSearchParams(params)
  }
}
 
export function fetchOutStockItemPage(params = {}) {
  return request.post({
    url: '/outStockItem/page',
    params: buildOutStockItemPageParams(params)
  })
}
 
export function fetchOutStockItemList(params = {}) {
  return request.post({
    url: '/outStockItem/list',
    params: buildOutStockItemSearchParams(params)
  })
}
 
export function fetchGetOutStockItemDetail(id) {
  return request.get({
    url: `/outStockItem/${id}`
  })
}
 
export function fetchGetOutStockItemMany(ids) {
  return request.post({
    url: `/outStockItem/many/${normalizeIds(ids)}`
  })
}
 
export async function fetchExportOutStockItemReport(payload = {}, options = {}) {
  return fetch(`${import.meta.env.VITE_API_URL}/outStockItem/export`, {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      ...(options.headers || {})
    },
    body: JSON.stringify(payload)
  })
}