eco-back 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {eco_back-0.2.2/src/eco_back.egg-info → eco_back-0.2.3}/PKG-INFO +1 -1
- {eco_back-0.2.2 → eco_back-0.2.3}/pyproject.toml +1 -1
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/__init__.py +1 -1
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/registro/trazabilidad.py +3 -3
- {eco_back-0.2.2 → eco_back-0.2.3/src/eco_back.egg-info}/PKG-INFO +1 -1
- {eco_back-0.2.2 → eco_back-0.2.3}/LICENSE +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/MANIFEST.in +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/README.md +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/setup.cfg +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/api/__init__.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/api/client.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/api/config.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/api/registro.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/database/__init__.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/database/config.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/database/connection.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/database/models.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/database/postgis.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/database/repository.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/documento/__init__.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/documento/anexos.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/registro/__init__.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/utils/__init__.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/utils/exceptions.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back/utils/logger_generico.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back.egg-info/SOURCES.txt +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back.egg-info/dependency_links.txt +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back.egg-info/requires.txt +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/src/eco_back.egg-info/top_level.txt +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/tests/test_anexos.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/tests/test_api.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/tests/test_database.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/tests/test_example.py +0 -0
- {eco_back-0.2.2 → eco_back-0.2.3}/tests/test_postgis.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
from eco_back.utils.exceptions import ServiceValidationError, handle_service_validation_error
|
|
2
|
-
from eco_back.utils.logger_generico import _log_warn
|
|
3
1
|
from rest_framework.decorators import api_view, renderer_classes
|
|
4
2
|
from django.views.decorators.csrf import csrf_exempt
|
|
5
3
|
from rest_framework.renderers import JSONRenderer
|
|
6
4
|
from rest_framework import status
|
|
5
|
+
from rest_framework.response import Response
|
|
7
6
|
from registro.models.models_global import Trazabilidad
|
|
8
7
|
from registro.serializer.serializer_get import TrazabilidadSerializer
|
|
9
|
-
|
|
8
|
+
|
|
9
|
+
from eco_back.utils import ServiceValidationError, handle_service_validation_error, _log_warn
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|