Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
76724001
Commit
76724001
authored
Sep 26, 2014
by
Ioannis Papagiannopoulos
Committed by
Georgios Dagkakis
Oct 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LineGenerationJSON can now read BOM from the input
parent
2d9e5963
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
4 deletions
+52
-4
dream/simulation/LineGenerationJSON.py
dream/simulation/LineGenerationJSON.py
+52
-4
No files found.
dream/simulation/LineGenerationJSON.py
View file @
76724001
...
@@ -341,20 +341,68 @@ def createWIP():
...
@@ -341,20 +341,68 @@ def createWIP():
# entities that just finished processing in a station
# entities that just finished processing in a station
# and have to enter the next machine
# and have to enter the next machine
G
.
pendingEntities
=
[]
G
.
pendingEntities
=
[]
json_data
=
G
.
JSONData
#Read the json data
#Read the json data
nodes
=
json_data
[
'nodes'
]
# read from the dictionary the dicts with key 'nodes'
json_data
=
G
.
JSONData
# read from the dictionary the dicts with key 'BOM' (if there are any)
bom
=
json_data
.
get
(
'BOM'
,
None
)
if
bom
:
orders
=
bom
.
get
(
'productionOrders'
,[])
# for every order in the productionOrders list
for
prodOrder
in
orders
:
orderClass
=
prodOrder
.
get
(
'_class'
,
None
)
orderType
=
Globals
.
getClassFromName
(
orderClass
)
# make sure that their type is Dream.Order
assert
issubclass
(
orderType
,
Order
),
'a production order must be sub-class of Order'
if
orderClass
==
'Dream.Order'
:
id
=
prodOrder
.
get
(
'id'
,
'not found'
)
name
=
prodOrder
.
get
(
'name'
,
'not found'
)
priority
=
int
(
prodOrder
.
get
(
'priority'
,
'0'
))
dueDate
=
float
(
prodOrder
.
get
(
'dueDate'
,
'0'
))
orderDate
=
float
(
prodOrder
.
get
(
'orderDate'
,
'0'
))
isCritical
=
bool
(
int
(
prodOrder
.
get
(
'isCritical'
,
'0'
)))
componentsReadyForAssembly
=
bool
((
prodOrder
.
get
(
'componentsReadyForAssembly'
,
'0'
)))
componentsList
=
prodOrder
.
get
(
'componentsList'
,
{})
# keep a reference of all extra properties passed to the job
extraPropertyDict
=
{}
for
key
,
value
in
prodOrder
.
items
():
if
key
not
in
(
'_class'
,
'id'
):
extraPropertyDict
[
key
]
=
value
# initiate the Order
O
=
Order
(
'G'
+
id
,
'general '
+
name
,
route
=
[],
priority
=
priority
,
dueDate
=
dueDate
,
orderDate
=
orderDate
,
isCritical
=
isCritical
,
componentsList
=
componentsList
,
componentsReadyForAssembly
=
componentsReadyForAssembly
,
extraPropertyDict
=
extraPropertyDict
)
G
.
OrderList
.
append
(
O
)
# read from the dictionary the dicts with key 'nodes'
nodes
=
json_data
[
'nodes'
]
for
(
element_id
,
element
)
in
nodes
.
iteritems
():
for
(
element_id
,
element
)
in
nodes
.
iteritems
():
element
[
'id'
]
=
element_id
element
[
'id'
]
=
element_id
wip
=
element
.
get
(
'wip'
,
[])
wip
=
element
.
get
(
'wip'
,
[])
from
dream.simulation.OrderDesign
import
OrderDesign
from
dream.simulation.OrderDesign
import
OrderDesign
for
entity
in
wip
:
for
entity
in
wip
:
entityOrder
=
None
# variable to hold the parent order of the WIP
# if the dictionary contains no objects but ids (the orders are provided in BOM echelon)
if
not
type
(
entity
)
is
dict
:
# try to find the parent order and the dict corresponding to the ID provided in the WIP
for
order
in
G
.
OrderList
:
if
order
.
componentsList
:
for
componentDict
in
order
.
componentsList
:
tempID
=
componentDict
.
get
(
'id'
,
'not found'
)
if
entity
==
tempID
:
entity
=
componentDict
entityOrder
=
order
if
type
(
entity
)
is
dict
:
break
entityClass
=
entity
.
get
(
'_class'
,
None
)
entityClass
=
entity
.
get
(
'_class'
,
None
)
entityType
=
Globals
.
getClassFromName
(
entityClass
)
entityType
=
Globals
.
getClassFromName
(
entityClass
)
inputDict
=
dict
(
entity
)
inputDict
=
dict
(
entity
)
inputDict
.
pop
(
'_class'
)
inputDict
.
pop
(
'_class'
)
from
dream.simulation.Entity
import
Entity
from
dream.simulation.Entity
import
Entity
if
issubclass
(
entityType
,
Entity
)
and
(
not
entityClass
==
'Dream.Order'
):
if
issubclass
(
entityType
,
Entity
)
and
(
not
entityClass
==
'Dream.Order'
):
# if orders are provided separately (BOM) provide the parent order as argument
if
entityOrder
:
entity
=
entityType
(
order
=
order
,
**
inputDict
)
else
:
entity
=
entityType
(
**
inputDict
)
entity
=
entityType
(
**
inputDict
)
G
.
EntityList
.
append
(
entity
)
G
.
EntityList
.
append
(
entity
)
object
=
Globals
.
findObjectById
(
element
[
'id'
])
object
=
Globals
.
findObjectById
(
element
[
'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