diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-01-12 14:20:13 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-01-12 14:20:13 +0700 |
| commit | eca50fa062424b6a7aa9b3d00649dd3db29b3ab6 (patch) | |
| tree | 9ce1da22bcdfb8c85c4b11a7b8f27eac4a3cf82c /indoteknik_custom/models/custom_mail_marketing.py | |
| parent | e74ac27eb94a05c569f9789b1f875f7c85b6dc02 (diff) | |
| parent | 0f8fbe56e89ec285c6fbcdd2bed5a67f62bcfe59 (diff) | |
Merge branch 'release' into staging
Diffstat (limited to 'indoteknik_custom/models/custom_mail_marketing.py')
| -rw-r--r-- | indoteknik_custom/models/custom_mail_marketing.py | 16 |
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') |
