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
1b87e668
Commit
1b87e668
authored
Aug 15, 2023
by
houjn@hikoon.cn
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
parents
eac32a12
88f596c9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
bankDetail.vue
src/views/ecw/financial/bankDetail.vue
+1
-1
Warehouse.vue
src/views/ecw/order/warehousing/components/Warehouse.vue
+14
-1
No files found.
src/views/ecw/financial/bankDetail.vue
View file @
1b87e668
...
...
@@ -23,7 +23,7 @@
<span>
{{ addForm.amount }}
</span>
</el-form-item>
<el-form-item
label-width=
"0px"
prop=
"currencyId"
>
<span>
({{getCurrencyLabel(
showC
urrencyId)}})
</span>
<span>
({{getCurrencyLabel(
addForm.c
urrencyId)}})
</span>
</el-form-item>
</div>
<el-form-item
...
...
src/views/ecw/order/warehousing/components/Warehouse.vue
View file @
1b87e668
...
...
@@ -445,7 +445,7 @@
<span
slot=
"footer"
>
<
template
v-if=
"!isEditing"
>
<el-button
@
click=
"handleClose"
>
{{
$t
(
'
关 闭
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"handleSubmit()"
>
{{
edit
?
$t
(
'
确认修改
'
)
:
$t
(
'
提 交
'
)
}}
</el-button>
<el-button
type=
"primary"
:loading=
"submitting"
@
click=
"handleSubmit()"
>
{{
edit
?
$t
(
'
确认修改
'
)
:
$t
(
'
提 交
'
)
}}
</el-button>
</
template
>
<
template
v-else
>
<el-button
type=
"primary"
@
click=
"$router.push('/bpm/process-instance/detail?id=' + formId)"
>
{{
$t
(
'
审核中
'
)
}}
</el-button>
...
...
@@ -643,6 +643,7 @@ export default {
getDictDatas
,
activeName
:
'
first
'
,
visible
:
false
,
submitting
:
false
,
form
:
{
table
:
[],
brandType
:
undefined
,
...
...
@@ -829,6 +830,7 @@ export default {
if
(
!
valid
||
!
valid1
)
{
return
}
this
.
submitting
=
true
return
orderWarehouseIn
({
...
this
.
form1
,
brandType
:
this
.
warehousing
.
brandType
,
...
...
@@ -844,12 +846,15 @@ export default {
}
})
}).
then
(
r
=>
{
this
.
submitting
=
false
if
(
r
.
data
)
{
this
.
$message
.
success
(
'
新增入仓成功
'
)
this
.
handleClose
()
}
else
{
this
.
$message
.
success
(
'
新增入仓失败
'
)
}
}).
catch
(()
=>
{
this
.
submitting
=
false
})
})
})
...
...
@@ -868,6 +873,7 @@ export default {
}
if
(
this
.
edit
)
{
// 入仓修改
this
.
submitting
=
true
return
orderWarehouseInUpdateApply
({
...
this
.
form
,
brandType
:
this
.
warehousing
.
brandType
,
...
...
@@ -888,15 +894,19 @@ export default {
}),
copyUserId
:
this
.
selectedUsers
}).
then
(
r
=>
{
this
.
submitting
=
false
if
(
r
.
data
)
{
this
.
$message
.
success
(
r
.
msg
||
'
入仓修改发起成功
'
)
this
.
handleClose
()
}
else
{
this
.
$message
.
success
(
r
.
msg
||
'
入仓修改发起失败
'
)
}
}).
catch
(()
=>
{
this
.
submitting
=
false
})
}
else
{
// 首次入仓、入仓补充
this
.
submitting
=
true
return
orderWarehouseIn
({
...
this
.
form
,
brandType
:
this
.
warehousing
.
brandType
,
...
...
@@ -913,12 +923,15 @@ export default {
}
}),
}).
then
(
r
=>
{
this
.
submitting
=
false
if
(
r
.
data
)
{
this
.
$message
.
success
(
'
入仓成功
'
)
this
.
handleClose
()
}
else
{
this
.
$message
.
success
(
'
入仓失败
'
)
}
}).
catch
(()
=>
{
this
.
submitting
=
false
})
}
})
...
...
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