added delete action for projects #69 (#76)

This commit is contained in:
Kevin Papst
2018-01-10 22:10:02 +01:00
committed by GitHub
parent e1393a3e9d
commit 9aec5fda84
9 changed files with 252 additions and 32 deletions

View File

@@ -394,6 +394,10 @@
<source>admin_project.subtitle</source> <source>admin_project.subtitle</source>
<target>Ein Projekt fasst Tätigkeiten für jeweils einen Kunden in einer Gruppe zusammen</target> <target>Ein Projekt fasst Tätigkeiten für jeweils einen Kunden in einer Gruppe zusammen</target>
</trans-unit> </trans-unit>
<trans-unit id="admin_project.delete_confirm">
<source>admin_project.delete_confirm</source>
<target>Momentan existieren für das Projekt %project% des Kunden %customer% insgesamt %activities% Aktivitäten und %records% Zeiteinträge, welche sich auf eine Gesamtdauer von %duration% belaufen. Alle Aktivitäten und Zeiteinträge werden ebenfalls mit gelöscht!</target>
</trans-unit>
<!-- <!--
Admin: Activity Admin: Activity
@@ -408,7 +412,7 @@
</trans-unit> </trans-unit>
<trans-unit id="admin_activity.delete_confirm"> <trans-unit id="admin_activity.delete_confirm">
<source>admin_activity.delete_confirm</source> <source>admin_activity.delete_confirm</source>
<target>Momentan existieren für die Aktivität %activity% im Projekt %project% für den Kunden %customer% insgesamt %count% Zeiteinträge, welche sich auf eine Gesamtdauer von %duration% belaufen. Alle Zeiteinträge werden ebenfalls mit gelöscht!</target> <target>Momentan existieren für die Aktivität %activity% im Projekt %project% für den Kunden %customer% insgesamt %records% Zeiteinträge, welche sich auf eine Gesamtdauer von %duration% belaufen. Alle Zeiteinträge werden ebenfalls mit gelöscht!</target>
</trans-unit> </trans-unit>
<!-- <!--

View File

@@ -132,7 +132,7 @@ class DashboardController extends Controller
'widgets' => [ 'widgets' => [
"{{ widgets.info_box_more('stats.userTotal', user.totalAmount, ' ', path('admin_user'), 'user') }}", "{{ widgets.info_box_more('stats.userTotal', user.totalAmount, ' ', path('admin_user'), 'user') }}",
"{{ widgets.info_box_more('stats.customerTotal', customer.totalAmount, '', path('admin_customer'), 'users', 'blue') }}", "{{ widgets.info_box_more('stats.customerTotal', customer.totalAmount, '', path('admin_customer'), 'users', 'blue') }}",
"{{ widgets.info_box_more('stats.projectsTotal', project.totalAmount, '', path('admin_project'), 'book', 'yellow') }}", "{{ widgets.info_box_more('stats.projectsTotal', project.count, '', path('admin_project'), 'book', 'yellow') }}",
"{{ widgets.info_box_more('stats.activitiesTotal', activity.count, '', path('admin_activity'), 'tasks', 'purple') }}", "{{ widgets.info_box_more('stats.activitiesTotal', activity.count, '', path('admin_activity'), 'tasks', 'purple') }}",
], ],
]; ];

View File

