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
d9c699e3
Commit
d9c699e3
authored
May 06, 2014
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
JobMA added as a new Entity for the DemandPlanning
parent
11e9dd32
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
6 deletions
+70
-6
dream/simulation/FutureDemandCreator.py
dream/simulation/FutureDemandCreator.py
+25
-4
dream/simulation/GUI/DemandPlanning.py
dream/simulation/GUI/DemandPlanning.py
+2
-2
dream/simulation/JobMA.py
dream/simulation/JobMA.py
+43
-0
No files found.
dream/simulation/FutureDemandCreator.py
View file @
d9c699e3
# ===========================================================================
# Copyright 2013 University of Limerick
#
# This file is part of DREAM.
#
# DREAM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DREAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
'''
Created on
3 Oct
2013
Created on
27 Apr
2013
@author: Anna
@author: Anna, George
'''
'''
module that creates the future demand and appends it to buffers
'''
import
xlrd
import
json
from
Globals
import
G
from
JobMA
import
JobMA
class
FutureDemandCreator
():
...
...
@@ -72,10 +94,9 @@ class FutureDemandCreator():
SP
=
MAData
[
str
(
MA
)][
'SP'
]
PPOS
=
MAData
[
str
(
MA
)][
'PPOS'
]
print
SP
,
PPOS
# create item
newItem
=
Job
(
orderID
=
order
,
MAid
=
MA
,
SPid
=
SP
,
PPOSid
=
PPOS
,
qty
=
orderQty
,
minQty
=
orderMinQty
,
origWeek
=
week
,
future
=
fut
)
newItem
=
Job
MA
(
orderID
=
order
,
MAid
=
MA
,
SPid
=
SP
,
PPOSid
=
PPOS
,
qty
=
orderQty
,
minQty
=
orderMinQty
,
origWeek
=
week
,
future
=
fut
)
G
.
Buffer
[
G
.
replication
].
append
(
newItem
)
if
k
==
0
:
...
...
dream/simulation/GUI/DemandPlanning.py
View file @
d9c699e3
...
...
@@ -150,8 +150,8 @@ def main():
G
.
argumentDictString
=
json
.
dumps
(
argumentDict
,
indent
=
5
)
argumentDictFile
.
write
(
G
.
argumentDictString
)
#
FDC=FutureDemandCreator()
#
FDC.run()
FDC
=
FutureDemandCreator
()
FDC
.
run
()
if
__name__
==
'__main__'
:
main
()
dream/simulation/JobMA.py
0 → 100644
View file @
d9c699e3
# ===========================================================================
# Copyright 2013 University of Limerick
#
# This file is part of DREAM.
#
# DREAM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DREAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
'''
Created on 06 May 2013
@author: Anna, George
'''
'''
Entity that is the MA in the DemandPlanning case. Inherits from Job (TODO see if this offers anything)
'''
from
Job
import
Job
class
JobMA
(
Job
):
def
__init__
(
self
,
orderID
,
MAid
,
SPid
,
PPOSid
,
qty
,
minQty
,
origWeek
,
future
):
Job
.
__init__
(
self
,
id
=
MAid
)
self
.
type
=
'item'
self
.
orderID
=
orderID
self
.
MAid
=
MAid
self
.
SPid
=
SPid
self
.
PPOSid
=
PPOSid
self
.
qty
=
qty
self
.
minQty
=
minQty
self
.
originalWeek
=
origWeek
self
.
future
=
future
# if 1 suggests that the MA belongs to the future demand (0 for the PPOS to be disaggregated)
self
.
weekPlan
=
self
.
originalWeek
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