/**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aКалендарь) {
         $this->aКалендарь->removeмобилизация($this);
     }
     if (null !== $this->aПроекты) {
         $this->aПроекты->removeмобилизация($this);
     }
     if (null !== $this->aтипытехникимобилизация) {
         $this->aтипытехникимобилизация->removeмобилизация($this);
     }
     if (null !== $this->aучасткиработмобилизация) {
         $this->aучасткиработмобилизация->removeмобилизация($this);
     }
     $this->id = null;
     $this->тип_техники = null;
     $this->план_отгрузка_количество = null;
     $this->факт_отгрузка_количество = null;
     $this->план_доставка_количество = null;
     $this->факт_доставка_количество = null;
     $this->аренда = null;
     $this->остаток_к_доставке = null;
     $this->промежуточный_пункт_количество = null;
     $this->проект = null;
     $this->дата_отчёта = null;
     $this->участок_работ = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }