Exemplo n.º 1
0
 public function getInvoiceId()
 {
     $id = parent::getInvoiceId();
     if ($id > 0) {
         return $id;
     }
     $id = $this->getRequest()->getParam('invoice_id', 0);
     return $id;
 }
Exemplo n.º 2
0
 public function getCreditmemoId()
 {
     $id = parent::getCreditmemoId();
     if ($id > 0) {
         return $id;
     }
     $id = $this->getRequest()->getParam('creditmemo_id', 0);
     return $id;
 }
Exemplo n.º 3
0
 public function getShipmentId()
 {
     $id = parent::getShipmentId();
     if ($id > 0) {
         return $id;
     }
     $id = $this->getRequest()->getParam('shipment_id', 0);
     return $id;
 }