Commit 50470507 authored by 黄奎's avatar 黄奎

11

parent fa9e250f
......@@ -415,6 +415,15 @@ namespace Mall.Module.TradePavilion
{
{ nameof(RB_CompanyEnterprise_Extend.IsComplete),1}
};
if (Config.IsCPSWJAutoExamine == "1")//自动审核
{
keyValues.Add(nameof(RB_CompanyEnterprise_Extend.CompanyStatus), 1);
}
else
{
keyValues.Add(nameof(RB_CompanyEnterprise_Extend.CompanyStatus), 0);
}
keyValues.Add(nameof(RB_CompanyEnterprise_Extend.RejectRemark), "");
List<WhereHelper> wheres = new List<WhereHelper>()
{
new WhereHelper()
......@@ -428,7 +437,6 @@ namespace Mall.Module.TradePavilion
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{ nameof(RB_BuildingApplyFor_Extend.Name),model.Name},
{ nameof(RB_BuildingApplyFor_Extend.Name),model.Name},
{ nameof(RB_BuildingApplyFor_Extend.Banner),model.Banner},
{ nameof(RB_BuildingApplyFor_Extend.Address),model.Address},
......@@ -614,6 +622,15 @@ namespace Mall.Module.TradePavilion
{
{ nameof(RB_CompanyEnterprise_Extend.IsComplete),1}
};
if (Config.IsCPSWJAutoExamine == "1")//自动审核
{
keyValues.Add(nameof(RB_CompanyEnterprise_Extend.CompanyStatus), 1);
}
else
{
keyValues.Add(nameof(RB_CompanyEnterprise_Extend.CompanyStatus), 0);
}
keyValues.Add(nameof(RB_CompanyEnterprise_Extend.RejectRemark), "");
List<WhereHelper> wheres = new List<WhereHelper>()
{
new WhereHelper()
......
......@@ -3377,7 +3377,7 @@ namespace Mall.WebApi.Controllers.TradePavilion
}
if (string.IsNullOrWhiteSpace(query.Address))
{
return ApiResult.Failed("请输入项目地址");
// return ApiResult.Failed("请输入项目地址");
}
if (string.IsNullOrWhiteSpace(query.Logo))
{
......@@ -3762,7 +3762,7 @@ namespace Mall.WebApi.Controllers.TradePavilion
}
if (string.IsNullOrWhiteSpace(query.Address))
{
return ApiResult.Failed("请输入项目地址");
// return ApiResult.Failed("请输入项目地址");
}
if (!query.ShopNum.HasValue)
{
......
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