Skip to content

Instantly share code, notes, and snippets.

@Frank004
Last active May 2, 2016 16:15
Show Gist options
  • Save Frank004/fc42c884a7f1d439ff2f14ef47d244bf to your computer and use it in GitHub Desktop.
Save Frank004/fc42c884a7f1d439ff2f14ef47d244bf to your computer and use it in GitHub Desktop.
@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}}
[#<Section id: 17, name: "A”>=>
{
#<Task id: 1, name: "Pintura paredes", group_id: 17>,
#<Task id: 2, name: "brillado de piso", group_id: 17>
}
]
[#<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