@@ -20,6 +20,7 @@ use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache;
use TimesheetBundle\Form\ProjectDeleteForm;
use TimesheetBundle\Form\ProjectEditForm; use TimesheetBundle\Form\ProjectEditForm;
use TimesheetBundle\Form\Toolbar\ProjectToolbarForm; use TimesheetBundle\Form\Toolbar\ProjectToolbarForm;
use TimesheetBundle\Repository\Query\ProjectQuery; use TimesheetBundle\Repository\Query\ProjectQuery;
@@ -34,6 +35,15 @@ use TimesheetBundle\Repository\Query\ProjectQuery;
*/ */
class ProjectController extends AbstractController class ProjectController extends AbstractController
{ {
/**
* @return \TimesheetBundle\Repository\ProjectRepository
*/
protected function getRepository()
{
return $this->getDoctrine()->getRepository(Project::class);
}
/** /**
* @param Request $request * @param Request $request
* @return ProjectQuery * @return ProjectQuery
@@ -49,7 +59,7 @@ class ProjectController extends AbstractController
$customer = !empty(trim($customer)) ? trim($customer) : null; $customer = !empty(trim($customer)) ? trim($customer) : null;
if ($customer !== null) { if ($customer !== null) {
$repo = $this->getDoctrine()->getRepository(Customer::class); $repo = $this->getRepository();
$customer = $repo->getById($customer); $customer = $repo->getById($customer);
} }
@@ -104,6 +114,45 @@ class ProjectController extends AbstractController
return $this->renderProjectForm($project, $request); return $this->renderProjectForm($project, $request);
} }
/**
* The route to delete an existing entry.
*
* @Route("/{id}/delete", name="admin_project_delete")
* @Method({"GET", "POST"})
* @Security("is_granted('delete', project)")
*
* @param Project $project
* @param Request $request
* @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
*/
public function deleteAction(Project $project, Request $request)
{
$stats = $this->getRepository()->getProjectStatistics($project);
$deleteForm = $this->createForm(ProjectDeleteForm::class, $project, [
'action' => $this->generateUrl('admin_project_delete', ['id' => $project->getId()]),
'method' => 'POST'
]);
$deleteForm->handleRequest($request);
if ($stats->getRecordAmount() == 0 || ($deleteForm->isSubmitted() && $deleteForm->isValid())) {
$entityManager = $this->getDoctrine()->getManager();
$entityManager->remove($project);
$entityManager->flush();
$this->flashSuccess('action.deleted_successfully');
return $this->redirectToRoute('admin_project', ['id' => $project->getId()]);
}
return $this->render('TimesheetBundle:admin:project_delete.html.twig', [
'project' => $project,
'stats' => $stats,
'form' => $deleteForm->createView(),
]);
}
/** /**
* @param Project $project * @param Project $project
* @param Request $request * @param Request $request
@@ -125,13 +174,10 @@ class ProjectController extends AbstractController
return $this->redirectToRoute('admin_project', ['id' => $project->getId()]); return $this->redirectToRoute('admin_project', ['id' => $project->getId()]);
} }
return $this->render( return $this->render('TimesheetBundle:admin:project_edit.html.twig', [
'TimesheetBundle:admin:project_edit.html.twig', 'project' => $project,
[ 'form' => $editForm->createView()
'project' => $project, ]);
'form' => $editForm->createView()
]
);
} }
/** /**
@@ -140,16 +186,12 @@ class ProjectController extends AbstractController
*/ */
protected function getToolbarForm(ProjectQuery $query) protected function getToolbarForm(ProjectQuery $query)
{ {
return $this->createForm( return $this->createForm(ProjectToolbarForm::class, $query, [
ProjectToolbarForm::class, 'action' => $this->generateUrl('admin_project_paginated', [
$query, 'page' => $query->getPage(),
[ ]),
'action' => $this->generateUrl('admin_project_paginated', [ 'method' => 'GET',
'page' => $query->getPage(), ]);
]),
'method' => 'GET',
]
);
} }
/** /**

View File

@@ -0,0 +1,38 @@
<?php
/*
* This file is part of the Kimai package.
*
* (c) Kevin Papst <kevin@kevinpapst.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace TimesheetBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolver;
use TimesheetBundle\Entity\Project;
/**
* The form used to delete Projects.
*
* @author Kevin Papst <kevin@kevinpapst.de>
*/
class ProjectDeleteForm extends AbstractType
{
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => Project::class,
'csrf_protection' => true,
'csrf_field_name' => '_token',
'csrf_token_id' => 'admin_project_delete',
]);
}
}

View File

@@ -21,21 +21,95 @@ class ProjectStatistic
/** /**
* @var int * @var int
*/ */
protected $totalAmount = 0; protected $count = 0;
/**
* @var int
*/
protected $recordAmount = 0;
/**
* @var int
*/
protected $recordDuration = 0;
/**
* @var int
*/
protected $activityAmount = 0;
/**
* Returns the total amount of included timesheet records.
*
* @return int
*/
public function getRecordAmount()
{
return $this->recordAmount;
}
/**
* @param int $recordAmount
* @return ProjectStatistic
*/
public function setRecordAmount($recordAmount)
{
$this->recordAmount = (int) $recordAmount;
return $this;
}
/**
* Returns the total duration of all included timesheet records.
*
* @return int
*/
public function getRecordDuration()
{
return $this->recordDuration;
}
/**
* @param int $recordDuration
* @return ProjectStatistic
*/
public function setRecordDuration($recordDuration)
{
$this->recordDuration = (int) $recordDuration;
return $this;
}
/**
* Returns the amount of activities that are included in the statistic result.
*
* @return int
*/
public function getCount()
{
return $this->count;
}
/**
* @param int $count
* @return ProjectStatistic
*/
public function setCount($count)
{
$this->count = (int) $count;
return $this;
}
/** /**
* @return int * @return int
*/ */
public function getTotalAmount() public function getActivityAmount()
{ {
return $this->totalAmount; return $this->activityAmount;
} }
/** /**
* @param int $totalAmount * @param int $activityAmount
* @return ProjectStatistic
*/ */
public function setTotalAmount($totalAmount) public function setActivityAmount($activityAmount)
{ {
$this->totalAmount = $totalAmount; $this->activityAmount = (int) $activityAmount;
return $this;
} }
} }

