|
|
@@ -354,6 +354,10 @@ public abstract class AbstractChatRobot implements IChatRobot {
|
|
|
while (matcher.find()) {
|
|
|
String variableName = matcher.group(1);
|
|
|
String variableValue = bizJson.getString(variableName);
|
|
|
+ if (StringUtils.isBlank(variableValue) && "address".equalsIgnoreCase(variableName)) {
|
|
|
+ // cc_call_phone.biz_json stores the real address under the historical key detaiAdress.
|
|
|
+ variableValue = bizJson.getString("detaiAdress");
|
|
|
+ }
|
|
|
if (StringUtils.isBlank(variableValue)) {
|
|
|
variableValue = "";
|
|
|
}
|