|
Este é o código da pagina itens.php da pasta create
<?php
class Mage_Adminhtml_Block_Sales_Order_Shipment_Create_Items extends Mage_Adminhtml_Block_Sales_Items_Abstract
{
/**
* Retrieve invoice order
*
* @return Mage_Sales_Model_Order
*/
public function getOrder()
{
return $this->getShipment()->getOrder();
}
/**
* Retrieve source
*
* @return Mage_Sales_Model_Order_Invoice
*/
public function getSource()
{
return $this->getShipment();
}
/**
* Retrieve shipment model instance
*
* @return Mage_Sales_Model_Order_Shipment
*/
public function getShipment()
{
return Mage::registry(’current_shipment’);
}
/**
* Prepare child blocks
*/
protected function _beforeToHtml()
{
$this->setChild(
‘submit_button’,
$this->getLayout()->createBlock(’adminhtml/widget_button’)->setData(array(
‘label’ => Mage::helper(’sales’)->__(’Submit Shipment’),
‘class’ => ‘save submit-button’,
‘onclick’ => ‘submitShipment(this);’,
))
);
return parent::_beforeToHtml();
}
/**
* Format given price
*
* @param float $price
* @return string
*/
public function formatPrice($price)
{
return $this->getShipment()->getOrder()->formatPrice($price);
}
/**
* Retrieve HTML of update button
*
* @return string
*/
public function getUpdateButtonHtml()
{
return $this->getChildHtml(’update_button’);
}
/**
* Get url for update
*
* @return string
*/
public function getUpdateUrl()
{
return $this->getUrl(’*/*/updateQty’, array(’order_id’=>$this->getShipment()->getOrderId()));
}
/**
* Check possibility to send shipment email
*
* @return bool
*/
public function canSendShipmentEmail()
{
return Mage::helper(’sales’)->canSendNewShipmentEmail($this->getOrder()->getStore()->getId());
}
/**
* Checks the possibility of creating shipping label by current carrier
*
* @return bool
*/
public function canCreateShippingLabel()
{
return $this->getOrder()->getShippingCarrier()->isShippingLabelsAvailable();
}
}
|