|
@@ -50,7 +50,7 @@ class Note extends Model
|
|
$status = 'New';
|
|
$status = 'New';
|
|
if ($this->is_cancelled) $status = 'Cancelled';
|
|
if ($this->is_cancelled) $status = 'Cancelled';
|
|
else {
|
|
else {
|
|
- if ($this->hasTreatmentServicesBillByHCP()) $status = 'Billed';
|
|
|
|
|
|
+ if ($this->is_billing_marked_done) $status = 'Billed';
|
|
else if ($this->is_signed_by_hcp) $status = 'Signed';
|
|
else if ($this->is_signed_by_hcp) $status = 'Signed';
|
|
}
|
|
}
|
|
return $status . ' **';
|
|
return $status . ' **';
|