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
4e78101e
Commit
4e78101e
authored
Oct 10, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
ce230711
d6b421f8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
24 deletions
+48
-24
index.vue
src/views/bpm/processInstance/index.vue
+2
-5
todo.vue
src/views/bpm/task/todo.vue
+2
-2
warehouseDetails.vue
src/views/ecw/order/components/warehouseDetails.vue
+8
-1
splitApply.vue
src/views/ecw/order/splitApply.vue
+15
-4
editDialog.vue
src/views/ecw/order/warehousing/components/editDialog.vue
+21
-12
No files found.
src/views/bpm/processInstance/index.vue
View file @
4e78101e
...
...
@@ -2,11 +2,8 @@
<div
class=
"app-container"
>
<!-- 搜索工作栏 -->
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"流程名"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入流程名"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"所属流程"
prop=
"processDefinitionId"
>
<el-input
v-model=
"queryParams.processDefinitionId"
placeholder=
"请输入流程定义的编号"
clearable
@
keyup.enter.native=
"handleQuery"
/>
<el-form-item
label=
"流程名称"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"流程名称"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"流程分类"
prop=
"category"
>
<el-select
v-model=
"queryParams.category"
placeholder=
"请选择流程分类"
clearable
>
...
...
src/views/bpm/task/todo.vue
View file @
4e78101e
...
...
@@ -2,8 +2,8 @@
<div
class=
"app-container"
>
<!-- 搜索工作栏 -->
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"
流程名
"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入
流程
名"
clearable
@
keyup.enter.native=
"handleQuery"
/>
<el-form-item
label=
"
任务名称
"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入
任务
名"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"流程分类"
prop=
"category"
>
<el-select
v-model=
"queryParams.category"
placeholder=
"请选择流程分类"
clearable
>
...
...
src/views/ecw/order/components/warehouseDetails.vue
View file @
4e78101e
...
...
@@ -133,7 +133,14 @@
<div
v-if=
"type === 4"
>
<p>
申请理由
</p>
<div>
{{ FeeDetails.details || '' }}
用户修改了订单中商品编号为【{{ FeeDetails.orderItemVOList[0].prodId }}】的【{{ FeeDetails.details.applyInfoVOList[0].newValue }}】信息:
<ol>
<
template
v-for=
"item in FeeDetails.details.applyInfoVOList"
>
<li
v-if=
"item.orgValue === undefined"
>
{{
item
.
name
}}
:
{{
item
.
newValue
}}
</li>
<li
v-else-if=
"item.newValue === undefined"
>
删除入仓
</li>
<li
v-else-if=
"item.newValue !== item.orgValue"
>
{{
item
.
name
}}
从【
{{
item
.
orgValue
}}
】改为【
{{
item
.
newValue
}}
】
</li>
</
template
>
</ol>
</div>
</div>
</div>
...
...
src/views/ecw/order/splitApply.vue
View file @
4e78101e
...
...
@@ -290,6 +290,7 @@ export default {
form
:{
},
importCityList
:[],
selectedUsers
:[],
shopOpen
:
false
,
...
...
@@ -318,7 +319,10 @@ export default {
},
created
()
{
this
.
getChannel
()
getWarehouseList
().
then
(
res
=>
this
.
tradeCityList
=
res
.
data
)
getWarehouseList
().
then
(
res
=>
{
this
.
tradeCityList
=
res
.
data
this
.
importCityList
=
this
.
tradeCityList
.
filter
(
item
=>
item
.
type
==
1
)
})
if
(
this
.
$route
.
query
.
orderId
)
{
this
.
queryParams
.
orderId
=
this
.
$route
.
query
.
orderId
}
...
...
@@ -352,9 +356,6 @@ export default {
},
getDictDatas
(){
return
getDictDatas
},
importCityList
(){
return
this
.
tradeCityList
.
filter
(
item
=>
item
.
type
==
1
)
}
},
methods
:
{
...
...
@@ -454,6 +455,16 @@ export default {
this
.
shopOpen
=
true
},
addSplit
(){
this
.
form
.
transportId
=
this
.
orderData
.
transportId
this
.
form
.
destWarehouseId
=
this
.
orderData
.
destWarehouseId
if
(
this
.
orderData
.
logisticsInfoDto
&&
this
.
orderData
.
logisticsInfoDto
.
destTitleZh
){
this
.
form
.
destWarehouseId
=
this
.
importCityList
.
find
(
item
=>
item
.
titleZh
==
this
.
orderData
.
logisticsInfoDto
.
destTitleZh
).
id
if
(
this
.
orderData
.
logisticsInfoDto
&&
this
.
orderData
.
logisticsInfoDto
.
channelId
){
this
.
form
.
channelId
=
this
.
orderData
.
logisticsInfoDto
.
channelId
}
}
this
.
open
=
true
},
changeProdTitleZh
(){
...
...
src/views/ecw/order/warehousing/components/editDialog.vue
View file @
4e78101e
...
...
@@ -372,20 +372,20 @@ export default {
opened
:
false
,
brandList
:
[],
form
:
{
"
brand
"
:
"
0
"
,
"
brandType
"
:
0
,
"
inTime
"
:
""
,
"
material
"
:
""
,
"
orderId
"
:
0
,
"
orderItemId
"
:
0
,
"
orderNo
"
:
""
,
//
"brand": "0",
//
"brandType": 0,
//
"inTime": "",
//
"material": "",
//
"orderId": 0,
//
"orderItemId": 0,
//
"orderNo": "",
"
orderWarehouseInItemDoList
"
:
[],
"
prodAttrIds
"
:
""
,
"
prodId
"
:
0
,
"
prodTitleEn
"
:
""
,
"
prodTitleZh
"
:
""
,
"
prodType
"
:
0
,
"
type
"
:
0
,
//
"prodTitleEn": "",
//
"prodTitleZh": "",
//
"prodType": 0,
//
"type": 0,
feeType
:
0
,
recordMode
:
undefined
},
...
...
@@ -533,7 +533,16 @@ export default {
orderId
:
this
.
warehousing
.
orderId
,
orderItemId
:
this
.
warehousing
.
orderItemId
,
orderNo
:
this
.
warehousing
.
orderNo
,
"
orderWarehouseInUpdateItemDoList
"
:
orderWarehouseInItemDoList
,
cartonsNum
:
this
.
warehousing
.
num
,
volume
:
this
.
warehousing
.
volume
.
toFixed
(
2
),
weight
:
this
.
warehousing
.
weight
.
toFixed
(
2
),
prodId
:
this
.
warehousing
.
prodId
,
"
orderWarehouseInUpdateItemDoList
"
:
this
.
tableData
.
map
(
e
=>
{
return
{
...
e
,
boxGauge
:
e
.
boxGauge1
+
'
*
'
+
e
.
boxGauge2
+
'
*
'
+
e
.
boxGauge3
}
}),
copyUserId
:
this
.
selectedUsers
}).
then
(
r
=>
{
if
(
r
.
data
)
{
...
...
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