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
4601cdaf
Commit
4601cdaf
authored
Jan 02, 2024
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
验收入库明细增加字段,验收单类型增加过滤
parent
6c8cedbc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
64 additions
and
1 deletion
+64
-1
index.vue
...ateComponents/components/InStorageRecallItemCom/index.vue
+8
-0
index.vue
...nents/components/PurchasingWarehousingNewOrEdit/index.vue
+19
-1
index.vue
...ponents/components/PurchasingWarehousingProcess/index.vue
+8
-0
index.vue
...ts/components/PurchasingWarehousingProcess_view/index.vue
+8
-0
index.vue
...Components/components/PurchasingWarehousingView/index.vue
+21
-0
No files found.
applications/dee-mes/src/privateComponents/components/InStorageRecallItemCom/index.vue
View file @
4601cdaf
...
...
@@ -422,6 +422,14 @@ export default {
return
value
}
},
{
title
:
'技术条件'
,
width
:
'150'
,
key
:
'modelNo'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
extMaterial
?
row
.
extMaterial
.
techSpec
:
''
return
value
}
},
{
title
:
'到货标准/图号'
,
key
:
'arrivedDrawNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'到货版次'
,
key
:
'arrivalVer'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'系列号/序列号'
,
key
:
'serialNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'机型'
,
key
:
'airModel'
,
headerAlign
:
'center'
},
{
title
:
'架次'
,
key
:
'sorties'
,
headerAlign
:
'center'
},
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingNewOrEdit/index.vue
View file @
4601cdaf
...
...
@@ -423,6 +423,14 @@ export default {
return
value
}
},
{
title
:
'技术条件'
,
width
:
'150'
,
key
:
'modelNo'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
extMaterial
?
row
.
extMaterial
.
techSpec
:
''
return
value
}
},
{
title
:
'到货标准/图号'
,
key
:
'arrivedDrawNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'到货版次'
,
key
:
'arrivalVer'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'系列号/序列号'
,
key
:
'serialNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'机型'
,
key
:
'airModel'
,
headerAlign
:
'center'
},
{
title
:
'架次'
,
key
:
'sorties'
,
headerAlign
:
'center'
},
...
...
@@ -624,7 +632,17 @@ export default {
const
param
=
{
'pageFrom'
:
1
,
'pageSize'
:
9999
,
'searchItems'
:
{
'items'
:
[{
'fieldName'
:
'dictState'
,
'operator'
:
'EQ'
,
'value'
:
'ENABLE'
},
{
'fieldName'
:
'dictCode'
,
'operator'
:
'EQ'
,
'value'
:
'BillType'
}]
},
'sortItem'
:
[{
'fieldName'
:
'dictSeq'
,
'sortOrder'
:
'asc'
}]
}
post
(
'DictData/search'
,
param
).
then
(
res
=>
{
this
.
formData
[
0
].
data
.
forEach
(
item
=>
{
item
.
key
===
'billType'
&&
(
item
.
component
.
options
=
res
.
items
.
content
.
map
(
row
=>
{
return
{
value
:
row
.
dictKey
,
label
:
row
.
dictValue
}
}))
if
(
item
.
key
===
'billType'
)
{
item
.
component
.
options
=
[]
res
.
items
.
content
.
map
(
row
=>
{
if
(
row
.
dictValue
!==
'领用出库'
&&
row
.
dictValue
!==
'供外出库'
)
{
item
.
component
.
options
.
push
(
{
value
:
row
.
dictKey
,
label
:
row
.
dictValue
}
)
}
}
)
}
})
}).
catch
((
err
)
=>
{
console
.
log
(
err
)
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingProcess/index.vue
View file @
4601cdaf
...
...
@@ -77,6 +77,14 @@ export default {
return
value
}
},
{
title
:
'技术条件'
,
width
:
'150'
,
key
:
'modelNo'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
extMaterial
?
row
.
extMaterial
.
techSpec
:
''
return
value
}
},
{
title
:
'到货标准/图号'
,
key
:
'arrivedDrawNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'到货版次'
,
key
:
'arrivalVer'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'系列号/序列号'
,
key
:
'serialNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'机型'
,
key
:
'airModel'
,
align
:
'center'
,
headerAlign
:
'center'
},
{
title
:
'架次'
,
key
:
'sorties'
,
align
:
'center'
,
headerAlign
:
'center'
},
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingProcess_view/index.vue
View file @
4601cdaf
...
...
@@ -188,6 +188,14 @@ export default {
return
value
}
},
{
title
:
'技术条件'
,
width
:
'150'
,
key
:
'modelNo'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
extMaterial
?
row
.
extMaterial
.
techSpec
:
''
return
value
}
},
{
title
:
'到货标准/图号'
,
key
:
'arrivedDrawNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'到货版次'
,
key
:
'arrivalVer'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'系列号/序列号'
,
key
:
'serialNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'机型'
,
key
:
'airModel'
,
align
:
'center'
,
headerAlign
:
'center'
},
{
title
:
'架次'
,
key
:
'sorties'
,
align
:
'center'
,
headerAlign
:
'center'
},
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingView/index.vue
View file @
4601cdaf
...
...
@@ -45,6 +45,27 @@ export default {
return
value
}
},
{
title
:
'名称'
,
key
:
'resName'
,
width
:
'120'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
resName
?
row
.
resName
:
row
.
extMaterial
?
row
.
extMaterial
.
resName
:
''
return
value
}
},
{
title
:
'牌号/型号/件号'
,
width
:
'150'
,
key
:
'modelNo'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
extMaterial
?
row
.
extMaterial
.
modelNo
:
''
return
value
}
},
{
title
:
'技术条件'
,
width
:
'150'
,
key
:
'modelNo'
,
headerAlign
:
'center'
,
formatter
:
(
row
,
column
,
cellValue
,
index
)
=>
{
const
value
=
row
.
extMaterial
?
row
.
extMaterial
.
techSpec
:
''
return
value
}
},
{
title
:
'到货标准/图号'
,
key
:
'arrivedDrawNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'到货版次'
,
key
:
'arrivalVer'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'系列号/序列号'
,
key
:
'serialNo'
,
width
:
'150'
,
headerAlign
:
'center'
},
{
title
:
'机型'
,
key
:
'airModel'
,
align
:
'center'
,
headerAlign
:
'center'
},
{
title
:
'架次'
,
key
:
'sorties'
,
align
:
'center'
,
headerAlign
:
'center'
},
{
...
...
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