From c1a9ee6d083ff39832c990e4ea6d45dee1f8563a Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 12 Sep 2023 19:55:42 +1000 Subject: [PATCH] Fixes for project name --- app/Services/Quote/ConvertQuoteToProject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Quote/ConvertQuoteToProject.php b/app/Services/Quote/ConvertQuoteToProject.php index 6b1b642cd16a..59227fcfc566 100644 --- a/app/Services/Quote/ConvertQuoteToProject.php +++ b/app/Services/Quote/ConvertQuoteToProject.php @@ -36,7 +36,7 @@ class ConvertQuoteToProject }); $project = ProjectFactory::create($this->quote->company_id, $this->quote->user_id); - $project->name = ctrans('texts.quote_number_short'). " " . $this->quote->number . "[{$this->quote->client->present()->name()}]"; + $project->name = ctrans('texts.quote_number_short'). " " . $this->quote->number . " [{$this->quote->client->present()->name()}]"; $project->client_id = $this->quote->client_id; $project->public_notes = $this->quote->public_notes; $project->private_notes = $this->quote->private_notes;