2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Replace outcome codes 34,35 with 42,43 (Max call attempts/ Max calls reached)

This commit is contained in:
Adam Zammit
2015-08-03 14:15:48 +10:00
parent 4f91b49d50
commit d3259a2447
3 changed files with 5 additions and 5 deletions

View File

@@ -123,7 +123,7 @@ function display_outcomes($contacted,$ca,$case_id)
$sql = "SELECT outcome_id,description,contacted
FROM outcome
WHERE contacted = '$contacted'
AND outcome_id NOT IN(5,10,19,21,40,41,34,35)";
AND outcome_id NOT IN(5,10,19,21,40,41,42,43)";
}
}
else
@@ -133,7 +133,7 @@ function display_outcomes($contacted,$ca,$case_id)
$sql = "SELECT outcome_id,description,contacted
FROM outcome
WHERE contacted = '$contacted'
AND outcome_id NOT IN(5,10,19,21,40,41,34,35)";
AND outcome_id NOT IN(5,10,19,21,40,41,42,43)";
}
}
}