Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
TFMOM
TF-MOM-WEB
Commits
c1077f57
Commit
c1077f57
authored
Sep 11, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EditReqAmount组件增加退库入库最大值校验
parent
c925ef3a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
index.vue
...teComponents/components/AddOutStorageUseDetails/index.vue
+1
-1
index.vue
.../src/privateComponents/components/EditReqAmount/index.vue
+8
-4
No files found.
applications/dee-mes/src/privateComponents/components/AddOutStorageUseDetails/index.vue
View file @
c1077f57
...
@@ -46,7 +46,7 @@ export default {
...
@@ -46,7 +46,7 @@ export default {
components
:
{
AddOutStorageUseDetailDialog
,
AdjustOccupyCom
},
components
:
{
AddOutStorageUseDetailDialog
,
AdjustOccupyCom
},
provide
()
{
// 用于报废领用申领数量编辑校验
provide
()
{
// 用于报废领用申领数量编辑校验
return
{
return
{
useRequestType
:
this
.
basicData
.
useRequestType
parentType_Inject
:
this
.
basicData
.
useRequestType
}
}
},
},
props
:
{
props
:
{
...
...
applications/dee-mes/src/privateComponents/components/EditReqAmount/index.vue
View file @
c1077f57
...
@@ -30,9 +30,9 @@ export default {
...
@@ -30,9 +30,9 @@ export default {
}
}
},
},
inject
:
{
inject
:
{
'
useRequestType
'
:
{
'
parentType_Inject
'
:
{
default
:
()
=>
{
default
:
()
=>
{
return
{
useRequestType
:
''
}
return
{
parentType_Inject
:
''
}
}
}
}
}
},
},
...
@@ -61,8 +61,12 @@ export default {
...
@@ -61,8 +61,12 @@ export default {
},
},
methods
:
{
methods
:
{
handleChange
()
{
handleChange
()
{
if
(
this
.
useRequestType
===
'scrapUse'
&&
this
.
form
.
extSupportingItemVO
&&
this
.
reqAmount
>
this
.
form
.
extSupportingItemVO
.
reqAmount
)
{
if
(
this
.
parentType_Inject
===
'scrapUse'
&&
this
.
form
.
extSupportingItemVO
&&
this
.
reqAmount
>
this
.
form
.
extSupportingItemVO
.
reqAmount
)
{
return
this
.
$utils
.
showMessageWarning
(
'当前物料可申领数量不足!'
)
this
.
maxNum
=
this
.
form
.
extSupportingItemVO
.
reqAmount
}
const
maxAmount
=
this
.
form
.
outsideAmount
-
this
.
form
.
backedAmount
-
this
.
form
.
backAmount
-
this
.
form
.
scrapCount
if
(
this
.
parentType_Inject
===
'退库入库'
&&
this
.
form
.
reqAmount
>
maxAmount
)
{
this
.
maxNum
=
maxAmount
}
}
this
.
$emit
(
'input'
,
this
.
reqAmount
)
this
.
$emit
(
'input'
,
this
.
reqAmount
)
if
(
this
.
form
.
id
)
{
if
(
this
.
form
.
id
)
{
...
...
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