97151af6
李宇
feat(lqInventory)...
|
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
|
<template>
<div class="NCC-common-layout">
<div class="NCC-common-layout-center">
<!-- 查询条件 -->
<el-row class="NCC-common-search-box" :gutter="16">
<el-form @submit.native.prevent>
<el-col :span="6">
<el-form-item label="统计年份">
<el-date-picker v-model="query.Year" type="year" placeholder="选择年份"
value-format="yyyy" format="yyyy" :style='{"width":"100%"}' />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="统计月份">
<el-select v-model="query.Month" placeholder="请选择月份" :style='{"width":"100%"}'>
<el-option v-for="m in 12" :key="m" :label="`${m}月`" :value="m" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="门店">
<el-select v-model="query.StoreId" placeholder="请选择门店(不选则统计所有门店)" clearable filterable
:style='{"width":"100%"}'>
<el-option v-for="store in storeOptions" :key="store.id" :label="store.dm"
:value="store.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
|
4e2687f7
李宇
最新
|
30
31
32
33
34
35
36
37
38
|
<el-form-item label="仓库">
<el-select v-model="query.Warehouse" placeholder="请选择仓库(不选则统计所有仓库)" clearable filterable
:style='{"width":"100%"}'>
<el-option v-for="warehouse in warehouseOptions" :key="warehouse" :label="warehouse"
:value="warehouse" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
|
97151af6
李宇
feat(lqInventory)...
|
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
|
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
<el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
</el-form-item>
</el-col>
</el-form>
</el-row>
<!-- 统计结果 -->
<div class="NCC-common-layout-main NCC-flex-main">
<div class="NCC-common-head">
<div>
<span class="statistics-title">
{{ query.Year }}年{{ query.Month }}月门店领取统计
</span>
</div>
<div class="NCC-common-head-right">
<el-tooltip effect="dark" content="刷新" placement="top">
<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false"
@click="initData()" />
</el-tooltip>
<screenfull isContainer />
</div>
</div>
<!-- 统计卡片 -->
<el-row :gutter="16" style="margin-bottom: 20px;">
<el-col :span="8">
<el-card class="statistics-card" shadow="never">
<div class="card-content">
<div class="card-icon">
<i class="el-icon-s-shop"></i>
</div>
<div class="card-info">
<div class="card-label">门店数量</div>
|
4e2687f7
李宇
最新
|
72
|
<div class="card-value">{{ storeCount }}</div>
|
97151af6
李宇
feat(lqInventory)...
|
73
74
75
76
77
78
79
80
81
82
83
|
</div>
</div>
</el-card>
</el-col>
<el-col :span="8">
<el-card class="statistics-card" shadow="never">
<div class="card-content">
<div class="card-icon">
<i class="el-icon-document"></i>
</div>
<div class="card-info">
|
4e2687f7
李宇
最新
|
84
|
<div class="card-label">领取总数量</div>
|
97151af6
李宇
feat(lqInventory)...
|
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<div class="card-value">{{ totalApplicationCount }}</div>
</div>
</div>
</el-card>
</el-col>
<el-col :span="8">
<el-card class="statistics-card" shadow="never">
<div class="card-content">
<div class="card-icon">
<i class="el-icon-coin"></i>
</div>
<div class="card-info">
<div class="card-label">领取总金额</div>
<div class="card-value">¥{{ formatMoney(totalAmount) }}</div>
</div>
</div>
</el-card>
</el-col>
</el-row>
<!-- 统计列表 -->
<NCC-table v-loading="loading" :data="list"
:header-cell-style="{ background: '#f5f7fa', color: '#606266' }">
<el-table-column label="序号" align="center" type="index" width="60" />
|
b717f998
李宇
最新代码
|
108
|
<el-table-column label="门店名称" align="center" prop="StoreName" >
|
97151af6
李宇
feat(lqInventory)...
|
109
110
111
112
113
114
115
|
<template slot-scope="scope">
<div class="store-info">
<i class="el-icon-s-shop store-icon"></i>
<span>{{ scope.row.StoreName || '无' }}</span>
</div>
</template>
</el-table-column>
|
4e2687f7
李宇
最新
|
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
<el-table-column label="产品名称" align="center" prop="ProductName" >
<template slot-scope="scope">
<span>{{ scope.row.ProductName || '无' }}</span>
</template>
</el-table-column>
<el-table-column label="仓库" align="center" prop="Warehouse" >
<template slot-scope="scope">
<div class="warehouse-info">
<i class="el-icon-office-building warehouse-icon"></i>
<span>{{ scope.row.Warehouse || '无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="数量" align="center" prop="Quantity" >
<template slot-scope="scope">
<span>{{ scope.row.Quantity || 0 }}</span>
</template>
</el-table-column>
<el-table-column label="单价" align="center" prop="UnitPrice" >
|
97151af6
李宇
feat(lqInventory)...
|
135
|
<template slot-scope="scope">
|
4e2687f7
李宇
最新
|
136
|
<span>¥{{ formatMoney(scope.row.UnitPrice) }}</span>
|
97151af6
李宇
feat(lqInventory)...
|
137
138
|
</template>
</el-table-column>
|
4e2687f7
李宇
最新
|
139
|
<el-table-column label="金额" align="center" prop="Amount" >
|
97151af6
李宇
feat(lqInventory)...
|
140
|
<template slot-scope="scope">
|
4e2687f7
李宇
最新
|
141
142
143
144
145
146
|
<span class="amount-text">¥{{ formatMoney(scope.row.Amount) }}</span>
</template>
</el-table-column>
<el-table-column label="领取时间" align="center" prop="ReceiveTime" width="180">
<template slot-scope="scope">
<span>{{ formatDateTime(scope.row.ReceiveTime) }}</span>
|
97151af6
李宇
feat(lqInventory)...
|
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
</template>
</el-table-column>
</NCC-table>
</div>
</div>
</div>
</template>
<script>
import request from '@/utils/request'
import { getStoreReceiveStatistics } from '@/api/extend/lqInventory'
export default {
data() {
const currentDate = new Date()
return {
loading: false,
list: [],
|
97151af6
李宇
feat(lqInventory)...
|
165
166
167
|
query: {
Year: String(currentDate.getFullYear()),
Month: currentDate.getMonth() + 1,
|
4e2687f7
李宇
最新
|
168
169
|
StoreId: undefined,
Warehouse: undefined
|
97151af6
李宇
feat(lqInventory)...
|
170
|
},
|
4e2687f7
李宇
最新
|
171
172
|
storeOptions: [],
warehouseOptions: []
|
97151af6
李宇
feat(lqInventory)...
|
173
174
175
176
|
}
},
computed: {
totalApplicationCount() {
|
4e2687f7
李宇
最新
|
177
|
return this.list.reduce((sum, item) => sum + (item.Quantity || 0), 0)
|
97151af6
李宇
feat(lqInventory)...
|
178
179
|
},
totalAmount() {
|
4e2687f7
李宇
最新
|
180
181
182
183
184
185
186
187
|
return this.list.reduce((sum, item) => sum + (item.Amount || 0), 0)
},
storeCount() {
// 计算去重后的门店数量
const storeNames = this.list
.map(item => item.StoreName)
.filter(name => name && name.trim() !== '')
return new Set(storeNames).size
|
97151af6
李宇
feat(lqInventory)...
|
188
189
190
191
|
}
},
created() {
this.initStoreOptions()
|
4e2687f7
李宇
最新
|
192
|
this.initWarehouseOptions()
|
97151af6
李宇
feat(lqInventory)...
|
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
this.initData()
},
methods: {
initData() {
if (!this.query.Year || !this.query.Month) {
this.$message({
type: 'warning',
message: '请选择统计年份和月份'
})
return
}
this.loading = true
let query = {
Year: Number(this.query.Year),
Month: this.query.Month
}
// 移除空值
if (this.query.StoreId) {
query.StoreId = this.query.StoreId
}
|
4e2687f7
李宇
最新
|
213
214
215
|
if (this.query.Warehouse) {
query.Warehouse = this.query.Warehouse
}
|
97151af6
李宇
feat(lqInventory)...
|
216
217
218
219
|
getStoreReceiveStatistics(query).then(res => {
this.loading = false
if (res.code == 200 && res.data && res.data.success) {
this.list = res.data.data || []
|
97151af6
李宇
feat(lqInventory)...
|
220
221
|
} else {
this.list = []
|
97151af6
李宇
feat(lqInventory)...
|
222
223
224
225
226
227
228
229
230
231
|
if (res.data && res.data.message) {
this.$message({
type: 'info',
message: res.data.message
})
}
}
}).catch(() => {
this.loading = false
this.list = []
|
97151af6
李宇
feat(lqInventory)...
|
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
})
},
initStoreOptions() {
request({
url: '/api/Extend/LqMdxx',
method: 'GET',
data: {
currentPage: 1,
pageSize: 1000
}
}).then(res => {
if (res.data && res.data.list) {
this.storeOptions = res.data.list
}
}).catch(() => {
this.storeOptions = []
})
},
|
4e2687f7
李宇
最新
|
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
initWarehouseOptions() {
request({
url: '/api/Extend/LqProduct/GetList',
method: 'GET',
data: {
currentPage: 1,
pageSize: 10000
}
}).then(res => {
if (res.code == 200 && res.data && res.data.list) {
// 从产品列表中提取去重的仓库名称
const warehouses = res.data.list
.map(item => item.warehouse)
.filter(warehouse => warehouse && warehouse.trim() !== '')
this.warehouseOptions = [...new Set(warehouses)].sort()
}
}).catch(() => {
this.warehouseOptions = []
})
},
|
97151af6
李宇
feat(lqInventory)...
|
270
271
272
273
274
275
276
277
|
search() {
this.initData()
},
reset() {
const currentDate = new Date()
this.query = {
Year: String(currentDate.getFullYear()),
Month: currentDate.getMonth() + 1,
|
4e2687f7
李宇
最新
|
278
279
|
StoreId: undefined,
Warehouse: undefined
|
97151af6
李宇
feat(lqInventory)...
|
280
281
282
283
284
285
|
}
this.initData()
},
formatMoney(amount) {
if (!amount && amount !== 0) return '0.00'
return Number(amount).toFixed(2)
|
4e2687f7
李宇
最新
|
286
287
288
289
290
291
292
293
294
295
296
297
298
|
},
formatDateTime(timestamp) {
if (!timestamp) return '无'
// 处理时间戳(可能是毫秒或秒)
const date = new Date(timestamp > 1000000000000 ? timestamp : timestamp * 1000)
if (isNaN(date.getTime())) return '无'
const year = date.getFullYear()
const month = String(date.getMonth() + 1).padStart(2, '0')
const day = String(date.getDate()).padStart(2, '0')
const hours = String(date.getHours()).padStart(2, '0')
const minutes = String(date.getMinutes()).padStart(2, '0')
const seconds = String(date.getSeconds()).padStart(2, '0')
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
|
97151af6
李宇
feat(lqInventory)...
|
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
|
}
}
}
</script>
<style lang="scss" scoped>
.statistics-title {
font-size: 18px;
font-weight: 600;
color: #303133;
}
.statistics-card {
height: 100px;
border-radius: 12px;
.card-content {
display: flex;
align-items: center;
height: 100%;
padding: 12px;
.card-icon {
font-size: 40px;
color: #409EFF;
margin-right: 20px;
}
.card-info {
flex: 1;
.card-label {
font-size: 14px;
color: #909399;
margin-bottom: 8px;
}
.card-value {
font-size: 24px;
font-weight: 600;
color: #303133;
}
}
}
}
.store-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.store-icon {
color: #409EFF;
font-size: 16px;
}
|
4e2687f7
李宇
最新
|
357
358
359
360
361
362
363
364
365
366
367
368
|
.warehouse-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.warehouse-icon {
color: #409EFF;
font-size: 16px;
}
|
97151af6
李宇
feat(lqInventory)...
|
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
.amount-text {
color: #67C23A;
font-weight: 600;
}
::v-deep .el-table__row:hover {
background-color: #f5f7fa;
}
::v-deep .el-table__header-wrapper {
.el-table__header {
th {
background-color: #f5f7fa;
color: #606266;
font-weight: 600;
}
}
}
</style>
|