I'm trying to attach a idempresa field to the sfDoctrineGuardPlugin but can't get it to work. This is the schema.yml (just relevant tables) for those tables:
SdrivingEmpresa:
connection: doctrine
tableName: sdriving_empresa
columns:
idempresa:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: true
idlogotipo:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: false
nombre_empresa:
type: string(250)
fixed: false
unsigned: false
primary: false
notnull: true
autoincrement: false
ruta_emp:
type: string(45)
fixed: false
unsigned: false
primary: false
notnull: true
autoincrement: false
relations:
SdrivingLogotipo:
local: idlogotipo
foreign: idlogotipo
type: one
SdrivingEmisor:
local: idempresa
foreign: idempresa
type: many
SdrivingMaquina:
local: idempresa
foreign: idempresa
type: many
SdrivingOperador:
local: idempresa
foreign: idempresa
type: many
SdrivingTurno:
local: idempresa
foreign: idempresa
type: many
SfGuardUserProfile:
local: idempresa
foreign: idempresa
type: many
SfGuardUserProfile:
connection: doctrine
tableName: sf_guard_user_profile
columns:
user_id:
type: integer(8)
fixed: false
unsigned: false
primary: false
notnull: true
autoincrement: false
idempresa:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: false
relations:
SfGuardUser:
local: user_id
foreign: id
type: one
SdrivingEmpresa:
local: idempresa
foreign: idempresa
type: one
If I run this:
# php symfony doctrine:dql "FROM sfGuardUser u, u.SfGuardUserProfile p"
>> doctrine executing dql query
I get this error:
>> DQL: FROM sfGuardUser u, u.SfGuardUserProfile p
>> Unknown relation alias SfGuardUserProfile
What I'm doing wrong? Where is my mistake?
try adding a foreignAlias for sfGuardUser in SfGuardUserProfile entity, like:
relations:
SfGuardUser:
local: user_id
foreign: id
type: one
foreignAlias: SfGuardUserProfile
Related
I have a symfony application where people can create a "object". The symfony form gets built with the structure provided in a config yaml file. Once the user then submits the form, the whole structure from the config file will then be persisted into my database and all the formdata will be saved into one big array in the database.
Here is my config file:
parameters:
stmoritz:
fw:
enabled: true
name: 'Configuration St. Moritz'
category: 'Configuration St. Moritz'
template: admin/operational-plans/fw_stmoritz.html.twig
ioiTemplate: admin/operational-plans/fw_stmoritz.html.twig
options:
maxChars: ~
maxImages: ~
stamp: FW_STMORITZ
wrapClass: 'stmoritz'
view_structure:
object_location:
- name
- category
- address
- zip_city
- coordinates
object_contact:
- objcontact
- important_numbers
- contact
firefighting:
- keybox
- key_coordinates
- bmt
- bmt_coordinates
- bma_code
- plans
damage_organisation:
- entryway
- waitingroom
- watersources
- trafficdiversion
- important_tools
- required_tools
- matdepot
- persdepot
- evacuation
- woundedcamp
object_info:
- buildtype
- likelyness
- potential_damages
- floors
- stairs
- elevators
- fireclosures
- lower_floors
- ground_floor
- upper_floors
- escaperoutes
- dangers
- special
attachment_choices:
-
- keybox
- bmt
- plans
- entryway
- waitingroom
- watersources
- trafficdiversion
- evacuation
- woundedcamp
- fireclosures
- lower_floors
- ground_floor
- upper_floors
- escaperoutes
- special
components:
- name: name
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: true
mapped: true
operation_view: true
- name: category
type: \Symfony\Component\Form\Extension\Core\Type\ChoiceType
options:
required: true
mapped: true
multiple: true
expanded: true
operation_view: true
- name: address
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: true
mapped: true
operation_view: true
- name: zip_city
type: \Symfony\Component\Form\Extension\Core\Type\ChoiceType
options:
required: true
mapped: true
multiple: false
expanded: false
operation_view: true
- name: coordinates
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: true
mapped: true
operation_view: true
- name: objcontact
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: important_numbers
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: contact
type: \Symfony\Bridge\Doctrine\Form\Type\EntityType
options:
multiple: false
expanded: false
required: false
mapped: true
class: \App\Entity\Contact
operation_view: true
- name: keybox
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: key_coordinates
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: bmt
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: bmt_coordinates
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: bma_code
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: plans
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: entryway
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: waitingroom
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: watersources
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: trafficdiversion
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: important_tools
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: required_tools
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: matdepot
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: persdepot
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: evacuation
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: woundedcamp
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: buildtype
type: \Symfony\Component\Form\Extension\Core\Type\ChoiceType
options:
required: false
mapped: true
multiple: true
expanded: true
operation_view: true
- name: likelyness
type: \Symfony\Component\Form\Extension\Core\Type\ChoiceType
options:
required: false
mapped: true
multiple: true
expanded: true
operation_view: true
- name: potential_damages
type: \Symfony\Component\Form\Extension\Core\Type\ChoiceType
options:
required: false
mapped: true
multiple: true
expanded: true
operation_view: true
- name: floors
type: \Symfony\Component\Form\Extension\Core\Type\IntegerType
options:
required: false
mapped: true
operation_view: true
- name: stairs
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: elevators
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: fireclosures
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: lower_floors
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: false
- name: ground_floor
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: false
- name: upper_floors
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: false
- name: escaperoutes
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
- name: dangers
type: \Symfony\Component\Form\Extension\Core\Type\ChoiceType
options:
required: false
mapped: true
multiple: true
expanded: true
operation_view: true
- name: special
type: \Symfony\Component\Form\Extension\Core\Type\TextType
options:
required: false
mapped: true
operation_view: true
And here is my entity:
<?php
namespace App\Entity;
use App\Repository\ObjectsRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* #ORM\Entity(repositoryClass=ObjectsRepository::class)
*/
class Objects
{
/**
* #ORM\Id
* #ORM\GeneratedValue
* #ORM\Column(type="integer")
*/
private $id;
/**
* #ORM\Column(type="json")
*/
private $formdata = [];
/**
* #ORM\Column(type="array")
*/
private $structure = [];
/**
* #ORM\OneToMany(targetEntity=Attachment::class, mappedBy="object", orphanRemoval=true)
*/
private $attachments;
/**
* #ORM\ManyToOne(targetEntity=Contact::class, inversedBy="objects")
* #ORM\JoinColumn(nullable=false)
*/
private $contact;
/**
* #ORM\Column(type="datetime")
*/
private $date_updated;
/**
* #ORM\Column(type="datetime")
*/
private $date_validated;
/**
* #ORM\Column(type="string", length=255)
*/
private $status;
public function __construct()
{
$this->attachments = new ArrayCollection();
}
public function __toString()
{
$string = implode("", $this->formdata);
return json_decode($string);
}
public function getId(): ?int
{
return $this->id;
}
public function getFormdata(): ?array
{
return $this->formdata;
}
public function setFormdata(array $formdata): self
{
$this->formdata = $formdata;
return $this;
}
public function getStructure(): ?array
{
return $this->structure;
}
public function setStructure(array $structure): self
{
$this->structure = $structure;
return $this;
}
/**
* #return Collection|Attachment[]
*/
public function getAttachments(): Collection
{
return $this->attachments;
}
public function addAttachment(Attachment $attachment): self
{
if (!$this->attachments->contains($attachment)) {
$this->attachments[] = $attachment;
$attachment->setObject($this);
}
return $this;
}
public function removeAttachment(Attachment $attachment): self
{
if ($this->attachments->removeElement($attachment)) {
// set the owning side to null (unless already changed)
if ($attachment->getObject() === $this) {
$attachment->setObject(null);
}
}
return $this;
}
public function getContact(): ?Contact
{
return $this->contact;
}
public function setContact(?Contact $contact): self
{
$this->contact = $contact;
return $this;
}
public function getDateUpdated(): ?\DateTimeInterface
{
return $this->date_updated;
}
public function setDateUpdated(\DateTimeInterface $date_updated): self
{
$this->date_updated = $date_updated;
return $this;
}
public function getDateValidated(): ?\DateTimeInterface
{
return $this->date_validated;
}
public function setDateValidated(\DateTimeInterface $date_validated): self
{
$this->date_validated = $date_validated;
return $this;
}
public function getStatus(): ?string
{
return $this->status;
}
public function setStatus(string $status): self
{
$this->status = $status;
return $this;
}
}
I have made custom fields to extract some of the values I want from that array to then show it in my easyadmin index, but my problem is now whenever I try to sort one of the columns it sorts (or tries to sort) all the columns that use data from the array as you can see in the picture below:
I think this is cause because easyadmin makes a db request everytime one of the sorts is being pressed but I have no idea how I could bypass this and fix the sorting.
If there is any more files that I should provide please let me know
I have a problem with behat in symfony 2. I have two entities:
//Transaction
DM\MultiStepFormBundle\Entity\Transaction:
type: entity
repositoryClass: DM\MultiStepFormBundle\Repository\Transaction\TransactionRepository
table: rb_multistepform_transaction
indexes:
transaction_id_index:
columns: [ transaction_id ]
id:
id:
type: integer
generator: { strategy: AUTO }
fields:
created_at:
type: datetime
nullable: false
transaction_id:
type: string
length: 128
nullable: false
is_client_new:
type: boolean
options:
default: false
utm_source:
type: string
length: 255
nullable: true
utm_medium:
type: string
length: 255
nullable: true
utm_campaign:
type: string
length: 255
nullable: true
user_agent:
type: text
nullable: true
http_referer:
type: string
length: 255
nullable: true
ip:
type: string
length: 32
nullable: true
status:
type: smallint
nullable: false
options:
default: 0
continue_service_run:
type: boolean
nullable: false
options:
default: false
continue_serivce_run_datetime:
type: datetime
nullable: true
oneToMany:
items:
targetEntity: DM\MultiStepFormBundle\Entity\TransactionItem
mappedBy: transaction
cascade: [persist, merge, remove]
manyToOne:
client:
targetEntity: DM\KlienciBundle\Entity\Client
inversedBy: multistepform_transactions
joinColumn:
name: client_id
referencedColumnName: id
//TransactionItem
DM\MultiStepFormBundle\Entity\TransactionItem:
type: entity
repositoryClass: DM\MultiStepFormBundle\Repository\Transaction\TransactionRepository
table: rb_multistepform_transaction_item
id:
id:
type: integer
generator: { strategy: AUTO }
indexes:
partner_status_index:
columns: [ partner_name, status ]
fields:
type:
type: smallint
nullable: false
partner_name:
type: string
length: 128
nullable: true
status:
type: smallint
nullable: false
options:
default: 0
link_id:
type: integer
nullable: true
product_id:
type: integer
nullable: true
pixelconversion_hash:
type: string
length: 128
nullable: true
partner_api_response:
type: json_array
nullable: true
clicked:
type: boolean
nullable: false
options:
default: 0
clicked_datetime:
type: datetime
nullable: true
order_nr:
type: integer
nullable: true
highlighted:
type: boolean
nullable: false
options:
default: false
manyToOne:
transaction:
targetEntity: DM\MultiStepFormBundle\Entity\Transaction
inversedBy: items
cascade: [persist, merge, remove]
joinColumn:
name: transaction_id
referencedColumnName: id
When i testing a service where I have such loops:
$transactions = $this->transactionRepository->getTransactionsByContinueServiceRunInDateRange(0, $minDateTime, $maxDateTime);
foreach ($transactions as $transactionKey => $singleTransaction) {
//in this place, relationships are not taken
$transactionItems = $singleTransaction->getItems();
//when it performs a test query items are downloaded correctly
$transactionItemsQuery = $this->transactionRepository->getItems($singleTransaction->getId());
}
In which i needs to get items from the reverse relation. With a normal call to the site in symfony, the relationships are correct and everything is ok.
In the case of activating test in behat, relations in the variable $transactionItems are an empty collection. The data surely exists in the database because in the variable $transactionItemsQuery as I get data from query I have correct data.
Has anyone ever encountered something like that in behat?
I'm "enhancing" a legacy datamodel with referential integrity using doctrine ORM inside Symfony.
I have this schema yml definition
AppBundle\Entity\QualityDataItems:
type: entity
table: quality_data_items
id:
rfi_id:
type: integer
options:
unsigned: false
id: true
rfi_type:
type: string
length: 10
id: true
manyToOne:
RfiPeople:
targetEntity: QualityDataItemsPeople
joinColumn:
rfi_type:
referencedColumnName: rfi_type_id
rfi_id:
referencedColumnName: rfi_id
fields:
issue_text:
type: text
nullable: true
length: 65535
response_text:
type: text
nullable: true
length: 65535
resolution_text:
type: text
nullable: true
length: 65535
add_to_report:
type: integer
nullable: true
options:
unsigned: false
default: '0'
add_to_report_date:
type: datetime
nullable: true
issue_cause:
type: integer
nullable: true
issue_type:
type: integer
nullable: true
issue_sub_type:
type: integer
nullable: true
linked_to_id:
type: integer
nullable: true
status_id:
type: integer
nullable: true
AppBundle\Entity\QualityDataItemsPeople:
type: entity
table: quality_data_items_people
id:
rfi_ppl_idx:
type: integer
generator: { strategy: AUTO }
manyToOne:
RfiJob:
targetEntity: RfiJob
joinColumn:
name: rfi_id
referencedColumnName: rfi_id
RfiType:
targetEntity: RfiType
joinColumn:
name: rfi_type
referencedColumnName: rfi_type_id
fields:
rfi_id:
type: integer
rfi_type:
type: string
length: 10
user_id:
type: integer
when I run
bin/console doctrine:generate:entities AppBundle
bin/console doctrine:schema:update --dump-sql
I get:
[Doctrine\ORM\ORMException] Column name 'id' referenced for relation from AppBundle\Entity\QualityDataItems towards AppBundle\Entity\QualityDataItemsPeople does not exist.
There is no column named id in these tables. I also deleted the Entity classes to be sure there is nothing in there
Either it's not documented or supported, but could you give this a try?
manyToOne:
RfiPeople:
targetEntity: QualityDataItemsPeople
joinColumns:
- joinColumn:
name: rfi_type_id
referencedColumnName: rfi_type_id
- joinColumn:
name: rfi_id
referencedColumnName: rfi_id
I have this file:
#src/Jander/JanderBundle/resources/config/doctrine/metadata/orm/
Propuestas.orm.yml
Propuestas:
type: entity
table: propuestas
fields:
id:
id: true
type: integer
unsigned: false
nullable: false
generator:
strategy: IDENTITY
contenido:
type: string
length: 230
fixed: false
nullable: false
lifecycleCallbacks: { }
I have just added a new field like this:
Propuestas:
type: entity
table: propuestas
fields:
id:
id: true
type: integer
unsigned: false
nullable: false
generator:
strategy: IDENTITY
contenido:
type: string
length: 230
fixed: false
nullable: false
contenido2:
type: string
length: 230
fixed: false
nullable: false
lifecycleCallbacks: { }
and then I'm trying to generate the entity with the new field and I
get this:
$ php app/console doctrine:generate:entities "JanderJanderBundle"
backing up Propuestas.php to Propuestas.php~
generating Volumus\VolumusBundle\Entity\Propuestas
but when I open Propuestas.php there isn't any reference about
"contenido2".
Any idea?
Clearing the cache solves the problem. This is strange, make sure your cache permissions are fine.
I'm trying to create entity classes. I am using yml files from Resources/config/doctrine folder.
Category.orm.yml
Marek\JobeetBundle\Entity\Category:
type: entity
table: null
fields:
id:
type: integer
id: true
generator:
strategy: IDENTITY
name:
type: string
length: '255'
unique: true
manyToMany:
affiliates:
targetEntity: Marek\JobeetBundle\Entity\Affiliate
joinTable:
name: CategoryAffiliate
joinColumns:
category_id:
referencedColumnName: id
inverseJoinColumns:
affiliate_id:
referencedColumnName: id
lifecycleCallbacks: { }
Affilate.orm.yml
Marek\JobeetBundle\Entity\Affiliate:
type: entity
table: null
fields:
id:
type: integer
id: true
generator:
strategy: IDENTITY
url:
type: string
length: '255'
nullable: true
email:
type: string
length: '255'
nullable: true
unique: true
token:
type: string
length: '255'
isActive:
type: boolean
nullable: false
column: is_active
default: 0
createdAt:
type: datetime
column: created_at
gedmo:
timestampable:
on: create
manyToMany:
categories:
targetEntity: Marek\JobeetBundle\Entity\Category
mappedBy: affiliates
lifecycleCallbacks: { }
Job:
Marek\JobeetBundle\Entity\Job:
type: entity
table: null
fields:
id:
type: integer
id: true
generator:
strategy: IDENTITY
type:
type: string
length: '255'
company:
type: string
length: '255'
nullable: true
logo:
type: string
length: '255'
url:
type: string
length: '255'
nullable: true
position:
type: string
length: '255'
nullable: true
location:
type: string
length: '255'
description:
type: string
length: '4000'
howToApply:
type: string
length: '4000'
column: how_to_apply
token:
type: string
length: '255'
unique: true
isPublic:
type: boolean
length: null
column: is_public
isActivated:
type: boolean
length: null
column: is_activated
email:
type: string
length: '255'
createdAt:
type: datetime
column: created_at
gedmo:
timestampable:
on: create
updatedAt:
type: datetime
column: updated_at
gedmo:
timestampable:
on: update
expiresAt:
type: datetime
column: expires_at
oneToOne:
category:
targetEntity: Marek\JobeetBundle\Entity\Category
cascade: { }
mappedBy: null
inversedBy: null
joinColumns:
category_id:
referencedColumnName: id
orphanRemoval: false
lifecycleCallbacks: { }
After executing:
php app/console doctrine:generate:entities JobeetBundle --path="src"
I am getting:
Warning: class_parent(): Class Marek\JobeetBundle\Entity\Affiliate
does not exists and could not be loaded in
vendor/gedmo-doctrine-extension\lib\Gedmo\Mapping\ExtensionMetadataFactory.php
on line 80.
I know that I have not any entities I want to create them.
Could somebody help?
This may be caused by an invalid assumption in Gedmo. Try commenting out the entire stof_doctrine_extensions block in your config.yml and then running the generate command. If it works, you should be able to uncomment the config and get back to work.