Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-pda-scan
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
ximai
mes-pda-scan
Commits
1d7afeb1
Commit
1d7afeb1
authored
Sep 06, 2024
by
何远江
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug 修改
parent
41c71ed6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
381 additions
and
330 deletions
+381
-330
confirComplete.vue
pages/confirComplete/confirComplete.vue
+369
-312
salesOutboundList.vue
pages/salesOutbound/salesOutboundList.vue
+12
-17
index.vue
pages/sendOutGoodsOff/index.vue
+0
-1
No files found.
pages/confirComplete/confirComplete.vue
View file @
1d7afeb1
This diff is collapsed.
Click to expand it.
pages/salesOutbound/salesOutboundList.vue
View file @
1d7afeb1
...
...
@@ -116,21 +116,16 @@ export default {
return
this
.
vuex_sales_outbound
[
this
.
vbeln
]
||
null
;
},
plslen
()
{
return
this
.
goodsList
.
reduce
((
acc
,
cur
)
=>
{
return
(
acc
+
(
cur
?.
ZPLDT
?.
reduce
((
a
,
c
)
=>
{
if
(
c
.
ZCODE
==
""
&&
c
.
PLNR
)
{
a
.
push
(
c
.
PLNR
);
}
else
if
(
c
.
PLNR
&&
c
.
ZCODE
)
{
if
(
!
a
.
includes
(
c
.
ZCODE
))
{
a
.
push
(
c
.
ZCODE
);
}
}
return
a
;
},
[]).
length
||
0
)
);
},
0
);
const
codes
=
[];
this
.
goodsList
.
forEach
((
cur
)
=>
{
cur
?.
ZPLDT
?.
forEach
((
c
)
=>
{
const
code
=
c
.
ZCODE
||
c
.
PLNR
;
if
(
!
codes
.
includes
(
code
))
{
codes
.
push
(
code
);
}
});
});
return
codes
.
length
;
},
saleInfo
()
{
return
this
.
goodsList
[
0
]
||
{};
...
...
@@ -305,8 +300,8 @@ export default {
}
});
}
else
{
item
.
ZPLDT
.
splice
(
idx
,
1
)
}
item
.
ZPLDT
.
splice
(
idx
,
1
);
}
},
// 加载更多
onReachBottom
()
{
...
...
pages/sendOutGoodsOff/index.vue
View file @
1d7afeb1
...
...
@@ -282,7 +282,6 @@ page {
margin
:
20rpx
;
}
.cardbox
{
max-height
:
calc
(
100vh
-
105px
-
60rpx
-
140rpx
);
padding
:
0rpx
20rpx
;
margin-top
:
20rpx
;
}
...
...
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