Fixed phone's redial problem, adding the ability to specify the outbound prefix in inbound route

This commit is contained in:
Riccardo Granchi
2014-11-05 09:05:35 +00:00
parent 8ffb5b2f71
commit 71ed41b567
2 changed files with 51 additions and 0 deletions

View File

@@ -57,6 +57,16 @@
$text['label-action']['pt-pt'] = "Acção";
$text['label-action']['fr-fr'] = "Action";
$text['label-redial-outbound-prefix']['en-us'] = "Redial outbound prefix";
$text['label-redial-outbound-prefix']['es-cl'] = "Redial prefijo de salida";
$text['label-redial-outbound-prefix']['pt-pt'] = "Remarcar prefixo de saída";
$text['label-redial-outbound-prefix']['fr-fr'] = "Bis préfixe pour sortant";
$text['description-redial-outbound-prefix']['en-us'] = "Effective Caller ID Number prefix";
$text['description-redial-outbound-prefix']['es-cl'] = "Prefijo par Número de Caller ID Efectivo";
$text['description-redial-outbound-prefix']['pt-pt'] = "Prefixo par Número interno";
$text['description-redial-outbound-prefix']['fr-fr'] = "Préfixe pour Numéro interne";
$text['label-limit']['en-us'] = "Limit";
$text['label-limit']['es-cl'] = "Límite";
$text['label-limit']['pt-pt'] = "Limite";

View File

@@ -23,6 +23,7 @@
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
Luis Daniel Lucio Quiroz <dlucio@okay.com.mx>
Riccardo Granchi <riccardo.granchi@nems.it>
*/
include "root.php";
require_once "resources/require.php";
@@ -55,6 +56,7 @@ require_once "resources/paging.php";
//get the http post values and set them as php variables
if (count($_POST)>0) {
$dialplan_name = check_str($_POST["dialplan_name"]);
$redial_outbound_prefix = check_str($_POST["redial_outbound_prefix"]);
$limit = check_str($_POST["limit"]);
$public_order = check_str($_POST["public_order"]);
$condition_field_1 = check_str($_POST["condition_field_1"]);
@@ -370,6 +372,33 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
unset($sql);
}
//set redial outbound prefix
if (strlen($redial_outbound_prefix) > 0) {
$dialplan_detail_uuid = uuid();
$sql = "insert into v_dialplan_details ";
$sql .= "(";
$sql .= "domain_uuid, ";
$sql .= "dialplan_uuid, ";
$sql .= "dialplan_detail_uuid, ";
$sql .= "dialplan_detail_tag, ";
$sql .= "dialplan_detail_type, ";
$sql .= "dialplan_detail_data, ";
$sql .= "dialplan_detail_order ";
$sql .= ") ";
$sql .= "values ";
$sql .= "(";
$sql .= "'$domain_uuid', ";
$sql .= "'$dialplan_uuid', ";
$sql .= "'$dialplan_detail_uuid', ";
$sql .= "'action', ";
$sql .= "'set', ";
$sql .= "'effective_caller_id_number=".$redial_outbound_prefix."\${caller_id_number}', ";
$sql .= "'72' ";
$sql .= ")";
$db->exec(check_sql($sql));
unset($sql);
}
//set fax_uuid
if (strlen($fax_uuid) > 0) {
//get the fax information
@@ -931,6 +960,18 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
echo " ".$text['label-redial-outbound-prefix'].":\n";
echo "</td>\n";
echo "<td colspan='4' class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='redial_outbound_prefix' maxlength='255' value=\"$limit\">\n";
echo "<br />\n";
echo "".$text['description-redial-outbound-prefix']."<br />\n";
echo "\n";
echo "</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
echo " ".$text['label-order'].":\n";