mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Fixes for project name
This commit is contained in:
parent
7ee507e425
commit
c1a9ee6d08
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user