Kaynağa Gözat

[common] Correctif modèle Product

refactoring
Guillaume 4 yıl önce
ebeveyn
işleme
2da1652542
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. +3
    -1
      common/models/Product.php

+ 3
- 1
common/models/Product.php Dosyayı Görüntüle

@@ -176,7 +176,9 @@ class Product extends ActiveRecordCommon
public function afterFind() {
if ($this->taxRate == null) {
$producer = Producer::searchOne(['id' => GlobalParam::getCurrentProducerId()]) ;
$this->populateRelation('taxRate', $producer->taxRate);
if($producer) {
$this->populateRelation('taxRate', $producer->taxRate);
}
//$this->populateRelation('taxRate', GlobalParam::getCurrentProducer()->taxRate);
}


Yükleniyor…
İptal
Kaydet