Quellcode durchsuchen

Remove ** from notes pending billing

Vijayakrishnan vor 3 Jahren
Ursprung
Commit
9f07e4904c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      app/Models/Note.php

+ 1 - 1
app/Models/Note.php

@@ -53,7 +53,7 @@ class Note extends Model
             if ($this->is_billing_marked_done) $status = 'Billed';
             else if ($this->is_signed_by_hcp) $status = 'Signed';
         }
-        return $status . ' **';
+        return $status;
     }
 
     public function bills()