Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
94b6a758
Commit
94b6a758
authored
Jan 04, 2024
by
邓春圆
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/release' into release
parents
81384456
5a04125e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
10 deletions
+14
-10
allAchievement.vue
src/views/ecw/deptTarget/allAchievement.vue
+4
-4
index.vue
src/views/ecw/order/stocking/index.vue
+2
-2
WarehouseRecordDetail.vue
...cw/order/warehousing/components/WarehouseRecordDetail.vue
+8
-4
No files found.
src/views/ecw/deptTarget/allAchievement.vue
View file @
94b6a758
...
...
@@ -485,10 +485,10 @@
// 执行导出
this
.
exportLoading
=
true
;
exportDetailExcel
(
params
).
then
(
response
=>
{
this
.
$download
.
excel
(
response
,
`
${
this
.
$t
(
'
业绩明细
'
)}
.xls`
);
// this.$download.excel(response, `${this.$t('业绩明细')}.xls`);
this
.
$message
.
success
(
this
.
$t
(
'
已加入导出队列,请稍后在下载日志中下载
'
))
}).
finally
(()
=>
{
this
.
exportLoading
=
false
;
}).
catch
(()
=>
{
});
},
/** 导出按钮操作 */
...
...
src/views/ecw/order/stocking/index.vue
View file @
94b6a758
...
...
@@ -493,9 +493,9 @@ export default {
this
.
$message
.
success
(
this
.
$t
(
'
操作成功
'
))
})
},
//
退仓
//
并箱
async
rollback
(
orderItem
){
this
.
$confirm
(
this
.
$l
(
orderItem
,
'
prodTitle
'
)
+
this
.
$t
(
"
退仓后不可恢复,是否确认退仓
?
"
),
this
.
$t
(
'
提示
'
)).
then
(()
=>
{
this
.
$confirm
(
this
.
$l
(
orderItem
,
'
prodTitle
'
)
+
this
.
$t
(
"
并箱后不可恢复,是否确认并箱
?
"
),
this
.
$t
(
'
提示
'
)).
then
(()
=>
{
return
rollbackDelete
({
orderId
:
this
.
orderId
,
orderItemId
:
orderItem
.
orderItemId
,
...
...
src/views/ecw/order/warehousing/components/WarehouseRecordDetail.vue
View file @
94b6a758
...
...
@@ -179,11 +179,15 @@ export default {
handleChooseOrderProducts
(
data
){
this
.
showChooseDialog
=
false
if
(
!
data
?.
length
)
return
// 如果第一条是空的,则删除先
let
firstItem
=
this
.
dataList
[
0
]
if
(
!
firstItem
.
prodId
&&
!
firstItem
.
brand
&&
!
firstItem
.
prodAttrIds
&&
!
firstItem
.
material
&&
!
firstItem
.
quantityAll
){
this
.
dataList
.
splice
(
0
,
1
)
// 如果最后一条是空的,则删除先
if
(
this
.
dataList
?.
length
){
const
index
=
this
.
dataList
.
length
-
1
let
lastItem
=
this
.
dataList
[
index
]
if
(
!
lastItem
.
prodId
&&
!
lastItem
.
brand
&&
!
lastItem
.
prodAttrIds
&&
!
lastItem
.
material
&&
!
lastItem
.
quantityAll
){
this
.
dataList
.
splice
(
index
,
1
)
}
}
data
.
forEach
(
item
=>
{
this
.
dataList
.
push
({
"
boxGauge
"
:
""
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment