Skip to content
Code-Schnipsel Gruppen Projekte
Commit 042ee011 erstellt von Patrick Müller's avatar Patrick Müller
Dateien durchsuchen

Merge branch 'next' into 'master'

next -> master

See merge request !18
Übergeordnete bed38475 131aa595
No related branches found
Tags 1.6.2
2 Merge Requests!140Update 'next-4.x' with latest changes from 'main',!18next -> master
Pipeline #4642 bestanden mit Phase
in 31 Sekunden
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
QUI::$Ajax->registerFunction( QUI::$Ajax->registerFunction(
'package_quiqqer_erp_ajax_products_getProductEdit', 'package_quiqqer_erp_ajax_products_getProductEdit',
function ($productId, $user) { function ($productId, $user) {
$Product = Products::getProduct($productId); $Product = Products::getProduct((int)$productId);
$Control = new ProductEdit([ $Control = new ProductEdit([
'Product' => $Product 'Product' => $Product
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
QUI::$Ajax->registerFunction( QUI::$Ajax->registerFunction(
'package_quiqqer_erp_ajax_products_getVariantChildren', 'package_quiqqer_erp_ajax_products_getVariantChildren',
function ($productId) { function ($productId) {
$Product = Products::getProduct($productId); $Product = Products::getProduct((int)$productId);
if (!($Product instanceof VariantParent)) { if (!($Product instanceof VariantParent)) {
return []; return [];
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
QUI::$Ajax->registerFunction( QUI::$Ajax->registerFunction(
'package_quiqqer_erp_ajax_products_hasProductCustomFields', 'package_quiqqer_erp_ajax_products_hasProductCustomFields',
function ($productId) { function ($productId) {
$Product = Products::getProduct($productId); $Product = Products::getProduct((int)$productId);
$fields = $Product->createUniqueProduct()->getCustomFields(); $fields = $Product->createUniqueProduct()->getCustomFields();
return count($fields); return count($fields);
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
QUI::$Ajax->registerFunction( QUI::$Ajax->registerFunction(
'package_quiqqer_erp_ajax_products_isVariantParent', 'package_quiqqer_erp_ajax_products_isVariantParent',
function ($productId) { function ($productId) {
$Product = Products::getProduct($productId); $Product = Products::getProduct((int)$productId);
return $Product instanceof VariantParent; return $Product instanceof VariantParent;
}, },
['productId'], ['productId'],
......
...@@ -426,7 +426,7 @@ public function getVat() ...@@ -426,7 +426,7 @@ public function getVat()
$Area = QUI\ERP\Defaults::getArea(); $Area = QUI\ERP\Defaults::getArea();
} }
$Product = QUI\ERP\Products\Handler\Products::getProduct($this->attributes['id']); $Product = QUI\ERP\Products\Handler\Products::getProduct((int)$this->attributes['id']);
$Vat = $Product->getField(QUI\ERP\Products\Handler\Fields::FIELD_VAT); $Vat = $Product->getField(QUI\ERP\Products\Handler\Fields::FIELD_VAT);
$TaxType = new QUI\ERP\Tax\TaxType($Vat->getValue()); $TaxType = new QUI\ERP\Tax\TaxType($Vat->getValue());
$TaxEntry = TaxUtils::getTaxEntry($TaxType, $Area); $TaxEntry = TaxUtils::getTaxEntry($TaxType, $Area);
......
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