summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/custom_mail_marketing.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2023-01-11 09:26:02 +0700
committerstephanchrst <stephanchrst@gmail.com>2023-01-11 09:26:02 +0700
commitaff29db4fe020684f83e5e6449bf0a4061d77036 (patch)
treecaf5d6cdbab36a7c54b1d32c491a51fa29e7b048 /indoteknik_custom/models/custom_mail_marketing.py
parent7499b798a75a3dec8fc41d28e091f7df1a3c19d6 (diff)
add custom mail marketing
Diffstat (limited to 'indoteknik_custom/models/custom_mail_marketing.py')
-rw-r--r--indoteknik_custom/models/custom_mail_marketing.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/indoteknik_custom/models/custom_mail_marketing.py b/indoteknik_custom/models/custom_mail_marketing.py
new file mode 100644
index 00000000..8a81974f
--- /dev/null
+++ b/indoteknik_custom/models/custom_mail_marketing.py
@@ -0,0 +1,16 @@
+from odoo import fields, models, api, _
+
+
+class CustomMailMarketing(models.Model):
+ _name = 'custom.mail.marketing'
+
+ col1_string = fields.Char(string='col1_string')
+ col2_string = fields.Char(string='col2_string')
+ col3_string = fields.Char(string='col3_string')
+ col4_string = fields.Char(string='col4_string')
+ col5_string = fields.Char(string='col5_string')
+ col6_string = fields.Char(string='col6_string')
+ col7_string = fields.Char(string='col7_string')
+ col8_string = fields.Char(string='col8_string')
+ col9_string = fields.Char(string='col9_string')
+ col10_string = fields.Char(string='col10_string')