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
ebdc95fc
authored
Apr 27, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
取消理货
parent
9388f1ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
3 deletions
pages/tallyReceive/record.vue
pages/tallyReceive/record.vue
View file @
ebdc95fc
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
<text
class=
"check-box-icon"
:class=
"{ curr: filter_list.length == filter_id.length }"
></text>
<text
class=
"check-box-icon"
:class=
"{ curr: filter_list.length == filter_id.length }"
></text>
<text
class=
"text"
>
全选
</text>
<text
class=
"text"
>
全选
</text>
</view>
</view>
<view
class=
"btn3 row rowCenter verCenter"
>
取消理货
</view>
<view
class=
"btn3 row rowCenter verCenter"
@
click=
"cancelTallyReceive()"
>
取消理货
</view>
<view
class=
"btn2 row rowCenter verCenter"
style=
"width: calc(100% - 308rpx);"
>
批量打印入库标签
</view>
<view
class=
"btn2 row rowCenter verCenter"
style=
"width: calc(100% - 308rpx);"
>
批量打印入库标签
</view>
</view>
</view>
<!-- 理货详情弹窗 -->
<!-- 理货详情弹窗 -->
...
@@ -235,7 +235,7 @@ export default {
...
@@ -235,7 +235,7 @@ export default {
filterChange
(
index
)
{
filterChange
(
index
)
{
this
.
$set
(
this
.
filter_list
,
index
,
(
this
.
filter_list
[
index
]
=
!
this
.
filter_list
[
index
]));
this
.
$set
(
this
.
filter_list
,
index
,
(
this
.
filter_list
[
index
]
=
!
this
.
filter_list
[
index
]));
let
filter_arr
=
this
.
findIndex
(
this
.
filter_list
,
true
);
let
filter_arr
=
this
.
findIndex
(
this
.
filter_list
,
true
);
this
.
filter_id
=
filter_arr
.
map
(
i
=>
this
.
list
[
i
].
stock_in_item
_id
);
this
.
filter_id
=
filter_arr
.
map
(
i
=>
this
.
list
[
i
].
tally
_id
);
},
},
/**
/**
* 全选
* 全选
...
@@ -245,7 +245,7 @@ export default {
...
@@ -245,7 +245,7 @@ export default {
this
.
filter_list
=
createArray
(
this
.
list
.
length
,
this
.
all_flag
);
this
.
filter_list
=
createArray
(
this
.
list
.
length
,
this
.
all_flag
);
if
(
this
.
all_flag
)
{
if
(
this
.
all_flag
)
{
this
.
filter_id
=
this
.
list
.
map
(
function
(
item
)
{
this
.
filter_id
=
this
.
list
.
map
(
function
(
item
)
{
return
item
.
stock_in_item
_id
;
return
item
.
tally
_id
;
});
});
}
else
{
}
else
{
this
.
filter_id
=
[];
this
.
filter_id
=
[];
...
@@ -309,6 +309,48 @@ export default {
...
@@ -309,6 +309,48 @@ export default {
});
});
}
}
});
});
},
/**
* 取消理货
*/
cancelTallyReceive
()
{
if
(
this
.
filter_id
.
length
==
0
)
{
uni
.
showToast
({
title
:
'请选择货品'
,
icon
:
'error'
});
return
false
;
}
uni
.
showModal
({
title
:
'提示'
,
content
:
'确定要取消理货吗?'
,
showCancel
:
true
,
success
:
res
=>
{
if
(
res
.
confirm
)
{
this
.
request
(
API
.
cancelTallyReceive
,
'POST'
,
{
tally_id
:
this
.
filter_id
.
join
(
','
)
},
false
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
uni
.
showToast
({
title
:
'取消理货成功'
,
icon
:
'success'
});
setTimeout
(()
=>
{
this
.
getData
();
this
.
filter_id
=
[];
},
2000
);
}
else
{
uni
.
showModal
({
title
:
'提示'
,
content
:
res
.
msg
,
showCancel
:
false
});
}
});
}
else
if
(
res
.
cancel
)
{
// 用户点击取消操作
console
.
log
(
'用户点击取消'
);
}
}
});
}
}
}
}
};
};
...
...
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