openerp-community team mailing list archive
-
openerp-community team
-
Mailing list archive
-
Message #00194
[Bug 697395] Re: set callerid agi need different quoting
** Changed in: openobject-addons
Assignee: OpenERP Community (openerp-community) => Alexis de Lattre (alexis-via)
--
You received this bug notification because you are a member of OpenERP
Community, which is a bug assignee.
https://bugs.launchpad.net/bugs/697395
Title:
set callerid agi need different quoting
Status in OpenObject Addons Modules:
New
Bug description:
We upgrade the module to the version which supports adaptation of the callerid (name, num) based upon data available in our OpenERP installation. We use asterisk 1.6 and had to change the script get_cid_name.py and replace the line:
sys.stdout.write('SET CALLERID "%s" <%s>\n' % (res_ascii, input_cid_number))
with
sys.stdout.write('SET CALLERID "%s<%s>"\n' % (res_ascii, input_cid_number))
Note the difference in the location of the quote. After that, everything works out pretty well.
Without this change the callerid (name) would be set properly, but the callerid(num) would be empty.