Git Product home page Git Product logo

sigulab2's Introduction

Hi there 👋

Welcome to my space 😃

  • 🔭 I’m currently working at Abtion A/S as a Sotware Engineer specialized in Ruby on Rails.
  • 🌱 I’m currently learning Microservices with NodeJS and React.
  • 🤔 I’m looking for help with projects in cibersecurity.

sigulab2's People

Contributors

aitorres avatar alemarrero avatar angelicacosta avatar aurica32 avatar cocococosti avatar danielrs975 avatar davideluque avatar donbract avatar edwinmurillo avatar elvinquero avatar esft24 avatar gabogg07 avatar german1608 avatar giulianne17 avatar gustavoaca1997 avatar iankz avatar jfuenmayor96 avatar jwricauter avatar lautarovc avatar magajh avatar mandi94 avatar manuelitod avatar mariajgrimaldi avatar martinezfabiola avatar moisesgonzalezs avatar nairelyshzdev avatar raulrbm avatar saar1312 avatar swsandra avatar yariluciani avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

sigulab2's Issues

Nombre de atributo de tabla principal inválido para módulo de servicios

El cambio de nombre de un atributo de la tabla espacios_fisicos en modelos_base.py afecta al módulo de servicios causando un bug en todo el funcionamiento del módulo.

Comportamiento esperado: funcionamiento normal del módulo de servicios. Es posible añadir, eliminar servicios, visualizar ficha de servicios, solicitar, entre otros.

Comportamiento actual: no es posible añadir, editar servicios, visualizar fichas, solicitar servicios, etc.

Código que causa el error:
db.define_table(
'espacios_fisicos',
#Atributos;
Field('nombre', 'string', unique=True, notnull=True, label=T('Nombre')),
Field('uso', 'string', notnull=True, label=T('Uso del espacio físico')),
#Referencia (Revisar si el label es asistio o organizo)
Field('dependencia', 'reference dependencias',
requires=IS_IN_DB(db, db.dependencias.id, '%(nombre)s', zero=None), label=T('Dependencia'))
, migrate=False)

Solución propuesta: regresar a la definición previa de la tabla.
db.define_table(
'espacios_fisicos',
#Atributos;
Field('codigo', 'string', unique=True, notnull=True, label=T('Código del espacio físico')),
Field('uso', 'string', notnull=True, label=T('Uso del espacio físico')),
#Referencia (Revisar si el label es asistio o organizo)
Field('dependencia', 'reference dependencias',
requires=IS_IN_DB(db, db.dependencias.id, '%(nombre)s', zero=None), label=T('Dependencia'))
, migrate=False)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.