Skip to content
Code-Schnipsel Gruppen Projekte
Commit ab009a14 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

refactor: fields got new setProduct method, so they are able to decide what...

refactor: fields got new setProduct method, so they are able to decide what happens depending on the product type
Übergeordneter 6aae43ec
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -124,6 +124,15 @@ abstract class Field extends QUI\QDOM implements QUI\ERP\Products\Interfaces\Fie
*/
protected $titles = [];
/**
* Current instance of a product
* optional and only needed at the runtime instance
* this is the product from which the field are
*
* @var null
*/
protected $Product = null;
/**
* Model constructor.
*
......@@ -1309,4 +1318,12 @@ public function hasViewPermission($User = null)
return false;
}
/**
* @param $Product - Product instance
*/
public function setProduct($Product)
{
$this->Product = $Product;
}
}
......@@ -3,7 +3,6 @@
namespace QUI\ERP\Products\Field\Types;
use QUI;
use QUI\ERP\Accounting\Calc as ErpCalc;
/**
* Class AttributeGroupFrontendView
......@@ -27,6 +26,11 @@ public function create()
return $this->notChangeableDisplay();
}
if ($this->Product
&& $this->Product instanceof QUI\ERP\Products\Product\Types\Product) {
return $this->notChangeableDisplay();
}
$current = QUI::getLocale()->getCurrent();
$id = $this->getId();
......@@ -191,6 +195,6 @@ protected function notChangeableDisplay()
$Engine->assign('valueText', $text);
return $Engine->fetch(\dirname(__FILE__).'/ProductAttributeListFrontendViewNotChangeable.html');
return $Engine->fetch(\dirname(__FILE__).'/AttributeGroupFrontendViewNotChangeable.html');
}
}
{$valueText}
......@@ -148,6 +148,15 @@ class UniqueField implements QUI\ERP\Products\Interfaces\UniqueFieldInterface
*/
protected $parentFieldClass = '';
/**
* Current instance of a product
* optional and only needed at the runtime instance
* this is the product from which the field are
*
* @var null
*/
protected $Product = null;
/**
* Model constructor.
*
......@@ -210,10 +219,16 @@ public function __construct($fieldId, $params = [])
public function getView()
{
if (\defined('QUIQQER_BACKEND')) {
return $this->getBackendView();
$View = $this->getBackendView();
} else {
$View = $this->getFrontendView();
}
if ($this->Product) {
$View->setProduct($this->Product);
}
return $this->getFrontendView();
return $View;
}
/**
......@@ -683,4 +698,12 @@ public function showInDetails()
{
return $this->showInDetails;
}
/**
* @param $Product - Product instance
*/
public function setProduct($Product)
{
$this->Product = $Product;
}
}
......@@ -170,6 +170,7 @@ public function __construct($pid, $product = [])
try {
$Field = Fields::getField($field['id']);
$Field->setProduct($this);
$this->fields[$Field->getId()] = $Field;
} catch (QUI\Exception $Exception) {
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren