Cita:
Iniciado por masterpuppet No esta detectando el mapeo de las entidades(asumiendo que este existe).
Saludos.
Si masterpuppet entiendo que ese es el problema.
Realice las siguientes pruebas:
Código:
$ php app/console doctrine:generate:entities VehiculoBundle
Y me arroja el siguiente error:
Código:
Generating entities for bundle "VehiculoBundle"
[RuntimeException]
Bundle "VehiculoBundle" does not contain any mapped entities.
doctrine:generate:entities [--path="..."] [--no-backup] name
Verifico que este bien las carpetas:
Código:
ll src/Sistema/VehiculoBundle/Entity
total 16
drwxr-sr-x 2 mge www-data 4096 abr 27 13:32 ./
drwxr-sr-x 7 mge www-data 4096 abr 27 13:32 ../
-rw-r--r-- 1 mge www-data 4772 abr 28 15:48 Vehiculo.php
$ ll src/Sistema/VehiculoBundle/Entity/Vehiculo.php
-rw-r--r-- 1 mge www-data 4772 abr 28 15:48 src/Sistema/VehiculoBundle/Entity/Vehiculo.php
Luego googleando el error me encuentro con esto:
http://forum.symfony-project.org/viewtopic
El cual indica que tenia un error de sintaxis en la definición de las rutas en el archivo.
Cito mi archivo:
Código PHP:
Ver original<?php
namespace Sistema\VehiculoBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="ch_vehiculo")
*/
class Vehiculo
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue
*/
protected $id;
/** @ORM\Column(type="string", length=50, unique=true)*/
protected $dominio;
/** @ORM\Column(type="string", length=50, unique=true)*/
protected $chasis;
/** @ORM\Column(type="string", length=50, unique=true)*/
protected $motor;
/** @ORM\Column(type="integer")*/
protected $seguro;
/** @ORM\Column(type="integer")*/
protected $kmAcumulado;
/** @ORM\Column(type="string")*/
protected $observacion;
/** @ORM\Column(type="datetime")*/
protected $alta;
/** @ORM\Column(type="datetime")*/
protected $baja;
/** @ORM\Column(type="integer")*/
protected $estado;
/** @ORM\Column(type="boolean")*/
protected $activo;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set dominio
*
* @param string $dominio
* @return Vehiculo
*/
public function setDominio($dominio)
{
$this->dominio = $dominio;
return $this;
}
/**
* Get dominio
*
* @return string
*/
public function getDominio()
{
return $this->dominio;
}
/**
* Set chasis
*
* @param string $chasis
* @return Vehiculo
*/
public function setChasis($chasis)
{
$this->chasis = $chasis;
return $this;
}
/**
* Get chasis
*
* @return string
*/
public function getChasis()
{
return $this->chasis;
}
/**
* Set motor
*
* @param string $motor
* @return Vehiculo
*/
public function setMotor($motor)
{
$this->motor = $motor;
return $this;
}
/**
* Get motor
*
* @return string
*/
public function getMotor()
{
return $this->motor;
}
/**
* Set seguro
*
* @param string $seguro
* @return Vehiculo
*/
public function setSeguro($seguro)
{
$this->seguro = $seguro;
return $this;
}
/**
* Get seguro
*
* @return string
*/
public function getSeguro()
{
return $this->seguro;
}
/**
* Set kmAcumulado
*
* @param string $kmAcumulado
* @return Vehiculo
*/
public function setKmAcumulado($kmAcumulado)
{
$this->kmAcumulado = $kmAcumulado;
return $this;
}
/**
* Get kmAcumulado
*
* @return string
*/
public function getKmAcumulado()
{
return $this->kmAcumulado;
}
/**
* Set observacion
*
* @param string $observacion
* @return Vehiculo
*/
public function setObservacion($observacion)
{
$this->Observacion = $observacion;
return $this;
}
/**
* Get observacion
*
* @return string
*/
public function getObservacion()
{
return $this->observacion;
}
/**
* Set alta
*
* @param datetime $alta
* @return Vehiculo
*/
public function setAlta($alta)
{
$this->alta = $alta;
return $this;
}
/**
* Get alta
*
* @return datetime
*/
public function getAlta()
{
return $this->alta;
}
/**
* Set baja
*
* @param datetime $baja
* @return Vehiculo
*/
public function setBaja($baja)
{
$this->baja = $baja;
return $this;
}
/**
* Get baja
*
* @return datetime
*/
public function getBaja()
{
return $this->baja;
}
/**
* Set estado
*
* @param integer $estado
* @return Vehiculo
*/
public function setEstado($estado)
{
$this->estado = $estado;
return $this;
}
/**
* Get estado
*
* @return integer
*/
public function getEstado()
{
return $this->estado;
}
/**
* Set activo
*
* @param boolean $activo
* @return Vehiculo
*/
public function setActivo($activo)
{
$this->activo = $activo;
return $this;
}
/**
* Get activo
*
* @return boolean
*/
public function getActivo()
{
return $this->activo;
}
/**
* echo Class
* @return sting Id Dominio
*/
public function __toString()
{
return "(".$this->getId().") ".$this->getDominio();
}
}