2

sonata admin generator を使用して CRUD を実装しようとしています。

2 つのテーブルとベンダーとベンダーの連絡先があります。私のエンティティテーブルはこのようなものです

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
/**
* @ORM\Entity
* @ORM\Table(name="vendor")
*/
class Vendor{
   /**
 * @ORM\Id
 * @ORM\Column(type="integer")
 * @ORM\GeneratedValue(strategy="AUTO")
 */
protected $id;
/**
 * @ORM\OneToMany(targetEntity="VendorContact", mappedBy="vendor_contact")
 */
public $contact;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $name;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $userName;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $password;
/**
 * @ORM\Column(type="integer")
 */
private $status;
/**
 * @ORM\Column(type="date")
 */
protected $contractBeginDate;

/**
 * @ORM\Column(type="date")
 */
protected $contractEndDate;
/**
 * @ORM\Column(type="datetime", nullable="true")
 */
protected $createdAt;

/**
 * @ORM\Column(type="datetime", nullable="true")
 */
protected $updatedAt;

public function __construct()
{
     $this->contact = new ArrayCollection();
}

そして、私のベンダー連絡先エンティティクラスは次のようになります

       use Doctrine\ORM\Mapping as ORM;
       use Gedmo\Mapping\Annotation as Gedmo;

/**
* @ORM\Entity
* @ORM\Table(name="vendor_contact")
*/
class VendorContact{

/**
 * @ORM\Id
 * @ORM\Column(type="integer")
 * @ORM\GeneratedValue(strategy="AUTO")
 */
protected $id;
/**
 * @ORM\ManyToOne(targetEntity="Vendor", inversedBy="contact")
 * @ORM\JoinColumn(name ="vendor_id", referencedColumnName="id")
 */
protected $vendorContact;

/**
 * @ORM\Column(type="string", length=1000)
 */
protected $street;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $city;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $state;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $country;
/**
 * @ORM\Column(type="string", length=50)
 */
protected $zip;
/**
 * @ORM\Column(type="string", length=50)
 */
protected $contact_numb;
/**
 * @ORM\Column(type="string", length=100)
 */
protected $email;
/**
 * @ORM\Column(type="integer")
 */
protected $contact_type;
/**
 * @ORM\Column(type="datetime", nullable="true")
 */
protected $createdAt;

/**
 * @ORM\Column(type="datetime", nullable="true")
 */
protected $updatedAt;

私のソナタ管理者クラスは次のようなものです:

class VendorAdmin extends Admin
{

protected function configureFormFields(FormMapper $formMapper)
{
    $formMapper
    ->with('General')
    ->add('name')
    ->add('user_name','text')
    ->add('password','text')
    ->add('status')
    ->add('contract_begin_date','date')
    ->add('contract_end_date','date');
    $formMapper->add('contact', 'collection', array('type' => new VendorContactType()));
//  ->end();
    ;
}

protected function configureListFields(ListMapper $listMapper)
{
    $listMapper
    ->addIdentifier('id')
    ->add('name')
    ->add('userName')
    ->add('contractBeginDate')
    ->add('contractEndDate')
    ->add('_action', array(), array(
            'actions' => array(
                'edit' => array(),
    ),
    ))
    ;
}

}

そして、ベンダー連絡フォームビルダーは次のようになります:

  class VendorContactType extends AbstractType
  {
      public function buildForm(FormBuilder $builder, array $options)
      {
    $builder
    ->add('street')
    ->add('city')
    ->add('state')
    ->add('country')
    ->add('zip')
    ->add('contact_numb')
    ->add('email')
    ->add('contact_type')
    ;
}

public function getName()
{
    return 'vendor_contact';
}

public function getDefaultOptions(array $options){
    return array('data_class' => 'JiniVod\StoreBundle\Entity\VendorContact');
}
}

しかし、sonata admin crud 関数を使用してこのベンダーの追加を実行すると、ベンダーの連絡先のフォーム フィールドが取得されません。レーベルの連絡先しか来ない

誰でも私を助けてください。

前もって感謝します。

4

1 に答える 1

1

'collection' Typeを使用する代わりに、'sonata_type_model'を使用する必要があります

于 2012-03-21T20:02:48.973 に答える