Total fee now updates when a new fee is added
This commit is contained in:
@ -222,6 +222,10 @@ class OCCase extends RevisionableContentEntityBase implements OCCaseInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function addToTotalFee(float $amountToAdd): void {
|
||||
$this->set('total_fee', $this->total_fee->value + $amountToAdd);
|
||||
$this->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
|
@ -190,6 +190,10 @@ class OCCaseFee extends EditorialContentEntityBase implements OCCaseFeeInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getCase():\Drupal\opencase_cases\Entity\OCCase {
|
||||
return \Drupal\opencase_cases\Entity\OCCase::load($this->oc_case->target_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
Reference in New Issue
Block a user