Fix invoices not being generated when price is null, service update rendering updates
This commit is contained in:
@@ -1190,7 +1190,7 @@ class Service extends Model implements IDs
|
||||
*/
|
||||
public function isBilled(): bool
|
||||
{
|
||||
return ! ($this->external_billing || $this->suspend_billing || ($this->price == 0));
|
||||
return ! ($this->external_billing || $this->suspend_billing || ($this->price === 0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user