From 3ae02445e8f819939413648e6555e7b095755fc3 Mon Sep 17 00:00:00 2001 From: camilogs Date: Tue, 8 Aug 2023 16:07:34 -0500 Subject: [PATCH] feat: #20 --- call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call.py b/call.py index 074c7d5..25c69d1 100644 --- a/call.py +++ b/call.py @@ -13,7 +13,7 @@ class Call(ModelSQL, ModelView): __name__ = 'sale.call' date = fields.Date('Date') - description = fields.Char('Description') + description = fields.Text('Description', strip=True) prospect_trace = fields.Many2One('sale.prospect_trace', 'Prospect trace')