|
|
@@ -873,20 +873,20 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
873
|
873
|
//工单状态
|
|
874
|
874
|
int gdzt = RequestString.GetInt("gdzt", 471);
|
|
875
|
875
|
//工单id
|
|
876
|
|
- string workorderid = RequestString.GetQueryString("orderid");
|
|
|
876
|
+ string workorderid = RequestString.GetFormString("orderid");
|
|
877
|
877
|
//客户姓名
|
|
878
|
|
- string customer = RequestString.GetQueryString("customer");
|
|
|
878
|
+ string customer = RequestString.GetFormString("customer");
|
|
879
|
879
|
//来电单位/反馈单位
|
|
880
|
|
- string lddep = RequestString.GetQueryString("lddep");
|
|
881
|
|
- string fkdep = RequestString.GetQueryString("fkdep");
|
|
|
880
|
+ string lddep = RequestString.GetFormString("lddep");
|
|
|
881
|
+ string fkdep = RequestString.GetFormString("fkdep");
|
|
882
|
882
|
//反馈内容
|
|
883
|
|
- string detail = RequestString.GetQueryString("detail");
|
|
|
883
|
+ string detail = RequestString.GetFormString("detail");
|
|
884
|
884
|
//快递信息
|
|
885
|
|
- string files = RequestString.GetQueryString("files");
|
|
|
885
|
+ string files = RequestString.GetFormString("files");
|
|
886
|
886
|
//备注一二三
|
|
887
|
|
- string country = RequestString.GetQueryString("remark1");
|
|
888
|
|
- string province = RequestString.GetQueryString("remark2");
|
|
889
|
|
- string city = RequestString.GetQueryString("remark3");
|
|
|
887
|
+ string country = RequestString.GetFormString("remark1");
|
|
|
888
|
+ string province = RequestString.GetFormString("remark2");
|
|
|
889
|
+ string city = RequestString.GetFormString("remark3");
|
|
890
|
890
|
|
|
891
|
891
|
if (!string.IsNullOrEmpty(workorderid))
|
|
892
|
892
|
{
|