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
ae4593be
Commit
ae4593be
authored
Aug 17, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://94.191.100.41/tfmom/tf-mom-web
into dev
parents
7a81afb5
06ea74d7
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
206 additions
and
58 deletions
+206
-58
config.js
...mes/src/privateComponents/components/MBOMConfig/config.js
+0
-2
step.vue
...-mes/src/privateComponents/components/MBOMConfig/step.vue
+42
-13
unit.vue
...-mes/src/privateComponents/components/MBOMConfig/unit.vue
+6
-2
view.vue
...-mes/src/privateComponents/components/MBOMConfig/view.vue
+6
-2
index.vue
...ivateComponents/components/OutStorageExpireFlow/index.vue
+45
-17
storageDetailsCreateCom.vue
...arehousingNewOrEdit/component/storageDetailsCreateCom.vue
+1
-1
index.vue
...nents/components/PurchasingWarehousingNewOrEdit/index.vue
+1
-0
index.vue
.../assemblyPlanManagement/assemblyPlanMaintenance/index.vue
+2
-3
search.vue
...assemblyPlanManagement/assemblyPlanMaintenance/search.vue
+70
-4
gantt.vue
...s/assemblyPlanManagement/stationPlanMaintenance/gantt.vue
+33
-14
No files found.
applications/dee-mes/src/privateComponents/components/MBOMConfig/config.js
View file @
ae4593be
...
...
@@ -37,7 +37,6 @@ export default {
.
forEach
(
l
=>
{
if
(
l
.
isCritical
)
{
l
.
isCritical
=
false
this
.
gantt
.
updateLink
(
l
.
id
)
this
.
modifyLink
(
l
,
'MODIFY'
)
}
})
...
...
@@ -46,7 +45,6 @@ export default {
.
forEach
(
l
=>
{
if
(
!
l
.
isCritical
)
{
l
.
isCritical
=
true
this
.
gantt
.
updateLink
(
l
.
id
)
this
.
modifyLink
(
l
,
'MODIFY'
)
}
})
...
...
applications/dee-mes/src/privateComponents/components/MBOMConfig/step.vue
View file @
ae4593be
...
...
@@ -8,6 +8,7 @@
import
config
from
'./config'
import
data
from
'./data'
import
CsvExportor
from
'csv-exportor'
import
moment
from
'moment'
export
default
{
name
:
'TfMomWebStep'
,
mixins
:
[
config
,
data
],
...
...
@@ -259,25 +260,27 @@ export default {
links
:
[]
}
val
.
forEach
((
item
,
index
)
=>
{
const
link
=
item
.
extProcessExecutorRoutes
&&
item
.
extProcessExecutorRoutes
[
0
]
const
link
s
=
item
.
extProcessExecutorRoutes
params
.
data
.
push
({
index
:
index
+
1
,
text
:
item
.
serialNumber
,
id
:
item
.
id
,
parenId
:
link
&&
link
.
prevNodeId
||
''
,
parenId
:
''
,
start_date
:
'2007-1-1'
,
type
:
'task'
,
duration
:
item
.
workHour
?
Number
(
item
.
workHour
/
8
)
:
0
})
if
(
link
)
{
params
.
links
.
push
({
cid
:
link
.
id
,
tid
:
link
.
currNodeId
,
source
:
link
.
prevNodeId
,
target
:
link
.
currNodeId
,
type
:
'0'
,
isCritical
:
link
.
isCritical
if
(
links
)
{
links
.
forEach
(
link
=>
{
params
.
links
.
push
({
cid
:
link
.
id
,
tid
:
link
.
currNodeId
,
source
:
link
.
prevNodeId
,
target
:
link
.
currNodeId
,
type
:
'0'
,
isCritical
:
link
.
isCritical
})
})
}
})
...
...
@@ -325,6 +328,30 @@ export default {
const
header
=
[
'节点'
,
'站位号'
,
'工期(天)'
,
'前置'
]
CsvExportor
.
downloadCsv
(
tableData
,
{
header
},
'站位路线.csv'
)
},
calcCosthours
(
links
,
tasks
)
{
links
.
forEach
(
link
=>
{
const
cosLinks
=
links
.
filter
(
l
=>
Number
(
l
.
target
)
===
Number
(
link
.
target
))
if
(
cosLinks
.
length
===
1
)
{
return
true
}
const
peerTask
=
cosLinks
.
map
(
l
=>
{
const
task
=
tasks
.
find
(
t
=>
t
.
id
===
Number
(
l
.
source
))
return
{
linkId
:
l
.
id
,
end_date
:
task
&&
task
.
end_date
}
}).
sort
((
a
,
b
)
=>
a
.
end_date
-
b
.
end_date
)
const
lastDay
=
moment
(
peerTask
[
0
].
end_date
)
peerTask
.
forEach
(
l
=>
{
let
costHours
=
lastDay
.
diff
(
moment
(
l
.
end_date
),
'day'
)
costHours
=
Number
(
costHours
)
*
8
const
link
=
links
.
find
(
r
=>
r
.
id
===
l
.
linkId
)
if
(
link
)
{
link
.
costHours
=
costHours
}
})
})
},
save
()
{
if
(
this
.
loading
)
{
return
...
...
@@ -335,6 +362,7 @@ export default {
links
.
forEach
(
l
=>
{
l
.
isCritical
=
this
.
gantt
.
isCriticalLink
(
l
)
})
this
.
calcCosthours
(
links
,
tasks
)
const
params
=
this
.
ganttData
.
map
(
item
=>
{
const
routes
=
item
.
extProcessExecutorRoutes
?
item
.
extProcessExecutorRoutes
.
map
(
r
=>
{
return
{
...
...
@@ -343,8 +371,8 @@ export default {
}
})
:
[]
const
task
=
tasks
.
find
(
r
=>
r
.
id
===
item
.
id
)
const
link
=
links
.
find
(
r
=>
Number
(
r
.
target
)
===
item
.
id
)
if
(
link
)
{
const
_links
=
links
.
filter
(
r
=>
Number
(
r
.
target
)
===
item
.
id
)
_links
.
forEach
(
link
=>
{
routes
.
push
({
operator
:
'ADD'
,
subTypeName
:
'ExtProcessExecutorRoute'
,
...
...
@@ -352,9 +380,10 @@ export default {
currNodeIdType
:
'ExtPosition'
,
currNodeId
:
Number
(
link
.
target
),
prevNodeId
:
Number
(
link
.
source
),
costHours
:
link
.
costHours
,
isCritical
:
link
.
isCritical
})
}
}
)
return
{
id
:
item
.
id
,
...
...
applications/dee-mes/src/privateComponents/components/MBOMConfig/unit.vue
View file @
ae4593be
...
...
@@ -102,8 +102,12 @@ export default {
return
(
Number
(
workHour
||
0
)
*
3
*
60
)
||
0.01
},
addLink
(
item
)
{
const
link
=
item
.
extProcessExecutorRoutes
&&
item
.
extProcessExecutorRoutes
[
0
]
link
&&
this
.
params
.
links
.
push
(
this
.
toLink
(
link
))
const
links
=
item
.
extProcessExecutorRoutes
if
(
links
)
{
links
.
forEach
(
link
=>
{
this
.
params
.
links
.
push
(
this
.
toLink
(
link
))
})
}
},
toLink
(
l
)
{
return
{
...
...
applications/dee-mes/src/privateComponents/components/MBOMConfig/view.vue
View file @
ae4593be
...
...
@@ -93,8 +93,12 @@ export default {
return
(
Number
(
workHour
||
0
)
*
3
*
60
)
||
0.01
},
addLink
(
item
)
{
const
link
=
item
.
extProcessExecutorRoutes
&&
item
.
extProcessExecutorRoutes
[
0
]
link
&&
this
.
params
.
links
.
push
(
this
.
toLink
(
link
))
const
links
=
item
.
extProcessExecutorRoutes
if
(
links
)
{
links
.
forEach
(
link
=>
{
this
.
params
.
links
.
push
(
this
.
toLink
(
link
))
})
}
},
toLink
(
l
)
{
return
{
...
...
applications/dee-mes/src/privateComponents/components/OutStorageExpireFlow/index.vue
View file @
ae4593be
<
template
>
<div>
<DeeAsCom
v-if=
"basicData"
ref=
"list"
:basic-data=
"basicData"
:lay-config=
"
{
typeName: 'OutStorageExpire',
layKey: 'flowTable'
}"
@tb-printCode="tbPrintCode"
/>
<!--
<DeeAsCom
v-if=
"basicData"
ref=
"list"
:basic-data=
"basicData"
...
...
@@ -9,7 +19,7 @@
layKey: 'OutStorageExpireFlow'
}"
@tb-printCode="tbPrintCode"
/>
/>
-->
<PrintTag
ref=
"print"
:config=
"printConfig"
/>
</div>
</
template
>
...
...
@@ -32,13 +42,25 @@ export default {
printConfig
:
{
visible
:
false
,
width
:
300
,
prints
:
[]
prints
:
[],
dic
:
[]
}
}
},
mounted
()
{
this
.
$utils
.
getDicListByCode
(
'ObjStatus'
).
then
(
res
=>
{
this
.
dic
=
res
})
// defaultQueryParams = [{
// items: [{
// 'fieldName': 'id',
// 'operator': 'EQ',
// 'value': obtainedParams.basicData.id
// }],
// operator: 'AND'
// }]
},
methods
:
{
...
...
@@ -50,24 +72,30 @@ export default {
this
.
printConfig
=
Object
.
assign
({},
this
.
printConfig
,
{
visible
:
true
})
const
state
=
this
.
dic
.
find
(
item
=>
item
.
value
===
row
.
state
)
this
.
printConfig
.
prints
.
push
({
text
:
row
.
id
,
propertys
:
[
{
label
:
'编码'
,
value
:
row
.
extMaterial
.
resCode
},
{
label
:
'名称'
,
value
:
row
.
extMaterial
.
resName
},
{
label
:
'型号/牌号/件号'
,
value
:
row
.
extMaterial
.
modelNo
},
{
label
:
'规格'
,
value
:
row
.
extMaterial
.
spec
},
{
label
:
'批号'
,
value
:
row
.
lotNo
},
{
label
:
'系列号/序列号'
,
value
:
row
.
serialNo
},
{
label
:
'机型'
,
value
:
row
.
airModel
},
{
label
:
'验收单号'
,
value
:
row
.
purchaseOrderNo
},
{
label
:
'保证保管期'
,
value
:
''
},
{
label
:
'出库数量'
,
value
:
row
.
reqAmount
},
{
label
:
'贮存期'
,
value
:
''
},
{
label
:
'库位号'
,
value
:
''
},
{
label
:
'计量单位'
,
value
:
row
.
extMaterial
.
extUnit
.
unitName
},
{
label
:
'AO号'
,
value
:
''
},
{
label
:
'备注'
,
value
:
row
.
remark
||
''
}
{
label
:
'状态'
,
value
:
state
?
state
.
label
:
row
.
state
},
{
label
:
'申请单编号'
,
value
:
row
.
reqNo
},
{
label
:
'申请依据'
,
value
:
row
.
reqBill
},
{
label
:
'申请部门'
,
value
:
row
.
reqDept
},
{
label
:
'创建人'
,
value
:
row
.
creator
.
userName
},
{
label
:
'创建时间'
,
value
:
row
.
createTime
}
// { label: '名称', value: row.extMaterial.resName },
// { label: '型号/牌号/件号', value: row.extMaterial.modelNo },
// { label: '规格', value: row.extMaterial.spec },
// { label: '批号', value: row.lotNo },
// { label: '系列号/序列号', value: row.serialNo },
// { label: '机型', value: row.airModel },
// { label: '验收单号', value: row.purchaseOrderNo },
// { label: '保证保管期', value: '' },
// { label: '出库数量', value: row.reqAmount },
// { label: '贮存期', value: '' },
// { label: '库位号', value: '' },
// { label: '计量单位', value: row.extMaterial.extUnit.unitName },
// { label: 'AO号', value: '' },
// { label: '备注', value: row.remark || '' }
]
})
})
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingNewOrEdit/component/storageDetailsCreateCom.vue
View file @
ae4593be
...
...
@@ -311,7 +311,7 @@ export default {
if
(
!
this
.
header
)
return
this
.
$set
(
this
.
form
,
'supplier'
,
this
.
header
.
supplierFullName
.
label
||
''
)
this
.
$set
(
this
.
form
,
'arrivalDate'
,
this
.
header
.
arrivalDate
)
const
childrenAddOrEdit
=
this
.
operateType
===
'ADD'
||
(
this
.
operateType
===
'MODIFY'
&&
!
this
.
form
.
isRoot
)
const
childrenAddOrEdit
=
this
.
header
.
materialTypeName
.
label
===
'外购成品'
&&
(
this
.
operateType
===
'ADD'
||
(
this
.
operateType
===
'MODIFY'
&&
!
this
.
form
.
isRoot
)
)
switch
(
this
.
header
.
billType
)
{
case
'器材'
:
case
'Material'
:
...
...
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingNewOrEdit/index.vue
View file @
ae4593be
...
...
@@ -548,6 +548,7 @@ export default {
if
(
targetItem
)
{
targetItem
.
component
.
options
=
res
.
items
.
content
.
map
(
row
=>
({
value
:
row
.
id
,
label
:
row
.
typeName
}))
}
this
.
form
.
materialTypeId
=
''
}).
catch
((
err
)
=>
{
console
.
log
(
err
)
})
...
...
applications/dee-mes/src/views/assemblyPlanManagement/assemblyPlanMaintenance/index.vue
View file @
ae4593be
...
...
@@ -43,9 +43,8 @@ export default {
.assembly-plan-maintenance-page
{
margin
:
4px
;
margin-top
:
0px
;
padding
:
8px
;
height
:
calc
(
100%
-
20px
);
width
:
calc
(
100%
-
24px
);
height
:
calc
(
100%
-
4px
);
width
:
calc
(
100%
-
8px
);
background-color
:
#fff
;
}
</
style
>
applications/dee-mes/src/views/assemblyPlanManagement/assemblyPlanMaintenance/search.vue
View file @
ae4593be
<
template
>
<div>
search
<div
class=
"assembly-plan-maintenance-search-model"
>
<div
class=
"search-box box"
>
<div
class=
"title"
>
<i
class=
"search-icon"
/><span>
搜索
</span>
</div>
<div
class=
"row"
>
<label>
机型:
</label>
<el-select
size=
"mini"
/>
</div>
<div
class=
"row"
>
<label>
场次:
</label>
<el-select
size=
"mini"
/>
</div>
<div
class=
"row"
>
<label>
状态:
</label>
<el-select
size=
"mini"
/>
</div>
<div
class=
"row"
>
<el-button
size=
"mini"
type=
"primary"
>
查询
</el-button>
</div>
</div>
<div
class=
"sorties-box box"
>
sorties
</div>
<div
class=
"station-box box"
>
station
</div>
</div>
</
template
>
...
...
@@ -24,6 +49,47 @@ export default {
}
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
>
.assembly-plan-maintenance-search-model
{
height
:
100%
;
padding
:
4px
;
box-sizing
:
border-box
;
display
:
flex
;
flex-flow
:
column
;
justify-content
:
space-around
;
.search-box
{
.title
{
margin-left
:
10px
;
text-align
:
left
;
margin-top
:
10px
;
}
.search-icon
{
display
:
inline-block
;
width
:
21px
;
height
:
21px
;
background
:
url(/icons/r-access.png)
no-repeat
;
background-size
:
contain
;
vertical-align
:
middle
;
}
label
{
margin-right
:
6px
;
display
:
inline-block
;
}
.el-select
{
width
:
calc
(
100%
-
60px
);
}
.row
{
line-height
:
40px
;
height
:
40px
;
text-align
:
center
;
}
font-size
:
14px
;
}
.box
{
margin
:
4px
;
border
:
1px
solid
#d8d8d8
;
border-radius
:
8px
;
padding
:
4px
;;
}
}
</
style
>
applications/dee-mes/src/views/assemblyPlanManagement/stationPlanMaintenance/gantt.vue
View file @
ae4593be
...
...
@@ -114,20 +114,19 @@ export default {
'<br><b>问题状态:</b> '
+
task
.
problemStatus
return
html
}
else
{
const
row
=
that
.
tooltipData
[
task
.
tooltipId
]
html
=
'<b>操作者:</b> '
+
(
row
&&
row
.
creator
&&
row
.
creator
.
userName
?
row
.
creator
.
userName
:
''
)
+
'<br><b>检验员:</b> '
+
(
row
&&
row
.
testor
&&
row
.
testor
.
userName
?
row
.
testor
.
userName
:
''
)
+
'<br><b>实际开始:</b> '
+
(
row
&&
row
.
actualStart
?
row
.
actualStart
:
''
)
+
'<br><b>实际完成:</b> '
+
(
row
&&
row
.
actualEnd
?
row
.
actualEnd
:
''
)
+
//
'
<
b
>
操作者
:
<
/b> '
+
//
(row && row.creator && row.creator.userName
//
? row.creator.userName
//
: '') +
//
'
<
br
><
b
>
检验员
:
<
/b> '
+
//
(row && row.testor && row.testor.userName
//
? row.testor.userName
//
: '') +
//
'
<
br
><
b
>
实际开始
:
<
/b> '
+
//
(row && row.actualStart ? row.actualStart : '') +
//
'
<
br
><
b
>
实际完成
:
<
/b> '
+
//
(row && row.actualEnd ? row.actualEnd : '') +
'<br><b>站位/装配单元:</b> '
+
task
.
text
+
'<br><b>工期:</b> '
+
...
...
@@ -259,7 +258,7 @@ export default {
'</div>'
)
}
else
{
const
state
=
that
.
planS
tateOptions
.
find
(
r
=>
r
.
value
===
task
.
status
)
const
state
=
that
.
s
tateOptions
.
find
(
r
=>
r
.
value
===
task
.
status
)
return
(
"<div class='ao color "
+
task
.
status
+
...
...
@@ -400,9 +399,11 @@ export default {
}
data
.
forEach
(
p
=>
{
this
.
addwrProduction
(
p
,
params
)
this
.
addLink
(
p
,
params
)
if
(
p
.
aoPlans
)
{
p
.
aoPlans
.
forEach
(
t
=>
{
this
.
addAO
(
p
,
t
,
params
)
this
.
addLink
(
t
,
params
)
})
}
})
...
...
@@ -462,6 +463,24 @@ export default {
60
}
},
addLink
(
item
,
params
)
{
const
links
=
item
.
extProcessExecutorRoutes
if
(
links
)
{
links
.
forEach
(
link
=>
{
params
.
links
.
push
(
this
.
toLink
(
link
))
})
}
},
toLink
(
l
)
{
return
{
cid
:
l
.
id
,
tid
:
l
.
currNodeId
,
source
:
l
.
prevNodeId
,
target
:
l
.
currNodeId
,
type
:
'0'
,
isCritical
:
l
.
isCritical
}
},
addAO
(
m
,
p
,
params
)
{
if
(
p
.
joExecutePlan
&&
p
.
joExecutePlan
[
0
])
{
params
.
data
.
push
(
this
.
toAO
(
m
,
p
))
...
...
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