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
a3fed7c8
Commit
a3fed7c8
authored
Aug 17, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
预订仓计划修改
parent
e6337da4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
7 deletions
+33
-7
futureBox.js
src/api/ecw/futureBox.js
+9
-0
indexFutureBox.vue
src/views/ecw/box/indexFutureBox.vue
+24
-7
No files found.
src/api/ecw/futureBox.js
View file @
a3fed7c8
...
...
@@ -103,4 +103,13 @@ export function getWarehousingVolume(params){
})
}
// 获取装柜或出仓重量
export
function
getBoxedWeight
(
params
){
return
request
({
url
:
'
/ecw/future-box/getBoxedWeight
'
,
method
:
'
get
'
,
params
})
}
src/views/ecw/box/indexFutureBox.vue
View file @
a3fed7c8
...
...
@@ -93,7 +93,7 @@
{{
row
.
loadingNumber
||
0
}}
</
template
>
</el-table-column>
<el-table-column
label=
"装柜或出仓重量"
>
<el-table-column
label=
"装柜或出仓重量"
prop=
"loadingWeight"
>
</el-table-column>
<el-table-column
:label=
"$t('创建时间')"
align=
"center"
prop=
"createTime"
width=
"180"
>
...
...
@@ -108,11 +108,9 @@
<div>
{{
row
.
hqNumber
}}
个40HQ
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('未来计划
方数
')"
align=
"center"
prop=
"futurePlanNumber"
/>
<el-table-column
:label=
"$t('未来实际
方数
')"
align=
"center"
prop=
"actualNumber"
/>
<el-table-column
:label=
"$t('未来计划')"
align=
"center"
prop=
"futurePlanNumber"
/>
<el-table-column
:label=
"$t('未来实际')"
align=
"center"
prop=
"actualNumber"
/>
<el-table-column
:label=
"$t('创建人')"
align=
"center"
prop=
"createName"
/>
<el-table-column
:label=
"$t('未来计划')"
align=
"center"
/>
<el-table-column
:label=
"$t('未来实际')"
align=
"center"
/>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
...
...
@@ -167,7 +165,7 @@
{{form.loadingNumber}} m³
</el-form-item>
<el-form-item
:label=
"$t('装柜或出仓重量')"
>
{{form.loading
Number
}} kG
{{form.loading
Weight
}} kG
</el-form-item>
<el-form-item
label=
""
>
...
...
@@ -198,7 +196,21 @@
</template>
<
script
>
import
{
createFutureBox
,
updateFutureBox
,
deleteFutureBox
,
getFutureBox
,
getFutureBoxPage
,
exportFutureBoxExcel
,
getBoxedVolume
,
getToBeWareHousedVolume
,
getWareHousedVolume
,
getExceptionVolume
,
getOrderReportVolume
,
getWarehousingVolume
}
from
"
@/api/ecw/futureBox
"
;
import
{
createFutureBox
,
updateFutureBox
,
deleteFutureBox
,
getFutureBox
,
getFutureBoxPage
,
exportFutureBoxExcel
,
getBoxedVolume
,
getToBeWareHousedVolume
,
getWareHousedVolume
,
getExceptionVolume
,
getOrderReportVolume
,
getWarehousingVolume
,
getBoxedWeight
}
from
"
@/api/ecw/futureBox
"
;
import
{
getCabinetPage
}
from
"
@/api/ecw/cabinet
"
;
import
{
getChannelList
}
from
'
@/api/ecw/channel
'
;
import
{
getWarehouseList
}
from
"
@/api/ecw/warehouse
"
...
...
@@ -395,6 +407,10 @@ export default {
getWarehousingVolume
(
data
).
then
(
res
=>
{
this
.
$set
(
this
.
form
,
'
warehousingNumber
'
,
res
.
data
||
0
)
})
// 获取装柜出货重量
getBoxedWeight
(
data
).
then
(
res
=>
{
this
.
$set
(
this
.
form
,
'
loadingWeight
'
,
res
.
data
||
0
)
})
},
setDefaultVolume
(){
this
.
$set
(
this
.
form
,
'
loadingNumber
'
,
0
)
...
...
@@ -442,6 +458,7 @@ export default {
actualNumber
:
undefined
,
shippingChannelId
:
undefined
,
status
:
undefined
,
loadingWeight
:
undefined
,
};
this
.
resetForm
(
"
form
"
);
},
...
...
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