我对easyadmin3有疑问。在我的管理面板中,我有一个 productCrudController,我希望在创建新产品时能够设置的值之一是价格。对于价格,我有一个单独的表格,其中包含我所有的价格和日期。这个想法是产品货车的价格会随着时间而变化,我的客户希望能够了解每种产品的价格历史。
因此,在我的 productCrudController 中,我使用一个关联字段来链接到我的价格实体。但是,我确实遇到了以下实际问题:我不想在 priceCrudController 中添加价格,然后我可以在我的 productCrudController 中进行选择(associationField 期望我这样做)。
我想要的是我可以创建一个产品并输入一个价格,然后将其插入我的价格表中。
我的代码:
productCrudController ->
现在我有一个价格字段,我可以在下拉菜单中选择价格,但是我必须先用 priceCrudController 添加价格,这确实不实用。
class ProductsCrudController extends AbstractCrudController
{
public static function getEntityFqcn(): string
{
return Products::class;
}
public function configureFields(string $pageName): iterable
{
$image = ImageField::new('image')->setBasePath('resources/images');
$imageFile = TextField::new('imageFile')->setFormType(VichImageType::class);
$fields = [
IdField::new('id', 'ID')->hideOnForm(),
TextField::new('name'),
TextEditorField::new('description'),
AssociationField::new('category'),
AssociationField::new('plants')->setTemplatePath('list.html.twig'),
NumberField::new('stock'),
AssociationField::new('prices', 'bruto price')->onlyOnIndex()->setTemplatePath('price.html.twig'),
];
if($pageName == Crud::PAGE_INDEX || $pageName == Crud::PAGE_DETAIL){
$fields[] = $image;
} else {
$fields[] = $imageFile;
}
return $fields;
}
我尝试为“价格”创建一个 numberField 以查看是否可以输入一个值,然后将其保留在数据库中,但出现以下错误:
Doctrine\ORM\PersistentCollection 类的对象无法转换为字符串
这是我的“产品”实体中的“价格”属性和方法:
/**
* @ORM\OneToMany(targetEntity=Prices::class, mappedBy="product")
* @Groups({"products:read"})
*/
private $prices;
/**
* @return Collection|Prices[]
*/
public function getPrices(): Collection
{
return $this->prices;
}
public function addPrice(Prices $price): self
{
if (!$this->prices->contains($price)) {
$this->prices[] = $price;
$price->setProduct($this);
}
return $this;
}
public function removePrice(Prices $price): self
{
if ($this->prices->removeElement($price)) {
// set the owning side to null (unless already changed)
if ($price->getProduct() === $this) {
$price->setProduct(null);
}
}
return $this;
}
我觉得我可能需要对事件侦听器做一些事情,但我真的不知道如何去做,因为我以前没有真正与他们合作过。
我会非常感谢任何帮助