Fatal error: Call to a member function isShippingLabelsAvailable() on a non-object in /app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php on line 132

Помогите разобраться
10.12.2011 13:35
10.12.2011 13:39
10.12.2011 14:01
10.12.2011 14:06
10.12.2011 14:07
10.12.2011 14:38
Modify the following two files: app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/View/Form.php and change their canCreateShippingLabel() method with: public function canCreateShippingLabel() { $carrier = $this->getOrder()->getShippingCarrier(); if(method_exists($carrier, 'isShippingLabelsAvailable')) { return $carrier->isShippingLabelsAvailable(); } else { return false; } }
10.12.2011 14:42