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
3dbfd88a
Commit
3dbfd88a
authored
Aug 31, 2023
by
xioln
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
问题修改
parent
2d7d28d9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
7 deletions
+18
-7
equipmenCheckNo.vue
...ts/JobResponseInTestProcess/component/equipmenCheckNo.vue
+1
-0
materialCheckNo.vue
...ts/JobResponseInTestProcess/component/materialCheckNo.vue
+1
-0
outSourceCheckNo.vue
...s/JobResponseInTestProcess/component/outSourceCheckNo.vue
+1
-0
index.vue
...eComponents/components/JobResponseInTestProcess/index.vue
+0
-3
index.vue
...ponents/components/PurchasingWarehousingProcess/index.vue
+14
-3
index.vue
...nents/components/WarehousingConfirmationConfirm/index.vue
+1
-1
No files found.
applications/dee-mes/src/privateComponents/components/JobResponseInTestProcess/component/equipmenCheckNo.vue
View file @
3dbfd88a
...
...
@@ -346,6 +346,7 @@ export default {
this
.
$refs
.
form
.
validate
((
isok
)
=>
{
if
(
isok
)
{
this
.
$api
.
recursion
(
'JobResponseInTest'
,
params
).
then
(
res
=>
{
this
.
$utils
.
showMessageSuccess
(
'保存成功!'
)
resolve
(
true
)
}).
catch
(()
=>
{
resolve
(
false
)
...
...
applications/dee-mes/src/privateComponents/components/JobResponseInTestProcess/component/materialCheckNo.vue
View file @
3dbfd88a
...
...
@@ -931,6 +931,7 @@ export default {
this
.
$refs
.
form
.
validate
((
isok
)
=>
{
if
(
isok
)
{
this
.
$api
.
recursion
(
'JobResponseInTest'
,
params
).
then
(
res
=>
{
this
.
$utils
.
showMessageSuccess
(
'保存成功!'
)
resolve
(
true
)
}).
catch
(()
=>
{
resolve
(
false
)
...
...
applications/dee-mes/src/privateComponents/components/JobResponseInTestProcess/component/outSourceCheckNo.vue
View file @
3dbfd88a
...
...
@@ -316,6 +316,7 @@ export default {
this
.
$refs
.
form
.
validate
((
isok
)
=>
{
if
(
isok
)
{
this
.
$api
.
recursion
(
'JobResponseInTest'
,
params
).
then
(
res
=>
{
this
.
$utils
.
showMessageSuccess
(
'保存成功!'
)
resolve
(
true
)
}).
catch
(()
=>
{
resolve
(
false
)
...
...
applications/dee-mes/src/privateComponents/components/JobResponseInTestProcess/index.vue
View file @
3dbfd88a
...
...
@@ -58,7 +58,6 @@ export default {
// 初始化数据
},
mounted
()
{
console
.
log
(
'this.basicData'
,
this
.
basicData
)
this
.
basicDataId
=
this
.
basicData
.
id
this
.
inventoryReqId
=
this
.
basicData
.
inventoryReqId
this
.
getInventoryRequest
(
this
.
basicData
.
inventoryReqId
)
...
...
@@ -66,7 +65,6 @@ export default {
methods
:
{
getInventoryRequest
(
id
)
{
get
(
`InventoryRequest/
${
id
}
`
).
then
(
res
=>
{
console
.
log
(
'getInventoryRequest'
,
res
)
const
type
=
res
.
items
.
billType
// switch (type) {
// case '器材':
...
...
@@ -125,7 +123,6 @@ export default {
]
}
post
(
'JobResponseInTest/search'
,
param
).
then
(
res
=>
{
console
.
log
(
'data'
,
res
)
const
data
=
res
.
items
.
content
[
0
]
this
.
data
=
data
this
.
type
=
type
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingProcess/index.vue
View file @
3dbfd88a
...
...
@@ -122,11 +122,22 @@ export default {
// this.timerId = null
// }
// }, 200)
this
.
searchInStorageRequestItem
(
this
.
basicData
.
id
)
if
(
this
.
basicData
.
subTypeName
===
'InStoragePurchase'
||
this
.
basicData
.
subTypeName
===
'InStorageExpire'
||
this
.
basicData
.
subTypeName
===
'InStorageRecall'
)
{
this
.
$nextTick
(()
=>
{
if
(
this
.
basicData
.
inStorageRequestItems
[
0
])
{
this
.
searchInStorageRequestItem
(
this
.
basicData
.
inStorageRequestItems
[
0
].
inventoryReqId
,
'inventoryReq.id'
)
}
})
}
else
{
this
.
searchInStorageRequestItem
(
this
.
basicData
.
id
,
'id'
)
}
},
methods
:
{
// 编辑采购入库明细查询InStorageRequestItem/search
searchInStorageRequestItem
(
id
)
{
searchInStorageRequestItem
(
id
,
fieldName
)
{
const
param
=
{
'rootCondition'
:
{
'pageFrom'
:
1
,
...
...
@@ -136,7 +147,7 @@ export default {
{
'items'
:
[
{
'fieldName'
:
'id'
,
'fieldName'
:
fieldName
,
'operator'
:
'EQ'
,
'value'
:
id
},
...
...
applications/dee-mes/src/privateComponents/components/WarehousingConfirmationConfirm/index.vue
View file @
3dbfd88a
...
...
@@ -177,6 +177,7 @@ export default {
}
this
.
$api
.
recursion
(
'JobResponseInStorage'
,
params
).
then
(
res
=>
{
this
.
$utils
.
showMessageSuccess
(
'保存成功'
)
this
.
searchInStorageRequestItem
(
this
.
basicData
.
id
)
// this.extWorkUnitName = extWorkUnitId.split('+')[1]
})
}
...
...
@@ -262,7 +263,6 @@ export default {
}
},
created
()
{
console
.
log
(
'basicData'
,
{
...
this
.
basicData
})
// 初始化数据
// this.searchInStorageRequestItem(this.basicData.businessObject.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