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
688c7c66
Commit
688c7c66
authored
Feb 14, 2025
by
honghy
Committed by
wux
Feb 26, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求102 PDA、后台修改储位和影像,不更新价格
parent
dda03ec7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
7 deletions
+35
-7
en_US.json
src/i18n/languages/en_US.json
+9
-1
Warehouse.vue
src/views/ecw/order/warehousing/components/Warehouse.vue
+11
-5
index.vue
src/views/ecw/order/warehousing/index.vue
+15
-1
No files found.
src/i18n/languages/en_US.json
View file @
688c7c66
...
...
@@ -4946,5 +4946,13 @@
"货物状态"
:
"Goods Status"
,
"厂家"
:
"Manufacturer"
,
"厂家电话"
:
"Manufacturer Phone"
,
"预计发货时间"
:
"Estimated Delivery Time"
"预计发货时间"
:
"Estimated Delivery Time"
,
"修改入仓信息"
:
"Modify Warehouse Information"
,
"修改储位和影像"
:
"Modify Storage Location and Image"
,
"运输方式-渠道/目的仓"
:
"Transportation Method - Channel/Destination Warehouse"
,
"上次跟进类型"
:
"Last Follow-up Type"
,
"上次根进时间"
:
"Last Follow-up Time"
,
"上次跟进内容"
:
"Last Follow-up Content"
,
"所报价格"
:
"Quoted Price"
,
"厂家/电话"
:
"Manufacturer/Phone"
}
src/views/ecw/order/warehousing/components/Warehouse.vue
View file @
688c7c66
...
...
@@ -5,7 +5,7 @@
<el-tabs
v-model=
"activeName"
type=
"card"
>
<el-tab-pane
:label=
"edit ? $t('货物修改') : $t('货物入仓')"
name=
"first"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"formRules"
label-width=
"80px"
>
<el-descriptions
border
:column=
"2"
>
<el-descriptions
border
:column=
"2"
:style=
"baseStyles"
>
<el-descriptions-item>
<template
slot=
"label"
><span
style=
"color: red"
>
*
</span>
{{
$t
(
"
中文品名
"
)
}}
</
template
>
<span
style=
"min-width: 200px; margin-right: 15px; display: inline-block"
>
...
...
@@ -42,7 +42,7 @@
>
Kg
</el-descriptions-item>
</el-descriptions>
<el-row>
<el-row
:style=
"baseStyles"
>
<el-col
:span=
"8"
>
<el-form-item
:label=
"$t('材质')"
style=
"margin-top: 20px"
>
<dict-selector
:type=
"DICT_TYPE.ECW_PRODUCT_MATERIAL"
v-model=
"form.material"
clearable
></dict-selector>
...
...
@@ -76,7 +76,7 @@
<el-button
style=
"float: right; margin-left: 15px"
size=
"mini"
type=
"primary"
icon=
"el-icon-minus"
circle
@
click=
"handleDelete"
:disabled=
"form.table.length < protectRowCount"
></el-button>
<el-button
style=
"float: right"
size=
"mini"
type=
"primary"
icon=
"el-icon-plus"
circle
@
click=
"handleAdd()"
></el-button>
</div>
<el-form
ref=
"tableForm"
:rules=
"tableFormRules"
:model=
"form"
size=
"mini"
>
<el-form
ref=
"tableForm"
:rules=
"tableFormRules"
:model=
"form"
size=
"mini"
:style=
"baseStyles"
>
<el-table
:data=
"form.table"
style=
"width: 100%"
>
<el-table-column
:label=
"$t('箱数')"
width=
"150px"
>
<
template
v-slot:header
>
<span
style=
"color: red"
>
*
</span>
{{
$t
(
"
箱数
"
)
}}
</
template
>
...
...
@@ -170,7 +170,9 @@
</el-table-column>
<el-table-column
:label=
"$t('储位')"
prop=
"orderLocationBackVOList"
width=
"150px"
>
<
template
v-slot=
"{ row, column, $index }"
>
<warehouse-area-select
v-if=
"visible"
v-model=
"form.table[$index].orderLocationBackVOList"
:order-id=
"orderId"
:order-item-id=
"warehousing.orderItemId"
:warehouse-in-id=
"form.table[$index].id"
:warehouse-id=
"warehouseId"
:is-editing=
"edit"
></warehouse-area-select>
<div
style=
"pointer-events: auto"
>
<warehouse-area-select
v-if=
"visible"
v-model=
"form.table[$index].orderLocationBackVOList"
:order-id=
"orderId"
:order-item-id=
"warehousing.orderItemId"
:warehouse-in-id=
"form.table[$index].id"
:warehouse-id=
"warehouseId"
:is-editing=
"edit"
></warehouse-area-select>
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('备注')"
>
...
...
@@ -485,6 +487,10 @@ export default {
},
props
:
{
baseStyles
:
{
type
:
Object
,
default
:
{}
},
title
:
{
type
:
String
,
default
:
undefined
...
...
@@ -782,7 +788,7 @@ export default {
this
.
$confirm
(
text
)
.
then
((
res
)
=>
{
this
.
visible
=
false
})
})
}
else
{
this
.
visible
=
false
}
...
...
src/views/ecw/order/warehousing/index.vue
View file @
688c7c66
...
...
@@ -101,7 +101,18 @@
:edit=
"true"
:order-item-a=
"order.orderItemVOList[$index]"
:order-item-b=
"orderItemList[$index]"
:title=
"$t('修改')"
:title=
"$t('修改入仓信息')"
:order=
"order"
:is-shipment=
"isShipment"
@
close=
"getList"
></warehouse>
<warehouse
v-if=
"isEdit"
:edit=
"true"
:order-item-a=
"order.orderItemVOList[$index]"
:order-item-b=
"orderItemList[$index]"
:base-styles=
"baseStyles"
:title=
"$t('修改储位和影像')"
:order=
"order"
:is-shipment=
"isShipment"
@
close=
"getList"
...
...
@@ -453,6 +464,9 @@ export default {
},
],
},
baseStyles
:
{
pointerEvents
:
'
none
'
},
};
},
...
...
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