mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Console;
|
||
|
|
||
|
use Core\Tool;
|
||
|
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 ProjectDailySummaryExport extends Base
|
||
|
{
|
||
|
protected function configure()
|
||
|
{
|
||
|
$this
|
||
|
->setName('export:daily-project-summary')
|
||
|
->setDescription('Daily project summary CSV export (number of tasks per column and per day)')
|
||
|
->addArgument('project_id', InputArgument::REQUIRED, 'Project id')
|
||
|
->addArgument('start_date', InputArgument::REQUIRED, 'Start date (YYYY-MM-DD)')
|
||
|
->addArgument('end_date', InputArgument::REQUIRED, 'End date (YYYY-MM-DD)');
|
||
|
}
|
||
|
|
||
|
protected function execute(InputInterface $input, OutputInterface $output)
|
||
|
{
|
||
|
$data = $this->projectDailySummary->getAggregatedMetrics(
|
||
|
$input->getArgument('project_id'),
|
||
|
$input->getArgument('start_date'),
|
||
|
$input->getArgument('end_date')
|
||
|
);
|
||
|
|
||
|
if (is_array($data)) {
|
||
|
Tool::csv($data);
|
||
|
}
|
||
|
}
|
||
|
}
|