Skip to content

Commit

Permalink
Merge pull request #82 from Escodoo/14.0-imp-epa_sale_crm_custom-prefix
Browse files Browse the repository at this point in the history
[14.0][IMP] epa_sale_crm_custom: remove prefix from name when creating analytic account
  • Loading branch information
marcelsavegnago authored Jan 6, 2025
2 parents a86f21a + cd8f2ae commit 2ee7704
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def action_confirm(self):
self.ensure_one()
if self.create_new_analytic:
values = {
"name": self.lead_id.name,
"name": self.lead_id.name[3:],
"code": self.lead_id.alias_name,
"partner_id": self.lead_id.partner_id.id,
}
Expand Down

0 comments on commit 2ee7704

Please sign in to comment.