Example #1
0
 public function setEntity(Model $entity)
 {
     try {
         $unitprice = $entity->getUnitprice();
     } catch (Exception $e) {
         // TODO:
         throw new AjdeException("Entity {$entity} does not have a unitprice defined");
     }
     $this->set('entity', $entity->getTable());
     $this->set('entity_id', $entity);
     $this->set('unitprice', $unitprice);
 }