Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
wmsApp
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d56ebc7d
authored
Jul 06, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
7b88066b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
pages/picking/sort.vue
pages/stockRecheck/sort.vue
pages/picking/sort.vue
View file @
d56ebc7d
...
...
@@ -531,6 +531,12 @@ export default {
if
(
type
==
1
)
{
this
.
input_flag_position_name
=
true
;
this
.
getData
();
//再次获取焦点
this
.
isFocus
=
false
;
setTimeout
(()
=>
{
this
.
isFocus
=
true
;
this
.
$forceUpdate
();
},
1500
);
}
else
if
(
type
==
2
)
{
//入库批次号 开启批量扫描
if
(
this
.
is_batch
)
{
...
...
pages/stockRecheck/sort.vue
View file @
d56ebc7d
...
...
@@ -957,9 +957,15 @@ export default {
});
this
.
request
(
URL
,
'POST'
,
{
page
:
this
.
page
,
limit
:
this
.
limit
,
...
this
.
searchParams
},
false
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
;
this
.
filter_list
=
createArray
(
this
.
list
.
length
,
false
);
typeof
callback
==
'function'
&&
callback
(
res
.
data
.
list
);
if
(
res
.
data
.
list
.
length
>
0
)
{
//过滤出待复核不为0的数据
var
filteredList
=
res
.
data
.
list
.
filter
(
item
=>
item
.
no_recheck_qty
>
0
);
this
.
list
=
filteredList
;
this
.
filter_list
=
createArray
(
filteredList
.
length
,
false
);
typeof
callback
==
'function'
&&
callback
(
filteredList
);
}
else
{
this
.
list
=
[];
}
}
else
{
uni
.
showToast
({
title
:
res
.
msg
,
...
...
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