#86 Edit document Compensation
* adds support for editing of documents * adds buttons and urls for compensation * simplifies getter for all documents
This commit is contained in:
parent
4a777e4b01
commit
3ded54b80f
@ -27,6 +27,9 @@
|
|||||||
<th scope="col">
|
<th scope="col">
|
||||||
{% trans 'Title' %}
|
{% trans 'Title' %}
|
||||||
</th>
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
{% trans 'Created on' %}
|
||||||
|
</th>
|
||||||
<th scope="col">
|
<th scope="col">
|
||||||
{% trans 'Comment' %}
|
{% trans 'Comment' %}
|
||||||
</th>
|
</th>
|
||||||
@ -43,18 +46,24 @@
|
|||||||
{% for doc in obj.documents.all %}
|
{% for doc in obj.documents.all %}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="align-middle">
|
<td class="align-middle">
|
||||||
<a href="{% url 'compensation:get-doc' doc.id %}">
|
<a href="{% url 'compensation:get-doc' obj.id doc.id %}">
|
||||||
{{ doc.title }}
|
{{ doc.title }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
<td class="align-middle">
|
||||||
|
{{ doc.date_of_creation }}
|
||||||
|
</td>
|
||||||
<td class="align-middle">
|
<td class="align-middle">
|
||||||
<div class="scroll-150">
|
<div class="scroll-150">
|
||||||
{{ doc.comment }}
|
{{ doc.comment }}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="align-middle">
|
<td class="align-middle float-right">
|
||||||
{% if is_default_member and has_access %}
|
{% if is_default_member and has_access %}
|
||||||
<button data-form-url="{% url 'compensation:remove-doc' doc.id %}" class="btn btn-default btn-modal float-right" title="{% trans 'Remove document' %}">
|
<button data-form-url="{% url 'compensation:edit-doc' obj.id doc.id %}" class="btn btn-default btn-modal" title="{% trans 'Edit document' %}">
|
||||||
|
{% fa5_icon 'edit' %}
|
||||||
|
</button>
|
||||||
|
<button data-form-url="{% url 'compensation:remove-doc' obj.id doc.id %}" class="btn btn-default btn-modal" title="{% trans 'Remove document' %}">
|
||||||
{% fa5_icon 'trash' %}
|
{% fa5_icon 'trash' %}
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -28,7 +28,8 @@ urlpatterns = [
|
|||||||
|
|
||||||
# Documents
|
# Documents
|
||||||
path('<id>/document/new/', new_document_view, name='new-doc'),
|
path('<id>/document/new/', new_document_view, name='new-doc'),
|
||||||
path('document/<doc_id>', get_document_view, name='get-doc'),
|
path('<id>/document/<doc_id>', get_document_view, name='get-doc'),
|
||||||
path('document/<doc_id>/remove/', remove_document_view, name='remove-doc'),
|
path('<id>/document/<doc_id>/remove/', remove_document_view, name='remove-doc'),
|
||||||
|
path('<id>/document/<doc_id>/edit/', edit_document_view, name='edit-doc'),
|
||||||
|
|
||||||
]
|
]
|
@ -12,7 +12,7 @@ from compensation.tables import CompensationTable
|
|||||||
from intervention.models import Intervention
|
from intervention.models import Intervention
|
||||||
from konova.contexts import BaseContext
|
from konova.contexts import BaseContext
|
||||||
from konova.decorators import *
|
from konova.decorators import *
|
||||||
from konova.forms import RemoveModalForm, SimpleGeomForm, RemoveDeadlineModalForm
|
from konova.forms import RemoveModalForm, SimpleGeomForm, RemoveDeadlineModalForm, EditDocumentModalForm
|
||||||
from konova.models import Deadline
|
from konova.models import Deadline
|
||||||
from konova.sub_settings.context_settings import TAB_TITLE_IDENTIFIER
|
from konova.sub_settings.context_settings import TAB_TITLE_IDENTIFIER
|
||||||
from konova.utils.documents import get_document, remove_document
|
from konova.utils.documents import get_document, remove_document
|
||||||
@ -20,7 +20,7 @@ from konova.utils.generators import generate_qr_code
|
|||||||
from konova.utils.message_templates import FORM_INVALID, IDENTIFIER_REPLACED, DATA_UNSHARED_EXPLANATION, \
|
from konova.utils.message_templates import FORM_INVALID, IDENTIFIER_REPLACED, DATA_UNSHARED_EXPLANATION, \
|
||||||
CHECKED_RECORDED_RESET, COMPENSATION_ADDED_TEMPLATE, COMPENSATION_REMOVED_TEMPLATE, DOCUMENT_ADDED, \
|
CHECKED_RECORDED_RESET, COMPENSATION_ADDED_TEMPLATE, COMPENSATION_REMOVED_TEMPLATE, DOCUMENT_ADDED, \
|
||||||
COMPENSATION_STATE_REMOVED, COMPENSATION_STATE_ADDED, COMPENSATION_ACTION_REMOVED, COMPENSATION_ACTION_ADDED, \
|
COMPENSATION_STATE_REMOVED, COMPENSATION_STATE_ADDED, COMPENSATION_ACTION_REMOVED, COMPENSATION_ACTION_ADDED, \
|
||||||
DEADLINE_ADDED, DEADLINE_REMOVED
|
DEADLINE_ADDED, DEADLINE_REMOVED, DOCUMENT_EDITED
|
||||||
from konova.utils.user_checks import in_group
|
from konova.utils.user_checks import in_group
|
||||||
|
|
||||||
|
|
||||||
@ -286,45 +286,42 @@ def new_document_view(request: HttpRequest, id: str):
|
|||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
@default_group_required
|
@default_group_required
|
||||||
def get_document_view(request: HttpRequest, doc_id: str):
|
@shared_access_required(Compensation, "id")
|
||||||
|
def get_document_view(request: HttpRequest, id: str, doc_id: str):
|
||||||
""" Returns the document as downloadable file
|
""" Returns the document as downloadable file
|
||||||
|
|
||||||
Wraps the generic document fetcher function from konova.utils.
|
Wraps the generic document fetcher function from konova.utils.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
request (HttpRequest): The incoming request
|
request (HttpRequest): The incoming request
|
||||||
|
id (str): The compensation id
|
||||||
doc_id (str): The document id
|
doc_id (str): The document id
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
comp = get_object_or_404(Compensation, id=id)
|
||||||
doc = get_object_or_404(CompensationDocument, id=doc_id)
|
doc = get_object_or_404(CompensationDocument, id=doc_id)
|
||||||
user = request.user
|
|
||||||
instance = doc.instance
|
|
||||||
# File download only possible if related instance is shared with user
|
|
||||||
if not instance.users.filter(id=user.id):
|
|
||||||
messages.info(
|
|
||||||
request,
|
|
||||||
DATA_UNSHARED
|
|
||||||
)
|
|
||||||
return redirect("compensation:detail", id=instance.id)
|
|
||||||
return get_document(doc)
|
return get_document(doc)
|
||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
@default_group_required
|
@default_group_required
|
||||||
def remove_document_view(request: HttpRequest, doc_id: str):
|
@shared_access_required(Compensation, "id")
|
||||||
|
def remove_document_view(request: HttpRequest, id: str, doc_id: str):
|
||||||
""" Removes the document from the database and file system
|
""" Removes the document from the database and file system
|
||||||
|
|
||||||
Wraps the generic functionality from konova.utils.
|
Wraps the generic functionality from konova.utils.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
request (HttpRequest): The incoming request
|
request (HttpRequest): The incoming request
|
||||||
|
id (str): The compensation id
|
||||||
doc_id (str): The document id
|
doc_id (str): The document id
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
comp = get_object_or_404(Compensation, id=id)
|
||||||
doc = get_object_or_404(CompensationDocument, id=doc_id)
|
doc = get_object_or_404(CompensationDocument, id=doc_id)
|
||||||
return remove_document(
|
return remove_document(
|
||||||
request,
|
request,
|
||||||
@ -332,6 +329,32 @@ def remove_document_view(request: HttpRequest, doc_id: str):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
@default_group_required
|
||||||
|
@shared_access_required(Compensation, "id")
|
||||||
|
def edit_document_view(request: HttpRequest, id: str, doc_id: str):
|
||||||
|
""" Removes the document from the database and file system
|
||||||
|
|
||||||
|
Wraps the generic functionality from konova.utils.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
request (HttpRequest): The incoming request
|
||||||
|
id (str): The compensation id
|
||||||
|
doc_id (str): The document id
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
|
||||||
|
"""
|
||||||
|
comp = get_object_or_404(Compensation, id=id)
|
||||||
|
doc = get_object_or_404(CompensationDocument, id=doc_id)
|
||||||
|
form = EditDocumentModalForm(request.POST or None, request.FILES or None, instance=comp, document=doc, request=request)
|
||||||
|
return form.process_request(
|
||||||
|
request,
|
||||||
|
DOCUMENT_EDITED,
|
||||||
|
reverse("compensation:detail", args=(id,)) + "#related_data"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
@default_group_required
|
@default_group_required
|
||||||
@shared_access_required(Compensation, "id")
|
@shared_access_required(Compensation, "id")
|
||||||
|
@ -383,15 +383,6 @@ def get_document_view(request: HttpRequest, id: str, doc_id: str):
|
|||||||
"""
|
"""
|
||||||
ema = get_object_or_404(Ema, id=id)
|
ema = get_object_or_404(Ema, id=id)
|
||||||
doc = get_object_or_404(EmaDocument, id=doc_id)
|
doc = get_object_or_404(EmaDocument, id=doc_id)
|
||||||
user = request.user
|
|
||||||
instance = doc.instance
|
|
||||||
# File download only possible if related instance is shared with user
|
|
||||||
if not instance.users.filter(id=user.id):
|
|
||||||
messages.info(
|
|
||||||
request,
|
|
||||||
DATA_UNSHARED
|
|
||||||
)
|
|
||||||
return redirect("ema:detail", id=instance.id)
|
|
||||||
return get_document(doc)
|
return get_document(doc)
|
||||||
|
|
||||||
|
|
||||||
|
@ -161,7 +161,6 @@ def get_revocation_view(request: HttpRequest, doc_id: str):
|
|||||||
return redirect("intervention:detail", id=doc.instance.id)
|
return redirect("intervention:detail", id=doc.instance.id)
|
||||||
return get_document(doc)
|
return get_document(doc)
|
||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
@default_group_required
|
@default_group_required
|
||||||
@shared_access_required(Intervention, "id")
|
@shared_access_required(Intervention, "id")
|
||||||
@ -180,15 +179,6 @@ def get_document_view(request: HttpRequest, id: str, doc_id: str):
|
|||||||
"""
|
"""
|
||||||
intervention = get_object_or_404(Intervention, id=id)
|
intervention = get_object_or_404(Intervention, id=id)
|
||||||
doc = get_object_or_404(InterventionDocument, id=doc_id)
|
doc = get_object_or_404(InterventionDocument, id=doc_id)
|
||||||
user = request.user
|
|
||||||
instance = doc.instance
|
|
||||||
# File download only possible if related instance is shared with user
|
|
||||||
if not instance.users.filter(id=user.id):
|
|
||||||
messages.info(
|
|
||||||
request,
|
|
||||||
DATA_UNSHARED
|
|
||||||
)
|
|
||||||
return redirect("intervention:detail", id=instance.id)
|
|
||||||
return get_document(doc)
|
return get_document(doc)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user