Skip to content

Commit

Permalink
Update company.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego2250 committed Nov 17, 2023
1 parent 6ede995 commit 3e2a93c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions backend/controllers/company.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"net/http"
)

// Input para crear una nueva empresa
type EmpresaInput struct {
Nombre string `json:"nombre"`
Detalles string `json:"detalles"`
Expand All @@ -18,6 +19,7 @@ type EmpresaInput struct {
Contra string `json:"contra"`
}

// Funcion para crear una nueva empresa
func NewCompany(c *gin.Context) {
var input EmpresaInput

Expand Down Expand Up @@ -45,6 +47,7 @@ func NewCompany(c *gin.Context) {

err := configs.DB.Create(&u).Error // Se agrega el usuario a la base de datos

// Si el usuario ya existe, se retorna un error
if err != nil {
if pqErr, ok := err.(*pq.Error); ok && pqErr.Code == "23505" {
c.JSON(http.StatusConflict, responses.StandardResponse{
Expand Down Expand Up @@ -84,6 +87,7 @@ func NewCompany(c *gin.Context) {
})
}

// Funcion para actualizar los datos de una empresa
func UpdateCompanies(c *gin.Context) {
var input EmpresaInput

Expand All @@ -96,6 +100,7 @@ func UpdateCompanies(c *gin.Context) {
return
}

// Se obtiene el usuario del token
user, err := utils.TokenExtractUsername(c)

if err != nil {
Expand All @@ -117,6 +122,7 @@ func UpdateCompanies(c *gin.Context) {
return
}

// Se actualizan los datos de la empresa
// No se puede actualizar el correo/id de la empresa
err = configs.DB.Model(&models.Empresa{}).Where("id_empresa = ?", input.Correo).Updates(models.Empresa{
Nombre: input.Nombre,
Expand Down

0 comments on commit 3e2a93c

Please sign in to comment.