Close

August 3, 2017

Quick Tip – Setting Amasty Order Attribute Values

Quick Tip we are keeping for later use. We love Amasty’s Custom Order Attributes Plugin but we couldn’t find a clean method on how to setup the order attributes for later warehouse and/or data processing after the order had been generated. Listed below is a snippet of code that is simple enough to use and expand the use of the plugin.

 
	    $attributes = Mage::getModel('amorderattr/attribute');
            $attributes->load($order_id, 'order_id');
            $attributes->setData('order_wh_status', "123woot");
            $attributes->setData('order_id', $order_id); //not sure if needed..was in their source code so I kept it.
            $attributes->save();