add citystate-sql

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14154 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Rupa Schomaker 2009-07-08 02:34:37 +00:00
parent cf22bd9768
commit 60119c765f
1 changed files with 11 additions and 5 deletions

View File

@ -11,5 +11,11 @@ SELECT name||' ('||type||')' AS name
WHERE n.number='${caller_id_number}' WHERE n.number='${caller_id_number}'
LIMIT 1 LIMIT 1
"/> "/>
<param name="citystate-sql" value="
SELECT ratecenter||' '||state as name
FROM npa_nxx_company_ocn
WHERE npa = ${caller_id_number:1:3} AND nxx = ${caller_id_number:4:3}
LIMIT 1
"/>
</settings> </settings>
</configuration> </configuration>