/**
  * Declares an association between this object and a Transaksi object.
  *
  * @param                  Transaksi $v
  * @return DetailTransaksi The current object (for fluent API support)
  * @throws PropelException
  */
 public function setTransaksi(Transaksi $v = null)
 {
     if ($v === null) {
         $this->setIdTransaksi(NULL);
     } else {
         $this->setIdTransaksi($v->getId());
     }
     $this->aTransaksi = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Transaksi object, it will not be re-added.
     if ($v !== null) {
         $v->addDetailTransaksi($this);
     }
     return $this;
 }