Parcourir la source

[common] Correctif modèle Product

refactoring
Guillaume il y a 4 ans
Parent
révision
2da1652542
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +3
    -1
      common/models/Product.php

+ 3
- 1
common/models/Product.php Voir le fichier

@@ -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);
}


Chargement…
Annuler
Enregistrer