|
|
|
|
|
|
130
|
string usercode = CurrentUser.UserData.F_UserCode;
|
130
|
string usercode = CurrentUser.UserData.F_UserCode;
|
|
131
|
Model.T_Sys_UserAccount ua = new BLL.T_Sys_UserAccount().GetModel(userId);
|
131
|
Model.T_Sys_UserAccount ua = new BLL.T_Sys_UserAccount().GetModel(userId);
|
|
132
|
|
132
|
|
|
133
|
- if (!(int.Parse(input.TypeClass) > 0 && int.Parse(input.TypeClass) < 7))
|
|
|
|
|
|
133
|
+ if (!(int.Parse(input.TypeClass) > 0 && int.Parse(input.TypeClass) < 8))
|
|
134
|
return Error("反馈类型错误!");
|
134
|
return Error("反馈类型错误!");
|
|
135
|
if (string.IsNullOrEmpty(input.CustomerName))
|
135
|
if (string.IsNullOrEmpty(input.CustomerName))
|
|
136
|
return Error("请输入客户姓名!");
|
136
|
return Error("请输入客户姓名!");
|
|
|
|
|
|
|
496
|
{
|
496
|
{
|
|
497
|
model.TypeClass = "表扬";
|
497
|
model.TypeClass = "表扬";
|
|
498
|
}
|
498
|
}
|
|
|
|
499
|
+ else if (it.TypeClass == "7")
|
|
|
|
500
|
+ {
|
|
|
|
501
|
+ model.TypeClass = "求助协办";
|
|
|
|
502
|
+ }
|
|
|
|
503
|
+
|
|
499
|
else
|
504
|
else
|
|
500
|
{
|
505
|
{
|
|
501
|
model.TypeClass = "建议";
|
506
|
model.TypeClass = "建议";
|
|
|
|
|
|
|
714
|
{
|
719
|
{
|
|
715
|
public int ID { get; set; }
|
720
|
public int ID { get; set; }
|
|
716
|
public string WorkOrderID { get; set; }//工单编号
|
721
|
public string WorkOrderID { get; set; }//工单编号
|
|
717
|
- public string TypeClass { get; set; }//工单类型(1就医咨询2预约诊疗3投诉4建议5表扬6救护车调度)
|
|
|
|
|
|
722
|
+ public string TypeClass { get; set; }//工单类型(1就医咨询2预约诊疗3投诉4建议5表扬6救护车调度,7 求助协办)
|
|
718
|
public string CustomerName { get; set; }//客户姓名
|
723
|
public string CustomerName { get; set; }//客户姓名
|
|
719
|
public string CustomerTel { get; set; }//客户电话
|
724
|
public string CustomerTel { get; set; }//客户电话
|
|
720
|
public string Gender { get; set; }//性别
|
725
|
public string Gender { get; set; }//性别
|