Add command line export/calculation for daily project summaries

This commit is contained in:
Frédéric Guillot
2014-11-29 14:01:03 -05:00
parent e8fa25f9ca
commit d6bde1e3ec
5 changed files with 69 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace Console;
use Model\Project;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class ProjectDailySummaryCalculation extends Base
{
protected function configure()
{
$this
->setName('projects:daily-summary')
->setDescription('Calculate daily summary data for all projects');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$projects = $this->project->getAllByStatus(Project::ACTIVE);
foreach ($projects as $project) {
$output->writeln('Run calculation for '.$project['name']);
$this->projectDailySummary->updateTotals($project['id'], date('Y-m-d'));
}
}
}