protected function inspectProducts()
 {
     if (isset($this->params['params']['remove']) && (bool) $this->params['params']['remove']) {
         return;
     }
     parent::inspectProducts();
 }
 protected function unsetLocks($fail = false, $message = NULL)
 {
     $this->removeFromQueueOfSKus();
     parent::unsetLocks($fail, $message);
 }
Example #3
0
 protected function inspectProducts()
 {
     if (empty($this->params['params']['remove'])) {
         parent::inspectProducts();
     }
 }
Example #4
0
 public function eventAfterProcessing()
 {
     parent::eventAfterProcessing();
     $this->removeSKUsFromQueue();
 }