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
c3d623f4
Commit
c3d623f4
authored
Apr 12, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改归信息,理货储位显示去重
parent
5cf409e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
startPacking.vue
...ews/ecw/box/shippingSea/nodePage/cabinet/startPacking.vue
+12
-1
index.vue
src/views/ecw/box/shippingSea/nodePage/tally/index.vue
+12
-1
No files found.
src/views/ecw/box/shippingSea/nodePage/cabinet/startPacking.vue
View file @
c3d623f4
...
...
@@ -244,6 +244,7 @@
import
dayjs
from
"
dayjs
"
;
import
supplementOrder
from
"
./supplementOrder.vue
"
;
import
{
getCabinetPage
}
from
"
@/api/ecw/cabinet
"
;
import
{
getbox
}
from
"
@/api/ecw/box
"
;
import
{
loadSecGoodsList
,
orderTagList
,
...
...
@@ -333,6 +334,7 @@ export default {
selectedUsers
:
[],
// 订单信息
boxOrderInfo
:
{},
newshipmentObj
:
{}
};
},
created
()
{
...
...
@@ -341,9 +343,16 @@ export default {
getCabinetPage
(
null
).
then
((
response
)
=>
{
this
.
cabinetList
=
response
.
data
.
list
;
});
this
.
getBoxInfo
()
},
methods
:
{
getTotlContent
,
getBoxInfo
()
{
getbox
(
this
.
shipmentObj
.
id
).
then
((
res
)
=>
{
const
{
data
}
=
res
;
this
.
newshipmentObj
=
data
??
{};
});
},
/* 装柜部分列表 */
getLoadSecGoodsList
()
{
loadSecGoodsList
({
shipmentId
:
this
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
...
...
@@ -419,7 +428,8 @@ export default {
case
"
modifyCabinet
"
:
this
.
$set
(
this
.
dialogConfig
,
"
fullscreen
"
,
false
);
this
.
modifyCabinetObj
=
{};
this
.
$set
(
this
.
modifyCabinetObj
,
'
cabinetId
'
,
this
.
shipmentObj
.
cabinetId
)
this
.
$set
(
this
.
modifyCabinetObj
,
'
cabinetId
'
,
this
.
newshipmentObj
.
cabinetId
)
this
.
$set
(
this
.
modifyCabinetObj
,
'
cubNo
'
,
this
.
newshipmentObj
.
cubNo
)
break
;
case
"
splitOrder
"
:
this
.
$set
(
this
.
dialogConfig
,
"
fullscreen
"
,
true
);
...
...
@@ -535,6 +545,7 @@ export default {
};
boxUpdate
(
params
).
then
((
res
)
=>
{
serviceMsg
(
res
,
this
);
this
.
getBoxInfo
()
this
.
closeDialog2
();
});
},
...
...
src/views/ecw/box/shippingSea/nodePage/tally/index.vue
View file @
c3d623f4
...
...
@@ -73,7 +73,11 @@
<el-table-column
:label=
"$t('重量')"
align=
"center"
prop=
"warehouseInInfo.weight"
>
</el-table-column>
<el-table-column
:label=
"$t('数量(个)')"
align=
"center"
prop=
"quantity"
></el-table-column>
<el-table-column
:label=
"$t('储位')"
align=
"center"
prop=
"positionNo"
width=
"250px"
></el-table-column>
<el-table-column
:label=
"$t('储位')"
align=
"center"
prop=
"positionNo"
width=
"250px"
>
<
template
slot-scope=
"scope"
>
{{
notset
(
scope
.
row
.
positionNo
)
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('状态')"
align=
"center"
prop=
"tallyStatus"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
tallyStatus
===
1
?
$t
(
'
已理货
'
)
:
$t
(
'
未理货
'
)
}}
...
...
@@ -150,6 +154,13 @@ export default {
methods
:
{
// 格式化日期
formatDate
,
//去重
notset
(
string
){
if
(
!
string
)
return
string
let
arr
=
string
.
split
(
'
,
'
)
arr
=
arr
.
filter
((
item
,
index
)
=>
{
return
arr
.
indexOf
(
item
)
==
index
})
return
arr
.
toString
()
},
// 查询理货列表
getList
()
{
getTallyList
({
shipmentId
:
this
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
...
...
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