Просмотр исходного кода

CreditHistory : createdBy et updatedBy nullable=true

feature/export_comptable
Guillaume 4 лет назад
Родитель
Сommit
d9a80c9cef
1 измененных файлов: 14 добавлений и 0 удалений
  1. +14
    -0
      ShopBundle/Model/CreditHistory.php

+ 14
- 0
ShopBundle/Model/CreditHistory.php Просмотреть файл

@@ -10,6 +10,7 @@ use Lc\ShopBundle\Context\OrderPaymentInterface;
use Lc\ShopBundle\Context\OrderRefundInterface;
use Lc\ShopBundle\Context\PayoffInterface;
use Lc\ShopBundle\Context\UserMerchantInterface;
use Gedmo\Mapping\Annotation as Gedmo;

/**
* @ORM\MappedSuperclass()
@@ -47,6 +48,19 @@ abstract class CreditHistory extends AbstractEntity implements PayoffInterface
*/
protected $orderRefund;

/**
* @Gedmo\Blameable(on="create")
* @ORM\ManyToOne(targetEntity="Lc\ShopBundle\Context\UserInterface")
* @ORM\JoinColumn(nullable=true)
*/
protected $createdBy;

/**
* @Gedmo\Blameable(on="update")
* @ORM\ManyToOne(targetEntity="Lc\ShopBundle\Context\UserInterface")
* @ORM\JoinColumn(nullable=true)
*/
protected $updatedBy;

public function getAmount(): ?float
{

Загрузка…
Отмена
Сохранить