Commit c65c130f authored by 吴春's avatar 吴春

提交代码

parent 711b7b54
......@@ -1227,18 +1227,24 @@ namespace Mall.WebApi.Controllers.MallBase
EndTime = parameters.GetStringValue("EndTime"),
OrderBy = parameters.GetInt("OrderBy"),
RetailStore = parameters.GetInt("RetailStore", -1),
CreateBy = parameters.GetInt("EmpId", -1),
};
demodel.TenantId = parms.TenantId;
demodel.MallBaseId = parms.MallBaseId;
if (UserInfo.IsOtherUpdateGoods == 0 && parms.TenantId == 1 && parms.MallBaseId == 1)
if (parms.TenantId == 1 && parms.MallBaseId == 1)
{
demodel.CreateBy = UserInfo.EmpId;
if (parameters.GetInt("IsOtherUpdateGoods", 0) > 0)
{
demodel.CreateBy = -1;
}
}
else
{
demodel.CreateBy = -1;
}
decimal MinProfitRate = 0;
if (demodel.TenantId == 1)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment