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
018b021c
Commit
018b021c
authored
Aug 04, 2023
by
arvin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
站点路线
parent
fbba8819
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
28 deletions
+45
-28
index.vue
...ts/components/AddOutStorageMaterialDetailDialog/index.vue
+1
-1
data.js
...e-mes/src/privateComponents/components/MBOMConfig/data.js
+7
-0
step.vue
...-mes/src/privateComponents/components/MBOMConfig/step.vue
+36
-26
tree.vue
...-mes/src/privateComponents/components/MBOMConfig/tree.vue
+1
-1
No files found.
applications/dee-mes/src/privateComponents/components/AddOutStorageMaterialDetailDialog/index.vue
View file @
018b021c
...
...
@@ -52,7 +52,7 @@ export default {
val
.
items
.
push
({
fieldName
:
'status'
,
operator
:
'EQ'
,
value
:
'disposed'
})
val
.
items
.
push
({
fieldName
:
'usableAmount'
,
operator
:
'GT'
,
value
:
0
})
val
.
items
.
push
({
fieldName
:
'disposeDes'
,
operator
:
'LIKE'
,
value
:
'三期'
})
const
extWorkCenterName
=
this
.
basicData
.
extWorkCenteName
||
(
this
.
basicData
.
extWorkCe
ter
&&
this
.
basicData
.
extWorkCe
ter
.
extname
)
const
extWorkCenterName
=
this
.
basicData
.
extWorkCenteName
||
(
this
.
basicData
.
extWorkCe
nter
&&
this
.
basicData
.
extWorkCen
ter
.
extname
)
if
(
extWorkCenterName
)
{
val
.
items
.
push
({
fieldName
:
'workcenter'
,
operator
:
'EQ'
,
value
:
extWorkCenterName
})
}
...
...
applications/dee-mes/src/privateComponents/components/MBOMConfig/data.js
View file @
018b021c
export
default
{
data
()
{
return
{
loading
:
false
}
},
watch
:
{
showFlag
(
val
)
{
if
(
!
val
)
{
...
...
@@ -33,7 +38,9 @@ export default {
},
methods
:
{
search
()
{
}
}
}
applications/dee-mes/src/privateComponents/components/MBOMConfig/step.vue
View file @
018b021c
...
...
@@ -101,7 +101,7 @@ export default {
this
.
currentId
=
this
.
node
.
id
const
params
=
{
'searchItems'
:
{
'items'
:
[{
'fieldName'
:
'aircraftSortiesId'
,
'operator'
:
'EQ'
,
'value'
:
this
.
node
.
id
}]
},
'sortItem'
:
[{
'fieldName'
:
'
modifyTime
'
,
'sortOrder'
:
'asc'
}],
'sortItem'
:
[{
'fieldName'
:
'
serialNumber
'
,
'sortOrder'
:
'asc'
}],
'openProps'
:
[
{
'name'
:
'extProcessExecutorRoutes'
...
...
@@ -185,6 +185,7 @@ export default {
ganttAg
.
config
.
scale_height
=
70
ganttAg
.
config
.
show_task_cells
=
true
ganttAg
.
config
.
autofit
=
false
ganttAg
.
config
.
fit_tasks
=
false
ganttAg
.
config
.
drag_move
=
false
ganttAg
.
config
.
details_on_dblclick
=
false
ganttAg
.
config
.
auto_scheduling
=
true
...
...
@@ -290,6 +291,9 @@ export default {
}
ganttAg
.
clearAll
()
ganttAg
.
parse
(
data
)
setTimeout
(()
=>
{
ganttAg
.
autoSchedule
()
},
1000
)
}
})
// 在将新链接添加到甘特图之前触发
...
...
@@ -300,15 +304,7 @@ export default {
return
true
})
ganttAg
.
attachEvent
(
'onAfterBatchUpdate'
,
function
(
action
)
{
console
.
log
(
'onAfterBatchUpdate'
)
// your code here
})
ganttAg
.
attachEvent
(
'onAutoScheduleCircularLink'
,
function
(
groups
)
{
console
.
log
(
groups
,
'onAutoScheduleCircularLink'
)
// any custom logic here
})
ganttAg
.
attachEvent
(
'onAfterTaskAutoSchedule'
,
function
(
task
,
start
,
link
,
predecessor
)
{
console
.
log
(
task
,
start
,
link
,
predecessor
,
'onAfterTaskAutoSchedule'
)
ganttAg
.
autoSchedule
()
})
this
.
$nextTick
(()
=>
{
ganttAg
.
init
(
this
.
ganttElId
)
...
...
@@ -343,30 +339,33 @@ export default {
}
},
save
()
{
if
(
this
.
loading
)
{
return
}
this
.
loading
=
true
const
tasks
=
this
.
gantt
.
getTableData
().
data
.
data
const
links
=
this
.
gantt
.
getTableData
().
data
.
links
const
params
=
this
.
ganttData
.
map
(
item
=>
{
const
routes
=
item
.
extProcessExecutorRoutes
.
map
(
r
=>
{
const
routes
=
item
.
extProcessExecutorRoutes
?
item
.
extProcessExecutorRoutes
.
map
(
r
=>
{
return
{
id
:
r
.
id
,
operator
:
'REMOVE'
}
})
})
:
[]
const
task
=
tasks
.
find
(
r
=>
r
.
id
===
item
.
id
)
if
(
item
.
extProcessExecutorRoutes
)
{
const
link
=
links
.
find
(
r
=>
r
.
target
===
item
.
id
)
if
(
link
)
{
routes
.
push
({
operator
:
'ADD'
,
subTypeName
:
'ExtProcessExecutorRoute'
,
prevNodeIdType
:
'ExtPosition'
,
currNodeIdType
:
'ExtPosition'
,
currNodeId
:
Number
(
link
.
target
),
prevNodeId
:
Number
(
link
.
source
),
isCritical
:
link
.
isCritical
})
}
const
link
=
links
.
find
(
r
=>
Number
(
r
.
target
)
===
item
.
id
)
if
(
link
)
{
routes
.
push
({
operator
:
'ADD'
,
subTypeName
:
'ExtProcessExecutorRoute'
,
prevNodeIdType
:
'ExtPosition'
,
currNodeIdType
:
'ExtPosition'
,
currNodeId
:
Number
(
link
.
target
),
prevNodeId
:
Number
(
link
.
source
),
isCritical
:
link
.
isCritical
})
}
return
{
id
:
item
.
id
,
operator
:
'MODIFY'
,
...
...
@@ -376,8 +375,9 @@ export default {
}
})
this
.
$api
.
recursion
(
'ExtPosition'
,
params
,
true
).
then
(()
=>
{
this
.
$utils
.
showMessageSuccess
(
'保存成功!'
)
this
.
getData
()
})
})
.
finally
(()
=>
{
this
.
loading
=
false
})
}
}
}
...
...
@@ -389,5 +389,15 @@ export default {
.gatt
{
height
:
100%
;
}
.gantt_critical_task
{
background
:
#f39c4f
;
border
:
1px
solid
#f39c4f
;
}
.gantt_task_line
{
&
.workday_over
{
background
:
#f39c4f
;
border
:
1px
solid
#f39c4f
;
}
}
}
</
style
>
applications/dee-mes/src/privateComponents/components/MBOMConfig/tree.vue
View file @
018b021c
...
...
@@ -116,7 +116,7 @@ export default {
getPosition
()
{
const
params
=
{
'searchItems'
:
{
'items'
:
[{
'fieldName'
:
'aircraftSortiesId'
,
'operator'
:
'EQ'
,
'value'
:
this
.
AircraftSortiesId
}]
},
'sortItem'
:
[{
'fieldName'
:
'
modifyTime
'
,
'sortOrder'
:
'asc'
}]
'sortItem'
:
[{
'fieldName'
:
'
serialNumber
'
,
'sortOrder'
:
'asc'
}]
}
this
.
$api
.
searchApi
(
'ExtPosition'
,
params
).
then
(
res
=>
{
...
...
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