View File

@@ -12,6 +12,7 @@
namespace TimesheetBundle\Repository; namespace TimesheetBundle\Repository;
use AppBundle\Repository\AbstractRepository; use AppBundle\Repository\AbstractRepository;
use Doctrine\ORM\Query;
use TimesheetBundle\Entity\Project; use TimesheetBundle\Entity\Project;
use TimesheetBundle\Model\ProjectStatistic; use TimesheetBundle\Model\ProjectStatistic;
use TimesheetBundle\Repository\Query\ProjectQuery; use TimesheetBundle\Repository\Query\ProjectQuery;
@@ -46,7 +47,40 @@ class ProjectRepository extends AbstractRepository
->getSingleScalarResult(); ->getSingleScalarResult();
$stats = new ProjectStatistic(); $stats = new ProjectStatistic();
$stats->setTotalAmount($countAll); $stats->setCount($countAll);
return $stats;
}
/**
* Retrieves statistics for one activity.
*
* @param Project $project
* @return ProjectStatistic
*/
public function getProjectStatistics(Project $project)
{
$qb = $this->getEntityManager()->createQueryBuilder();
$qb->select('COUNT(t.id) as recordAmount', 'SUM(t.duration) as recordDuration, COUNT(DISTINCT(a.id)) as activityAmount')
->from('TimesheetBundle:Activity', 'a')
->join('TimesheetBundle:Timesheet', 't')
->where('a.project = :project')
->andWhere('t.activity = a.id')
;
$result = $qb->getQuery()->execute(['project' => $project], Query::HYDRATE_ARRAY);
$stats = new ProjectStatistic();
if (isset($result[0])) {
$dbStats = $result[0];
$stats->setCount(1);
$stats->setRecordAmount($dbStats['recordAmount']);
$stats->setRecordDuration($dbStats['recordDuration']);
$stats->setActivityAmount($dbStats['activityAmount']);
}
return $stats; return $stats;
} }

View File

@@ -11,7 +11,7 @@
'%activity%': '<strong>' ~ activity.name ~ '</strong>', '%activity%': '<strong>' ~ activity.name ~ '</strong>',
'%project%': '<strong>' ~ activity.project.name ~ '</strong>', '%project%': '<strong>' ~ activity.project.name ~ '</strong>',
'%customer%': '<strong>' ~ activity.project.customer.name ~ '</strong>', '%customer%': '<strong>' ~ activity.project.customer.name ~ '</strong>',
'%count%': '<strong>' ~ stats.recordAmount ~ '</strong>', '%records%': '<strong>' ~ stats.recordAmount ~ '</strong>',
'%duration%': '<strong>' ~ stats.recordDuration|duration ~ '</strong>' '%duration%': '<strong>' ~ stats.recordDuration|duration ~ '</strong>'
} %} } %}

View File

@@ -34,10 +34,14 @@
<td class="hidden-xs">{{ entry.budget|money(entry.customer.currency) }}</td> <td class="hidden-xs">{{ entry.budget|money(entry.customer.currency) }}</td>
<td>{{ widgets.label_visible(entry.visible) }}</td> <td>{{ widgets.label_visible(entry.visible) }}</td>
<td> <td>
{{ widgets.button_group({ {% set actionButtons = {} %}
'edit': path('admin_project_edit', {'id': entry.id}), {% if is_granted('edit', entry) %}
'trash': '#' {% set actionButtons = {'edit': path('admin_project_edit', {'id': entry.id})}|merge(actionButtons) %}
}) }} {% endif %}
{% if is_granted('delete', entry) %}
{% set actionButtons = actionButtons|merge({'trash': path('admin_project_delete', {'id': entry.id})}) %}
{% endif %}
{{ widgets.button_group(actionButtons) }}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}

View File

@@ -0,0 +1,24 @@
{% extends 'base.html.twig' %}
{% import "macros/widgets.html.twig" as widgets %}
{% import "macros/datatables.html.twig" as tables %}
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
{% block page_subtitle %}{{ 'admin_project.subtitle'|trans }}{% endblock %}
{% block main %}
{% set params = {
'%project%': '<strong>' ~ project.name ~ '</strong>',
'%customer%': '<strong>' ~ project.customer.name ~ '</strong>',
'%records%': '<strong>' ~ stats.recordAmount ~ '</strong>',
'%activities%': '<strong>' ~ stats.activityAmount ~ '</strong>',
'%duration%': '<strong>' ~ stats.recordDuration|duration ~ '</strong>'
} %}
{{ include('default/_form_delete.html.twig', {
'message': "admin_project.delete_confirm"|trans(params)|raw,
'form': form,
'back': path('admin_project')
}) }}
{% endblock %}