|
|
@@ -209,6 +209,8 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
Fields.Add("AdminName", data.AdminName); //用户名
|
|
|
Fields.Add("Password", function.MD5_32(data.Password)); //密码
|
|
|
Fields.Add("FilePath", data.FilePath); //附件
|
|
|
+ Fields.Add("ReturnFlag", data.ReturnFlag); //返还标记
|
|
|
+ Fields.Add("ReturnAmount", data.ReturnAmount); //返还金额
|
|
|
Fields.Add("QueryCount", 1); //是否为主账号(1是,0否)
|
|
|
|
|
|
int Id = new AdminContentByConn(_accessor.HttpContext, PublicFunction.OpTables, OpConn).Add("SysAdmin", Fields, 0);
|
|
|
@@ -318,9 +320,10 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
{
|
|
|
AddOpStoreHouseByUserId(item.UserId.ToString());
|
|
|
}
|
|
|
-
|
|
|
- // TODO: 只有运营中心发5888
|
|
|
- RedisDbconn.Instance.AddList("OperateAddServiceQueue", Id.ToString());
|
|
|
+ if (data.ReturnFlag == 1)
|
|
|
+ {
|
|
|
+ RedisDbconn.Instance.AddList("OperateAddServiceQueue", Id.ToString());
|
|
|
+ }
|
|
|
}
|
|
|
else
|
|
|
{
|