|
@@ -44,8 +44,8 @@ namespace Hotline.Ai.Jths
|
|
|
BatchStatus = 1,
|
|
|
SceneUid = _sceneuid,
|
|
|
Priority = 1,
|
|
|
- StartDate = aiOrderVisit.BeginTime,
|
|
|
- EndDate = aiOrderVisit.EndTime,
|
|
|
+ StartDate = aiOrderVisit.BeginTime.ToString("yyyy/MM/dd hh:mm:ss"),
|
|
|
+ EndDate = aiOrderVisit.EndTime.ToString("yyyy/MM/dd hh:mm:ss"),
|
|
|
FestivalBan = aiOrderVisit.FestivalBan,
|
|
|
RuleType = aiOrderVisit.RuleType,
|
|
|
RuleUid = _ruleuid,
|
|
@@ -61,13 +61,13 @@ namespace Hotline.Ai.Jths
|
|
|
{
|
|
|
if (!string.IsNullOrEmpty(item.Order.FromName))
|
|
|
{
|
|
|
- taskData.VariableList.Add(new Variable() { Code = "姓名", Value = item.Order.FromName });
|
|
|
+ taskData.VariableList.Add(new Variable() { Code = "OC_SCENE_VAR_FIELD11", Value = item.Order.FromName });
|
|
|
}
|
|
|
- taskData.VariableList.Add(new Variable() { Code = "gender", Value = item.Order.FromGender == EGender.Female ? "女士" : "先生" });
|
|
|
+ taskData.VariableList.Add(new Variable() { Code = "OC_SCENE_VAR_FIELD14", Value = item.Order.FromGender == EGender.Female ? "女士" : "先生" });
|
|
|
}
|
|
|
|
|
|
- taskData.VariableList.Add(new Variable() { Code = "反馈时间", Value = item.Order.CreationTime.ToString("yyyy年MM月dd日hh点mm分") });
|
|
|
- taskData.VariableList.Add(new Variable() { Code = "反馈问题", Value = item.Order.Title });
|
|
|
+ taskData.VariableList.Add(new Variable() { Code = "OC_SCENE_VAR_FIELD17", Value = item.Order.CreationTime.ToString("yyyy年MM月dd日hh点mm分") });
|
|
|
+ taskData.VariableList.Add(new Variable() { Code = "OC_SCENE_VAR_FIELD18", Value = item.Order.Title });
|
|
|
taskDataList.Add(taskData);
|
|
|
}
|
|
|
requestData.TaskDataList = taskDataList;
|