From 3a34f0e5f5cff403a9707b430ec7fa71d6ce5b7a Mon Sep 17 00:00:00 2001 From: MaxBuhe01 Date: Thu, 21 Nov 2024 00:00:07 +0100 Subject: [PATCH] re-add missing function --- Modules/Application/Model/D3ManufacturerLongDesc.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Modules/Application/Model/D3ManufacturerLongDesc.php b/Modules/Application/Model/D3ManufacturerLongDesc.php index 2b74109..aab79a2 100644 --- a/Modules/Application/Model/D3ManufacturerLongDesc.php +++ b/Modules/Application/Model/D3ManufacturerLongDesc.php @@ -49,4 +49,13 @@ class D3ManufacturerLongDesc extends D3ManufacturerLongDesc_parent $longName = $this->_getFieldLongName(Constants::D3_OXMANUFACTURERS_LONGDESC_FIELDNAME); return $this->$longName ?: oxNew(Field::class); } + + /** + * @return string + */ + public function getD3LongDescTableColumnName(): string + { + return $this->getViewName(true).'__'.Constants::D3_OXMANUFACTURERS_LONGDESC_FIELDNAME; + } + }