← Back to team overview

c2c-oerpscenario team mailing list archive

Re: [Bug 697395] Re: set callerid agi need different quoting

 

On Wednesday 05 January 2011, you wrote:
>
>... so I could write something like : if
> agi_type = SIP, I keep UTF-8
> if agi_type = ZAP, I convert to ASCII
> 
> What do you think ?

In my case (a different asterisk /engine/: "a2billing",v200) I was doing the 
utf8-to-ascii conversion in the engine, not the OpenERP part.
But this will depend on the engine's (elastix, for you?) ability to do such 
manipulations.

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
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.





References