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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<template>
<div>
<div style="display: flex; align-items: flex-end">
<img
src="@/assets/setting/user.png"
alt
style="width: 26px; height: 26px"
>
<span
style="
font-size: 18px;
font-weight: bold;
color: #333333;
line-height: 26px;
margin-left: 5px;
"
>{{ $t('postorder.header') }}</span>
</div>
<div style="display: flex; align-items: flex-end; margin-top: 5px">
<div style="width: 75px; height: 4px; background: #396fff" />
<div
style="
width: 75px;
height: 1px;
background: #fff;
border: 1px solid #acacac;
"
/>
</div>
<!-- 搜索工作栏 -->
<el-form v-show="showSearch" ref="queryForm" :model="queryParams" size="small" :inline="true" style="margin-top: 20px;">
<el-row :gutter="10">
<el-col :span="8">
<el-form-item :label="$t('postorder.transport')" prop="transportId">
<dict-selector v-model.number="queryParams.transportId" style="width: 160px;" :type="DICT_TYPE.ECW_TRANSPORT_TYPE" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item :label="$t('controlorder.No')" prop="searchKey">
<el-input v-model="queryParams.searchKey" onkeyup="this.value=this.value.replace(/\s+/g, '')" style="width: 230px;" :placeholder="$t('controlorder.NoRules')" clearable />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item :label="$t('postorder.marks')" prop="marks">
<el-input v-model="queryParams.marks" style="width: 130px;" :placeholder="$t('controlorder.marksRules')" clearable />
</el-form-item>
</el-col>
</el-row>
<el-form-item :label="$t('postorder.date')" prop="phone">
<dict-selector v-model="dateFilterType" :type="DICT_TYPE.ECW_BEGINTIME_TYPE_ENDTIME" style="width: 150px; margin-right: 5px" />
<el-date-picker v-model="dateFilter" type="datetimerange" range-separator="-" :start-placeholder="$t('postorder.start')" :end-placeholder="$t('postorder.end')" value-format="yyyy-MM-dd HH:mm:ss" />
</el-form-item>
<el-form-item :label="$t('postorder.status')" prop="dynamicStatusList">
<dict-selector v-model="dynamicStatusList" :type="DICT_TYPE.APP_ORDER_STATUS" style="width: 150px; margin-right: 5px" />
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">{{ $t('common.search') }}</el-button>
<el-button icon="el-icon-refresh" @click="resetQuery">{{ $t('common.reload') }}</el-button>
</el-form-item>
</el-form>
<!-- 操作工具栏 -->
<el-row>
<right-toolbar :show-search.sync="showSearch" @queryTable="getList" />
</el-row>
<!-- 列表 -->
<el-table
:data="orderList"
style="width: 100%"
>
<el-table-column
type="index"
width="50"
align="center"
header-align="center"
/>
<el-table-column
:label="$t('postorder.orderNo')"
width="120"
align="center"
header-align="center"
>
<template slot-scope="scope">
<router-link :to="{path: '/jiedao/jd-orderdetail',query: {orderId: scope.row.orderId}}" class="link-type">
<span>{{ scope.row.orderNo }}</span>
</router-link>
</template>
</el-table-column>
<el-table-column
prop="tidanNo"
:label="$t('提单号')"
width="100"
align="center"
header-align="center"
/>
<el-table-column
prop="transportId"
:label="$t('postorder.transport')"
width="100"
align="center"
header-align="center"
>
<template slot-scope="{row}">
<dict-tag :type="DICT_TYPE.ECW_TRANSPORT_TYPE" :value="row.transportId" />
</template>
</el-table-column>
<el-table-column
prop="marks"
:label="$t('postorder.marks')"
width="100"
align="center"
header-align="center"
/>
<el-table-column
:label="$t('postorder.status')"
align="center"
header-align="center"
>
<template slot-scope="scope">
{{ getStatusName(scope.row) }}
</template>
</el-table-column>
<el-table-column
prop="createTime"
:label="$t('postorder.createTime')"
align="center"
header-align="center"
/>
<el-table-column
:label="$t('common.action')"
align="center"
class-name="small-padding fixed-width"
width="150px"
header-align="center"
>
<template slot-scope="scope">
<el-button v-if="scope.row.status <= 2 && isDelivery" size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row, false)">{{ $t('postorder.edit') }}</el-button>
<el-button v-if="scope.row.status == 2" size="mini" type="text" icon="el-icon-delete" @click="oprateOrder(scope.row.orderId)">{{ $t('postorder.cancel') }}</el-button>
<el-button v-if="scope.row.status == 5 && isDelivery" size="mini" type="text" icon="el-icon-edit" @click="refundWarehouse(scope.row)">{{ $t('postorder.refundWarehouse') }}</el-button>
<el-button v-if="scope.row.abnormalState>1&&scope.row.status!=88 && isDelivery" size="mini" type="text" icon="el-icon-edit" @click="handleAbnormal(scope.row.orderId)">{{ $t('postorder.abnormal') }}</el-button>
<el-button v-if="scope.row.status == 0" size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row.orderId)">{{ $t('postorder.delete') }}</el-button>
<el-button v-if="scope.row.customsType == 2" size="mini" type="text" icon="el-icon-edit" @click.native="declarationOrderId=scope.row.orderId;declarationOrderNo=scope.row.orderNo">{{ $t('common.uploadDeclaration') }}</el-button>
<el-button
v-if="
exclude(scope.row.status, [0]) &&
exclude(scope.row.shipmentState, [320,322,323]) &&
exclude(scope.row.abnormalState, [5,6,7,8])
"
size="mini"
type="text"
@click.native="printTagOrderId=scope.row.orderId"
>{{ $t('打印标签') }}
</el-button>
<el-button size="mini" type="text" v-if="isDelivery" icon="el-icon-edit" @click="handleCopy(scope.row)">{{ $t('postorder.copy') }}</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.page"
:limit.sync="queryParams.rows"
@pagination="getList"
/>
<!-- 退仓弹窗 -->
<el-dialog :title="$t('postorder.refundWarehouse')" :visible.sync="rwVisible" width="30%" append-to-body :close-on-click-modal="false">
<el-form ref="rwForm" :model="rwForm" label-width="150px">
<el-form-item
:label="$t('postorder.refundOrderNo')"
>
<span>{{ rwForm.orderNo }}</span>
</el-form-item>
<el-form-item
:label="$t('postorder.refundReason')"
prop="reason"
>
<el-input v-model="rwForm.reason" type="textarea" :rows="4" :placeholder="$t('postorder.refundReasonNotice')" />
</el-form-item>
<el-form-item
:label="$t('postorder.refundImg')"
prop="imgUrl"
>
<el-upload
class="upload-demo"
action="#"
:http-request="requestUpload"
:before-upload="beforeUploadimg1"
:file-list="fileList"
multiple
:limit="20"
:on-exceed="moreFile"
list-type="picture"
>
<el-button size="small" type="primary">{{ $t('realName.upload') }}</el-button>
<div slot="tip" class="el-upload__tip">{{ $t('realName.uploadNotice') }}</div>
</el-upload>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="rwSubmitForm">{{ $t('postorder.submitRefund') }}</el-button>
<el-button @click="rwVisible=false;">{{ $t('postorder.noRefund') }}</el-button>
</div>
</el-dialog>
<!-- 打印标签 -->
<print-tag v-if="printTagOrderId !== null" :order-id="printTagOrderId" @close="printTagOrderId=null" />
<declaration-documents v-if="declarationOrderId !== null" :order-id="declarationOrderId" :order-no="declarationOrderNo" @close="declarationOrderId=null" />
</div>
</template>
<script>
import { getIssued, cancelOrder, deleteOrder, refundWarehouseApply, copyOrder } from '@/api/order'
import { parseTime } from '@/utils'
import { mapGetters } from "vuex";
import RightToolbar from '@/components/RightToolbar'
import Pagination from '@/components/Pagination'
import DictTag from '@/components/DictTag'
import DictSelector from '@/components/DictSelector'
import PrintTag from './components/PrintTag'
import DeclarationDocuments from './components/DeclarationDocuments'
import { uploadFile } from '@/api/user'
export default {
components: {
RightToolbar,
Pagination,
DictTag,
DictSelector,
PrintTag,
DeclarationDocuments
},
data() {
return {
parseTime,
orderList: [],
// 显示搜索条件
showSearch: true,
isDelivery: false,
dateFilterType: '', // 日期筛选类别
dynamicStatusList: '', // 状态筛选类别
dateFilter: [], // 筛选日期
printTagOrderId: null, // 显示打印标签的订单ID
// 总条数
total: 0,
// 查询参数
queryParams: {
page: 1,
rows: 10
},
rwVisible: false,
rwForm: {
},
fileList: [],
imgUrl: [],
declarationOrderId: null, // 显示报关资料订单ID
declarationOrderNo: null // 显示报关资料订单ID
}
},
computed: {
...mapGetters(["loginUser"]),
// expoerCityList() {
// return this.tradeCityList.filter(item => item.type == 2)
// },
// importCityList() {
// return this.tradeCityList.filter(item => item.type == 1)
// },
combinedQueryParams() {
const timeParams = {}
if (this.dateFilterType && this.dateFilter) {
timeParams['begin' + this.dateFilterType] = this.dateFilter[0]
timeParams['end' + this.dateFilterType] = this.dateFilter[1]
}
if (this.dynamicStatusList){
this.queryParams.dynamicStatusList=this.dynamicStatusList
}
return Object.assign({}, this.queryParams, timeParams)
},
exclude() {
return (state, arr) => {
return arr.indexOf(state) == -1
}
},
isChinese() {
return this.$i18n.locale === 'zh_CN'
}
},
watch: {
isChinese() {
this.getList()
}
},
created() {
this.getList()
this.isForeignUser()
},
methods: {
isForeignUser(){
if (this.loginUser != null){
this.isDelivery = this.loginUser.areaCode === '86';
}
},
getStatusName: function (item) {
const orderStatus = this.getRealStatus(item);
const special = this.getDictDatas(this.DICT_TYPE.APP_ORDER_STATUS);
const statusMsg=special.filter(e => {
return e.value.split(',').map(Number).includes(orderStatus)
});
return this.isChinese ? statusMsg[0].label : statusMsg[0].labelEn;
},
getList() {
getIssued(this.combinedQueryParams).then((r) => {
this.orderList = r.data.list
this.total = r.data.total
})
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.page = 1
this.getList()
},
/** 重置按钮操作 */
resetQuery() {
this.dynamicStatusList = ''
this.queryParams = {
page: 1,
rows: 10
}
this.handleQuery()
},
/** 修改按钮操作 */
handleUpdate(row, copy) {
if (copy) {
this.$router.push('jd-deliveryedit?id=' + row.orderId + '©=1')
} else {
this.$router.push('jd-deliveryedit?id=' + row.orderId)
}
},
handleDelete(id) {
this.$confirm(this.$t('是否确认删除订单')).then(function() {
return deleteOrder(id)
}).then(() => {
this.getList()
this.$message({
message: this.$t('common.success'),
type: 'success'
})
}).catch(() => {})
},
handleCopy(row){
this.handleUpdate(row, true )
// copyOrder(row.orderId).then((res) => {
// this.handleUpdate({ orderId: res.data})
// })
},
oprateOrder(orderId) {
this.$confirm(this.$t('postorder.confirm'))
.then(() => {
cancelOrder(orderId).then(() => {
this.getList()
})
})
},
refundWarehouse(row) {
this.rwVisible = true
this.rwForm = {
orderId: row.orderId,
orderNo: row.orderNo,
reason: '',
imgUrl: ''
}
this.imgUrl = []
this.fileList = []
},
rwSubmitForm() {
if (this.imgUrl.length > 0) {
this.rwForm.imgUrl = this.imgUrl.join(',')
}
refundWarehouseApply(this.rwForm).then(() => {
this.$message.success(this.$t('postorder.refundWarehouseSuccess'))
this.getList()
this.rwVisible = false
})
},
handleAbnormal(id) {
this.$router.push('jd-abnormal?id=' + id)
},
// 覆盖默认的上传行为
requestUpload() {
},
// 上传预处理
beforeUploadimg1(file) {
let flag = false
if (file.type.indexOf('image/') === -1) {
this.$message.error(this.$t('setting.imgType'))
flag = true
} else {
// 上传
const formData = new FormData()
formData.append('file', file)
formData.append('path', this.uuid())
uploadFile(formData).then(response => {
// this.$set(this.rwForm, 'imgUrl', response.data)
this.imgUrl.push(response.data)
})
}
if (flag) return false
console.log(this.imgUrl)
},
moreFile() {
this.$message.error(this.$t('realName.uploadNotice'))
},
uuid() {
var s = []
var hexDigits = '0123456789abcdef'
for (var i = 0; i < 36; i++) {
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1)
}
s[14] = '4' // bits 12-15 of the time_hi_and_version field to 0010
s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1) // bits 6-7 of the clock_seq_hi_and_reserved to 01
s[8] = s[13] = s[18] = s[23] = '-'
var uuid = s.join('')
return uuid
},
getRealStatus(item){
let status = 0;
if (item.status === 12 && item.shipmentState === 325){
status = 12325
}else if (item.status === 5 && item.airShipment === 1 && item.abnormalState === 0 && item.auditType=== 0 && item.transportId === 3){
status = 10501
}else if (item.status === 5 && (item.airShipment === 2 || item.airShipment === 3) && item.abnormalState === 0 && item.auditType=== 0 && item.transportId === 3){
status = 10502
}else if (item.status === 5 && item.airShipment === 4 && item.transportId === 3) {
status = 10503;
} else if (item.status === 5 && item.abnormalState === 0 && item.auditType === 0 &&
((item.transportId === 3 && (item.airShipment === 2 || item.airShipment === 3 || item.airShipment === 4)) ||
(item.transportId === 1 && (item.airShipment === 0 || item.airShipment === 2 || item.airShipment === 3 || item.airShipment === 4)))) {
status = 10504;
} else if (item.status === 32 && item.shipmentState === 411 && item.transportId === 3) {
status = 132411;
} else if (item.status === 32 && item.shipmentState === 412 && item.transportId === 3) {
status = 132412;
} else if (item.status === 32 && item.shipmentState === 409 && item.transportId === 3) {
status = 132409;
} else if (item.status === 32 && item.shipmentState === 428 && item.transportId === 3) {
status = 118428;
}else {
status = item.status;
}
return status
}
}
}
</script>
<style scoped>
::v-deep .el-table__header .el-table__cell{
background-color: #27417C;
font-size: 13px;
height: 48px;
text-align: center;
font-size: 13px;
font-weight: 500;
color: #FFFFFF;
}
</style>