|
|
@@ -328,7 +328,7 @@ namespace CallCenterApi.Interface.Controllers.weixin
|
|
328
|
328
|
}
|
|
329
|
329
|
#endregion
|
|
330
|
330
|
|
|
331
|
|
- string cols = "F_WorkOrderId,F_ComTitle,F_CreateTime,F_InfoType,dbo.GetDictionaryName(F_InfoType) as F_TypeName,(case F_WorkState when 0 then 0 when 9 then 2 else 1 end) F_Statu,(case F_WorkState when 0 then '等待处理' when 9 then '处理完结' else '正在处理' end) F_Status";
|
|
|
331
|
+ string cols = "F_WorkOrderId,F_CusName,F_CusPhone,F_ComTitle,F_CreateTime,F_InfoType,dbo.GetDictionaryName(F_InfoType) as F_TypeName,(case F_WorkState when 0 then 0 when 9 then 2 else 1 end) F_Statu,(case F_WorkState when 0 then '等待处理' when 9 then '处理完结' else '正在处理' end) F_Status";
|
|
332
|
332
|
int recordCount = 0;
|
|
333
|
333
|
var dt = BLL.PagerBLL.GetListPager(
|
|
334
|
334
|
"T_Bus_WorkOrder",
|
|
|
@@ -484,6 +484,8 @@ namespace CallCenterApi.Interface.Controllers.weixin
|
|
484
|
484
|
var obj = new
|
|
485
|
485
|
{
|
|
486
|
486
|
ordermodel.F_WorkOrderId,
|
|
|
487
|
+ ordermodel.F_CusName,
|
|
|
488
|
+ ordermodel.F_CusPhone,
|
|
487
|
489
|
ordermodel.F_ComTitle,
|
|
488
|
490
|
ordermodel.F_ComContent,
|
|
489
|
491
|
ordermodel.F_CreateTime,
|
|
|
@@ -778,7 +780,7 @@ namespace CallCenterApi.Interface.Controllers.weixin
|
|
778
|
780
|
/// <returns></returns>
|
|
779
|
781
|
protected List<FileModel> GetFileData(string ids)
|
|
780
|
782
|
{
|
|
781
|
|
- var config = new BLL.T_Sys_SystemConfig().GetModelList(" F_ParamCode='PlayPath' ").FirstOrDefault();
|
|
|
783
|
+ var config = new BLL.T_Sys_SystemConfig().GetModelList(" F_ParamCode='FileUrlPath' ").FirstOrDefault();
|
|
782
|
784
|
|
|
783
|
785
|
List<Model.T_Sys_Accessories> filelist = new BLL.T_Sys_Accessories().GetModelList(" F_FileId in (" + ids + ") ");
|
|
784
|
786
|
|