Browse Source

[IMP] connector_voicent: Sort selection list

pull/191/head
Maxime Chambreuil 5 years ago
parent
commit
05fc282e6f
  1. 12
      connector_voicent/models/backend_voicent_call_line.py

12
connector_voicent/models/backend_voicent_call_line.py

@ -4,16 +4,16 @@
from odoo import fields, models
VOICENT_CONTACT_COLUMNS = [('First Name', 'First Name (Required)'),
('Last Name', 'Last Name'),
VOICENT_CONTACT_COLUMNS = [('Assigned To', 'Assigned To'),
('Business', 'Business'),
('Phone', 'Phone (Required)'),
('Email', 'Email'),
('Category', 'Category'),
('Assigned To', 'Assigned To'),
('Contact Status', 'Contact Status'),
('Email', 'Email'),
('First Name', 'First Name (Required)'),
('Last Name', 'Last Name'),
('Lead Source', 'Lead Source'),
('Other', 'Other')]
('Other', 'Other'),
('Phone', 'Phone (Required)')]
VOICENT_REPLY = [('availableagents', 'Available Agents'),
('callback', 'Callback'),

Loading…
Cancel
Save