introduce message field in lead form

This commit is contained in:
Tobias Brunner 2025-01-31 17:13:55 +01:00
parent 5eb40ffc4f
commit ddec9d1126
No known key found for this signature in database
7 changed files with 46 additions and 5 deletions

View file

@ -273,6 +273,7 @@ class Lead(models.Model):
company = models.CharField(max_length=200)
email = models.EmailField()
phone = models.CharField(max_length=50)
message = models.TextField(blank=True, max_length=1000)
created_at = models.DateTimeField(auto_now_add=True)
odoo_lead_id = models.IntegerField(null=True, blank=True)