|
|
@@ -802,7 +802,7 @@ namespace RMYY_CallCenter_Api.Controllers
|
|
802
|
802
|
);
|
|
803
|
803
|
|
|
804
|
804
|
|
|
805
|
|
- datatable = WorkOrderBase.SetOtherField(datatable, MENUENUM.我的提交, User.F_UserCode, User.F_RoleId, 2000);
|
|
|
805
|
+ datatable = WorkOrderBase.SetOtherField(datatable, MENUENUM.我的提交, User.F_UserCode, User.F_RoleId, 2000,1);
|
|
806
|
806
|
|
|
807
|
807
|
var obj = new
|
|
808
|
808
|
{
|
|
|
@@ -950,7 +950,20 @@ namespace RMYY_CallCenter_Api.Controllers
|
|
950
|
950
|
|
|
951
|
951
|
|
|
952
|
952
|
#region 添加操作记录
|
|
953
|
|
- public bool AddOperatorLog(string content, int type, string workordercode)
|
|
|
953
|
+ public bool AddOperatorLogNew(string content, int type, string workordercode,string usercode)
|
|
|
954
|
+ {
|
|
|
955
|
+ Model.T_IntegratedScheduling_OperationLog model = new Model.T_IntegratedScheduling_OperationLog();
|
|
|
956
|
+ model.F_LogContent = content;
|
|
|
957
|
+ model.F_OperationTime = DateTime.Now;
|
|
|
958
|
+ model.F_OperationType = type;
|
|
|
959
|
+ model.F_Operator = usercode;
|
|
|
960
|
+ model.F_WorkOrderCode = workordercode;
|
|
|
961
|
+ logBll.Add(model);
|
|
|
962
|
+ return true;
|
|
|
963
|
+ }
|
|
|
964
|
+
|
|
|
965
|
+
|
|
|
966
|
+ public bool AddOperatorLog(string content, int type, string workordercode)
|
|
954
|
967
|
{
|
|
955
|
968
|
Model.T_IntegratedScheduling_OperationLog model = new Model.T_IntegratedScheduling_OperationLog();
|
|
956
|
969
|
model.F_LogContent = content;
|