From a8c6ecaa791fee37e22083683f3fa2f31006130b Mon Sep 17 00:00:00 2001
From: camilogs <camilo.gonzalez.col@gmail.com>
Date: Mon, 28 Aug 2023 20:18:28 -0500
Subject: [PATCH] =?UTF-8?q?feat:=20Se=20limita=20creaci=C3=B3n=20de=20llam?=
 =?UTF-8?q?adas=20desde=20otro=20lugar=20que=20no=20sea=20el=20asistente?=
 =?UTF-8?q?=20destinado=20a=20ello?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 call.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/call.py b/call.py
index e24f45e..ce90736 100644
--- a/call.py
+++ b/call.py
@@ -17,7 +17,7 @@ class Call(ModelSQL, ModelView):
     description = fields.Text('Description', strip=True)
 
     prospect_trace = fields.Many2One(
-        'sale.prospect_trace', 'Prospect trace', required=True)
+        'sale.prospect_trace', 'Prospect trace', required=True, states=_states)
 
     interest = fields.Selection(
         Interest.get_interest_levels(), 'Interest', required=True)