|
|
@@ -3911,6 +3911,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
3911
|
3911
|
int level = RequestString.GetInt("level", 0);
|
|
3912
|
3912
|
int issubmit = RequestString.GetInt("issubmit", 0);
|
|
3913
|
3913
|
int demandstype = RequestString.GetInt("demandstype", 0);//诉求分类编号
|
|
|
3914
|
+ int complainedunitid = RequestString.GetInt("complainedunitid", 0);//被投诉单位
|
|
|
3915
|
+ string addresscodes = RequestString.GetFormString("addresscodes"); //F_AddressCodes 地址 省市县乡编号 例如:1111|2222|3333|4444
|
|
3914
|
3916
|
|
|
3915
|
3917
|
|
|
3916
|
3918
|
using (TransactionScope trans = new TransactionScope())
|
|
|
@@ -3953,6 +3955,11 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
3953
|
3955
|
if (dModel != null)
|
|
3954
|
3956
|
modelT_Bus_WorkOrder.F_DemandsType = dModel.F_Code;
|
|
3955
|
3957
|
}
|
|
|
3958
|
+ //20200109 lihai 新增 被投诉单位
|
|
|
3959
|
+ if (complainedunitid > 0)
|
|
|
3960
|
+ modelT_Bus_WorkOrder.F_ComplainedUnitID = complainedunitid;
|
|
|
3961
|
+ if (!string.IsNullOrEmpty(addresscodes))
|
|
|
3962
|
+ modelT_Bus_WorkOrder.F_AddressCodes = addresscodes;
|
|
3956
|
3963
|
//如果选择即刻答复:是,即为直办,工单结束
|
|
3957
|
3964
|
if (isresult == 1)
|
|
3958
|
3965
|
{
|