Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unterscheidung zugewiesene/nicht zugewiesene Attrs … #18

Open
jdlx opened this issue Jun 23, 2016 · 2 comments
Open

Unterscheidung zugewiesene/nicht zugewiesene Attrs … #18

jdlx opened this issue Jun 23, 2016 · 2 comments

Comments

@jdlx
Copy link

jdlx commented Jun 23, 2016

… im Attribute tab werden scheinbar(?) alle verfügbaren Attrs des shops angezeigt ohne das ersichtlich wäre ob das jeweilige Attr dem Artikel zugeordnet ist oder nicht. Eine Aufteilung in "zugeordnet/nicht zugeordnet" wäre extrem hilfreich …

@jdlx
Copy link
Author

jdlx commented Jun 23, 2016

… oh, und ich stelle gerade fest, daß wenn man die Attrs speichert, daß die bislang nicht dem Artikel zugeordneten Attrs danach zugeordnet sind …

@DDegen
Copy link

DDegen commented Aug 6, 2016

In der "article_jxattredit.php" ist ein Fehler drin.
In Zeile 185 bekommt die Variable $sAttrValue auch wenn sie leer ist, den Inhalt '' zugewiesen, damit läuft die spätere Prüfung ob leer oder nicht ins leere.

Ändere Zeile 185-199

       $sAttrValue = $this->getConfig()->getRequestParameter( "attrval_$i" );

        $sSql = "";
        if (($sValueID != '') && ($sAttrValue != '')) {   //attribute exists and not empty value received --> update
            $sSql = "UPDATE $sOxvObject2Attribute SET oxvalue=".$oDb->quote($sAttrValue)." WHERE oxid='$sValueID' ";
        }

        if (($sValueID != '') && ($sAttrValue == '')) {   //attribute exists, but empty value --> delete from DB
            $sSql = "DELETE FROM oxobject2attribute WHERE oxid='".$sValueID."' ";
        }

        if (($sValueID == '') && ($sAttrValue != '')) {   //attribute doesn't exists, value received --> insert new value
            $sNewUid = oxUtilsObject::getInstance()->generateUID();
            $sSql = "INSERT INTO $sOxvObject2Attribute (OXID, OXOBJECTID, OXATTRID, OXVALUE, OXPOS) VALUES ('$sNewUid', '$sOXID', '$sAttrID', ".$oDb->quote($sAttrValue).", 0)";
        }

leofonic added a commit to leofonic/jxAttrEdit that referenced this issue May 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants