|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
-
- namespace domain\Product\Rotating;
-
- use common\components\ActiveRecordCommon;
- use common\components\Date;
- use domain\Producer\Producer\Producer;
- use domain\Product\RotatingProduct\RotatingProduct;
- use yii\db\ActiveQuery;
-
- class Rotating extends ActiveRecordCommon
- {
- // Produits sélectionnés dans le formulaire
- public $selected_products_ids;
-
- public static function tableName()
- {
- return 'rotating';
- }
-
- public function rules()
- {
- return [
- [['id_producer', 'name', 'day'], 'required'],
- [['name'], 'string', 'max' => 255],
- [['id_producer', 'day', 'status'], 'integer'],
- [['selected_products_ids'], 'safe'],
- ];
- }
-
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'id_producer' => 'Producteur',
- 'name' => 'Nom',
- 'day' => 'Jour',
- 'status' => 'Statut',
- ];
- }
-
- /* Getters / Setters */
-
- public function getId(): ?int
- {
- return $this->id;
- }
-
- public function getProducer(): Producer
- {
- return $this->producerRelation;
- }
-
- public function setProducer(Producer $producer): self
- {
- $this->populateFieldObject('id_producer', 'producerRelation', $producer);
- return $this;
- }
-
- public function getName(): string
- {
- return $this->name;
- }
-
- public function setName(string $name): self
- {
- $this->name = $name;
- return $this;
- }
-
- public function getDay(): int
- {
- return $this->day;
- }
-
- public function setDay(int $day): self
- {
- $this->day = $day;
- return $this;
- }
-
- public function getStatus(): int
- {
- return $this->status;
- }
-
- public function setStatus(int $status): self
- {
- $this->status = $status;
- return $this;
- }
-
- public function getSelectedProductsIds()
- {
- return $this->selected_products_ids;
- }
-
- public function setSelectedProductsIds(array $selectedProductsIdsArray): self
- {
- $this->selected_products_ids = $selectedProductsIdsArray;
- return $this;
- }
-
- public function getRotatingProducts(): array
- {
- return $this->rotatingProductsRelation;
- }
-
- /* Relations */
-
- public function getProducerRelation(): ActiveQuery
- {
- return $this->hasOne(Producer::class, ['id' => 'id_producer']);
- }
-
- public function getRotatingProductsRelation()
- {
- return $this->hasMany(RotatingProduct::class, ['id_rotating' => 'id']);
- }
-
- /* Méthodes */
-
- public function getDayAsString(): string
- {
- return Date::getDayOfWeekStringByNumber($this->getDay());
- }
- }
|