mirror of
https://github.com/bringout/oca-ocb-crm.git
synced 2026-04-23 22:32:04 +02:00
Initial commit: Crm packages
This commit is contained in:
commit
21a345b5b9
654 changed files with 418312 additions and 0 deletions
49
odoo-bringout-oca-ocb-crm/crm/populate/tools.py
Normal file
49
odoo-bringout-oca-ocb-crm/crm/populate/tools.py
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
# lead specific values
|
||||
lead_values = {
|
||||
"active": {
|
||||
True: 0.99,
|
||||
False: 0.01
|
||||
},
|
||||
}
|
||||
|
||||
# people
|
||||
_p_forename_groups = [
|
||||
'Norbert', 'Jacqueline', 'Bastien', 'Monique',
|
||||
'Gretta', 'Juan Carlos', 'Ramon', 'Inrietta',
|
||||
'John', 'David', 'Luke', 'Beverly', 'Hillary', 'Christina',
|
||||
]
|
||||
_p_middlename_groups = [
|
||||
'Ugly Panda', 'Butterfly',
|
||||
'Neo-Tyrant', 'The Beast',
|
||||
'La Chignole', 'Le Cave', 'Gai Luron', 'La poutre',
|
||||
]
|
||||
_p_surname_groups = [
|
||||
'Poilvache', 'Tartopoils', 'Boitaclous', 'Boustifaille',
|
||||
'Campbell', 'Wonnegain', 'McShire', 'Scott', 'Doe',
|
||||
]
|
||||
|
||||
# companies
|
||||
_c_name_groups = [
|
||||
'Woody', 'Tree', 'Flower', 'Garden'
|
||||
'Furniture', 'Kitchen', 'Desk', 'Window',
|
||||
'Computer', 'CPU',
|
||||
]
|
||||
_c_surname_groups = [
|
||||
'Dealer', 'Sellers',
|
||||
'Carpenters', 'Foundry',
|
||||
]
|
||||
|
||||
# case
|
||||
_case_prefix_groups = [
|
||||
'Interested in', 'Looking for',
|
||||
'Issue with', 'Troubles with', 'Not sure where to find',
|
||||
'Want to buy', 'Want to sell', 'Want to paint',
|
||||
]
|
||||
_case_object_groups = [
|
||||
'Computer', 'Keyboard', 'Screen', 'Mouse',
|
||||
'Bed', 'Chair', 'Couch', 'Desk',
|
||||
'Toilet paper',
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue