Commit fe83d196 authored by 黄奎's avatar 黄奎

页面修改

parent 6fc02edd
...@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.Customer ...@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.Customer
/// </summary> /// </summary>
public class RB_Customer_Extend : RB_Customer public class RB_Customer_Extend : RB_Customer
{ {
/// <summary>
/// 创建人
/// </summary>
public string CreateByName { get; set; }
} }
} }
...@@ -34,11 +34,16 @@ WHERE 1=1 ...@@ -34,11 +34,16 @@ WHERE 1=1
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_Customer_Extend.Status), (int)DateStateEnum.Normal); builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_Customer_Extend.Status), (int)DateStateEnum.Normal);
if (query != null) if (query != null)
{ {
if (query.Group_Id > 0)
{
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_Customer_Extend.Group_Id),query.Group_Id);
}
if (!string.IsNullOrEmpty(query.CustomerName)) if (!string.IsNullOrEmpty(query.CustomerName))
{ {
builder.AppendFormat(" AND A.{0} LIKE @CustomerName ", nameof(RB_Customer_Extend.CustomerName)); builder.AppendFormat(" AND A.{0} LIKE @CustomerName ", nameof(RB_Customer_Extend.CustomerName));
parameters.Add("CustomerName", "%" + query.CustomerName.Trim() + "%"); parameters.Add("CustomerName", "%" + query.CustomerName.Trim() + "%");
} }
} }
return GetPage<RB_Customer_Extend>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList(); return GetPage<RB_Customer_Extend>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
} }
......
using Edu.Cache.User;
using Edu.Common.API;
using Edu.Common.Plugin;
using Edu.Model.ViewModel.Customer;
using Edu.Module.Customer;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Edu.WebApi.Controllers.Customer
{
[Route("api/[controller]")]
[ApiController]
public class CustomerController : BaseController
{
private readonly CustomerModule customerModule = new CustomerModule();
/// <summary>
/// 获取同行分页列表
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult GetCustomerPage()
{
var pageModel = JsonHelper.DeserializeObject<ResultPageModel>(RequestParm.Msg.ToString());
var query = new RB_Customer_Extend()
{
Group_Id = base.UserInfo.Group_Id,
CustomerName = base.ParmJObj.GetStringValue("CustomerName")
};
var list = customerModule.GetCustomerPageModule(pageModel.PageIndex, pageModel.PageSize, out long rowsCount, query);
foreach (var item in list)
{
if (item.CreateBy > 0)
{
item.CreateByName = UserReidsCache.GetUserLoginInfo(item.CreateBy)?.AccountName ?? "";
}
}
pageModel.PageData = list;
pageModel.Count = rowsCount;
return ApiResult.Success(data: pageModel);
}
/// <summary>
/// 新增修改同业客户资料
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult SetCustomer()
{
var model = new RB_Customer_Extend()
{
CustomerId = base.ParmJObj.GetInt("CustomerId"),
CustomerName = base.ParmJObj.GetStringValue("CustomerName"),
ContactNumber = base.ParmJObj.GetStringValue("ContactNumber"),
Fax = base.ParmJObj.GetStringValue("Fax"),
QQ = base.ParmJObj.GetStringValue("QQ"),
Email = base.ParmJObj.GetStringValue("Email"),
Address = base.ParmJObj.GetStringValue("Address"),
Sex = base.ParmJObj.GetInt("Sex"),
Image = base.ParmJObj.GetStringValue("Image"),
CustomerSourceType = base.ParmJObj.GetInt("CustomerSourceType"),
CustomerSource = base.ParmJObj.GetStringValue("CustomerSource"),
CountryId = base.ParmJObj.GetInt("CountryId"),
ProvinceId = base.ParmJObj.GetInt("ProvinceId"),
CityId = base.ParmJObj.GetInt("CityId"),
DistrictId = base.ParmJObj.GetInt("DistrictId"),
LngLat = base.ParmJObj.GetStringValue("LngLat"),
Account = base.ParmJObj.GetStringValue("Account"),
Remark = base.ParmJObj.GetStringValue("Remark"),
};
model.Status = Common.Enum.DateStateEnum.Normal;
model.CreateBy = base.UserInfo.AccountId;
model.CreateTime = DateTime.Now;
model.UpdateTime = DateTime.Now;
model.Group_Id = base.UserInfo.Group_Id;
model.School_Id = base.UserInfo.School_Id;
var flag = customerModule.SetCustomerModule(model);
return flag ? ApiResult.Success() : ApiResult.Failed();
}
/// <summary>
/// 根据编号删除客户
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult RemoveCustomer()
{
var CustomerId = base.ParmJObj.GetInt("CustomerId");
var flag = customerModule.RemoveCustomerModule(CustomerId);
return flag ? ApiResult.Success() : ApiResult.Failed();
}
/// <summary>
/// 根据编号获取客户详情
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult GetCustomer()
{
var CustomerId = base.ParmJObj.GetInt("CustomerId");
var data = customerModule.GetCustomerModule(CustomerId);
return ApiResult.Success(data: data);
}
}
}
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