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
eccf3abe
Commit
eccf3abe
authored
Jan 03, 2024
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
检验流程界面中,增加验收单号一列:当填写验收单号后,点击保存,回显到主界面中;
parent
c6135f30
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
index.vue
...ts/components/PurchasingWarehousingProcess_view/index.vue
+8
-1
No files found.
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingProcess_view/index.vue
View file @
eccf3abe
...
...
@@ -145,6 +145,7 @@ export default {
]
}
}},
{
title
:
'验收单编号'
,
key
:
'testTestNo'
,
align
:
'center'
,
minWidth
:
'120'
,
show
:
true
,
sortable
:
true
},
{
title
:
'单据编号'
,
key
:
'inventoryReq.reqNo'
,
width
:
'120'
,
align
:
'center'
,
headerAlign
:
'center'
},
{
title
:
'库位'
,
...
...
@@ -285,8 +286,10 @@ export default {
]
if
((
this
.
basicData
.
subTypeName
===
'InStoragePurchaseItem'
||
this
.
basicData
.
subTypeName
===
'InStorageRecallItem'
||
this
.
basicData
.
subTypeName
===
'InStorageExpireItem'
)
&&
this
.
basicData
.
state
===
'In_Confirm'
)
{
return
tableConlumn
}
else
{
}
else
if
(
this
.
basicData
.
state
===
'Material_Check'
)
{
return
tableConlumn
.
filter
(
item
=>
item
.
title
!==
'库位'
)
}
else
{
return
tableConlumn
.
filter
(
item
=>
item
.
title
!==
'库位'
&&
item
.
title
!==
'验收单编号'
)
}
}
},
...
...
@@ -458,9 +461,13 @@ export default {
tableData
.
forEach
((
item
,
i
)
=>
{
item
.
parentIndex
=
i
+
1
const
targetInventory
=
this
.
$utils
.
getTargetJobResponses
(
item
,
'JobResponseInEntry'
)
const
testJobResponse
=
this
.
$utils
.
getTargetJobResponses
(
item
,
'JobResponseInTest'
)
if
(
targetInventory
)
{
item
.
exWorkUnitName
=
targetInventory
.
extWorkUnit
&&
targetInventory
.
extWorkUnit
.
extcode
||
''
}
if
(
testJobResponse
)
{
item
.
testTestNo
=
testJobResponse
.
testNo
}
if
(
item
.
children
)
{
item
.
children
.
forEach
((
child
,
j
)
=>
{
child
.
parentIndex
=
item
.
parentIndex
+
'.'
+
(
j
+
1
)
...
...
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