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
2be30583
Commit
2be30583
authored
Sep 05, 2022
by
huhaiqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出货单功能补全
parent
0e484bba
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
89 additions
and
129 deletions
+89
-129
index.vue
src/components/WarehouseAreaDialog/index.vue
+5
-1
startPacking.vue
...ews/ecw/box/shippingSea/nodePage/cabinet/startPacking.vue
+1
-1
supplementOrder.vue
.../ecw/box/shippingSea/nodePage/cabinet/supplementOrder.vue
+61
-119
preinstall.vue
src/views/ecw/box/shippingSea/nodePage/preinstall.vue
+7
-5
batchTally.vue
src/views/ecw/box/shippingSea/nodePage/tally/batchTally.vue
+3
-1
startUnloading.vue
...ecw/box/shippingSea/nodePage/unloading/startUnloading.vue
+12
-2
No files found.
src/components/WarehouseAreaDialog/index.vue
View file @
2be30583
...
@@ -67,6 +67,10 @@ export default {
...
@@ -67,6 +67,10 @@ export default {
cityId
:
{
cityId
:
{
type
:
Number
,
type
:
Number
,
default
:
undefined
default
:
undefined
},
warehouseId
:
{
type
:
Number
,
default
:
undefined
}
}
},
},
...
@@ -87,7 +91,7 @@ export default {
...
@@ -87,7 +91,7 @@ export default {
if
(
val
)
{
if
(
val
)
{
this
.
opened
=
true
this
.
opened
=
true
getByWarehouseId
({
cityId
:
this
.
cityId
}).
then
(
r
=>
{
getByWarehouseId
({
cityId
:
this
.
cityId
,
warehouseId
:
this
.
warehouseId
}).
then
(
r
=>
{
const
area
=
r
.
data
const
area
=
r
.
data
area
.
forEach
(
e
=>
{
area
.
forEach
(
e
=>
{
// 仓库
// 仓库
...
...
src/views/ecw/box/shippingSea/nodePage/cabinet/startPacking.vue
View file @
2be30583
...
@@ -547,7 +547,7 @@ export default {
...
@@ -547,7 +547,7 @@ export default {
let
count
=
0
;
let
count
=
0
;
if
(
Array
.
isArray
(
this
.
listData
))
{
if
(
Array
.
isArray
(
this
.
listData
))
{
this
.
listData
.
forEach
((
item
)
=>
{
this
.
listData
.
forEach
((
item
)
=>
{
const
{
sectionOrderList
}
=
item
;
const
{
sectionOrderList
=
[]
}
=
item
;
sectionOrderList
.
forEach
((
item
)
=>
{
sectionOrderList
.
forEach
((
item
)
=>
{
count
=
count
+
item
.
installNum
;
count
=
count
+
item
.
installNum
;
});
});
...
...
src/views/ecw/box/shippingSea/nodePage/cabinet/supplementOrder.vue
View file @
2be30583
This diff is collapsed.
Click to expand it.
src/views/ecw/box/shippingSea/nodePage/preinstall.vue
View file @
2be30583
...
@@ -511,11 +511,13 @@ export default {
...
@@ -511,11 +511,13 @@ export default {
},
},
/* 增加部分 */
/* 增加部分 */
addPart
()
{
addPart
()
{
createSection
({
shipmentId
:
this
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
createSection
({
shipmentId
:
this
.
shipmentObj
.
id
,
isCover
:
0
}).
then
(
serviceMsg
(
res
,
this
).
then
(()
=>
{
(
res
)
=>
{
this
.
getSecGoods
();
serviceMsg
(
res
,
this
).
then
(()
=>
{
});
this
.
getSecGoods
();
});
});
}
);
},
},
/* 删除部分 */
/* 删除部分 */
deletePart
(
part
)
{
deletePart
(
part
)
{
...
...
src/views/ecw/box/shippingSea/nodePage/tally/batchTally.vue
View file @
2be30583
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
<el-button
size=
"small"
@
click=
"$emit('closeDialog')"
>
关闭
</el-button>
<el-button
size=
"small"
@
click=
"$emit('closeDialog')"
>
关闭
</el-button>
</el-row>
</el-row>
<warehouse-area-dialog
ref=
"area"
:visible.sync=
"visible"
v-model=
"storageSpaces"
:order-id=
"orderId"
:modal-append-to-body=
false
append-to-body
/>
<warehouse-area-dialog
ref=
"area"
:visible.sync=
"visible"
v-model=
"storageSpaces"
:order-id=
"orderId"
:
warehouseId=
"warehouseId"
:
modal-append-to-body=
false
append-to-body
/>
</div>
</div>
</
template
>
</
template
>
...
@@ -50,6 +50,8 @@ export default {
...
@@ -50,6 +50,8 @@ export default {
orderId
:
-
1
,
orderId
:
-
1
,
// 仓位数据
// 仓位数据
storageList
:
deepClone
(
this
.
tallyRows
),
storageList
:
deepClone
(
this
.
tallyRows
),
// 仓库id
warehouseId
:
this
.
$attrs
.
shipmentObj
.
startWarehouseId
,
};
};
},
},
methods
:
{
methods
:
{
...
...
src/views/ecw/box/shippingSea/nodePage/unloading/startUnloading.vue
View file @
2be30583
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
<div
class=
"label-font"
>
<div
class=
"label-font"
>
<p>
<p>
<span>
已卸:
</span>
<span>
已卸:
</span>
<span>
无返回
</span>
<span>
{{getUnLoadNumCount}}
</span>
</p>
</p>
</div>
</div>
</el-row>
</el-row>
...
@@ -253,7 +253,7 @@ export default {
...
@@ -253,7 +253,7 @@ export default {
const
{
shipmentObj
}
=
this
.
$attrs
;
const
{
shipmentObj
}
=
this
.
$attrs
;
approvalCancel
({
approvalCancel
({
applyReason
:
"
取消审核
"
,
applyReason
:
"
取消审核
"
,
id
:
shipmentObj
[
'
cabinetUnloadApprovalInfo
'
].
id
,
id
:
shipmentObj
[
"
cabinetUnloadApprovalInfo
"
].
id
,
shipmentId
:
shipmentObj
.
id
,
shipmentId
:
shipmentObj
.
id
,
}).
then
((
res
)
=>
{
}).
then
((
res
)
=>
{
serviceMsg
(
res
,
this
).
then
(()
=>
{
serviceMsg
(
res
,
this
).
then
(()
=>
{
...
@@ -277,6 +277,16 @@ export default {
...
@@ -277,6 +277,16 @@ export default {
return
getTotlContent
(
secStatistics
);
return
getTotlContent
(
secStatistics
);
}
}
},
},
/* 已卸总数 */
getUnLoadNumCount
()
{
let
count
=
0
;
if
(
this
.
pageData
.
sectionOrderList
)
{
this
.
pageData
.
sectionOrderList
.
forEach
((
item
)
=>
{
count
=
count
+
item
.
unloadNum
;
});
}
return
count
;
},
},
},
};
};
</
script
>
</
script
>
...
...
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