Exemplo n.º 1
0
 /**
  * Set the spool list for an import
  *
  * Method will set the unexecuted records in the accountingspool to be available for import
  *
  * @access public
  * @return bool TRUE if the setting was succesful, FALSE on error
  */
 public function setAccountingSpoolImport()
 {
     $lock = $this->getAccountingSessionKey('UUID');
     if (!$lock || $lock == '') {
         return false;
     }
     return parent::setAccountingSpoolImport($this->getid(), $lock);
 }