Skip to main content

Manage DataBase Models Easy.

Project description

dj-DoCodeCarga (Django-App)

N|Solid

Build Status

DoCodeCarga es una aplicacion para generar un layout en Excel en base a un modelo asi mismo permite cargar dicho layout con informacion masivamente.

Tecnologia

DoCodeDB se implementa con las siguientes librerias previamente instaladas:

  • Django - Python base framework (v2.2)
  • openpyxl - Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files.

Instalacion

Instalar por medio de pip

$ pip install dj-DoCodeCarga

Estructura de la App

La aplicacion tiene una estructura comun de una app Django

DoCodeCarga/
	procesos
	static
	templates
	templatetags
  admin.py
	apps.py
  models.py
	urls.py
	views.py

Configuracion:

Agregar la App a "INSTALLED_APPS" dentro de los settings.py

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'DoCodeCarga',
]

Uso:

views.py

  • Se incluye ambos procesos Proceso para descargar layout y Proceso para Leer Excel
# Proceso para descargar Layout
if layout.verificar(request):
        return layout.descargar(Modelo)

# Metodo para cargar Excel
result = layout.cargar(request,model)
context = {
  'titulo' : titulo,
}
return render(request, 'template.html', context)

Configuracion de Template

  • Se debe incluir el template layoutCarga.html para habilitar los botones
{% include 'layoutCarga.html' %}

Actualizacion v1.0.3

  • Se actualiza para poder utlizar la funcion choices dentro de los modelos
  • Se implementa el template layoutCarga.html

Licencia


MIT License

Copyright (c) 2020 DoCode

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dj-DoCodeCarga-1.0.3.tar.gz (9.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page