Last active
May 2, 2016 16:15
-
-
Save Frank004/fc42c884a7f1d439ff2f14ef47d244bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@p = Project.with_monthly_tasks | |
@p.map{|p| p.tasks.current_month_task.select(:name,:type_id,:group_id,:est_hrs,:est_mins,:section_id).group_by{ |t| t.section.name}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[#<Section id: 17, name: "A”>=> | |
{ | |
#<Task id: 1, name: "Pintura paredes", group_id: 17>, | |
#<Task id: 2, name: "brillado de piso", group_id: 17> | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[#<Section id: 17, name: "A”>=> | |
{ | |
#<Task id: 1, name: "Pintura paredes", group: Turno A>, | |
#<Task id: 2, name: "brillado de piso", group: Turno A> | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment