using Learun.DataBase.Repository; using Learun.Util; using System; using System.Collections.Generic; using System.Text; using System.Linq; namespace Learun.Application.Organization { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.04.17 /// 描 述:公司管理 /// public class CompanyService : RepositoryFactory { #region 构造函数和属性 private string fieldSql; public CompanyService() { fieldSql = @" t.F_CompanyId, t.F_Category, t.F_ParentId, t.F_EnCode, t.F_ShortName, t.F_FullName, t.F_Nature, t.F_OuterPhone, t.F_InnerPhone, t.F_Fax, t.F_Postalcode, t.F_Email, t.F_Manager, t.F_ProvinceId, t.F_CityId, t.F_CountyId, t.F_Address, t.F_WebAddress, t.F_FoundedTime, t.F_BusinessScope, t.F_SortCode, t.F_DeleteMark, t.F_EnabledMark, t.F_Description, t.F_CreateDate, t.F_CreateUserId, t.F_CreateUserName, t.F_ModifyDate, t.F_ModifyUserId, t.F_Photo, t.F_BriefIntroduction, t.F_EnrollmentInformation, t.F_ModifyUserName "; } #endregion #region 获取数据 /// /// 获取公司列表信息(全部) /// /// public IEnumerable GetList() { try { var strSql = new StringBuilder(); strSql.Append("SELECT "); strSql.Append(fieldSql); strSql.Append(" FROM LR_Base_Company t WHERE t.F_EnabledMark = 1 AND t.F_DeleteMark = 0 ORDER BY t.F_ParentId,t.F_FullName "); return this.BaseRepository().FindList(strSql.ToString()); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowServiceException(ex); } } } /// /// 获取公司列表信息(微信用) /// /// 查询关键字 /// public IEnumerable GetWeChatList(string keyword) { try { var sql = @"SELECT t.F_CompanyId,t.F_ParentId,t.F_EnCode,t.F_FullName,t.F_Fax FROM LR_Base_Company t WHERE t.F_EnabledMark = 1 AND t.F_DeleteMark = 0 AND t.F_EnCode IS NOT NULL UNION ALL SELECT m.F_DepartmentId as F_CompanyId,m.F_CompanyId as F_ParentId,m.F_EnCode,m.F_FullName,m.F_Fax FROM LR_Base_Department m WHERE m.F_EnabledMark = 1 AND m.F_DeleteMark = 0 AND m.F_EnCode IS NOT NULL ORDER BY t.F_ParentId,t.F_FullName"; return this.BaseRepository().FindList(sql); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowServiceException(ex); } } } #endregion #region 提交数据 /// /// 虚拟删除公司 /// /// 主键 public void VirtualDelete(string keyValue) { try { CompanyEntity entity = new CompanyEntity() { F_CompanyId = keyValue, F_DeleteMark = 1 }; this.BaseRepository().Update(entity); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowServiceException(ex); } } } /// /// 保存公司表单(新增、修改) /// /// 主键值 /// 公司实体 /// public void SaveEntity(string keyValue, CompanyEntity companyEntity) { try { if (!string.IsNullOrEmpty(keyValue)) { companyEntity.Modify(keyValue); this.BaseRepository().Update(companyEntity); } else { companyEntity.Create(); this.BaseRepository().Insert(companyEntity); } } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowServiceException(ex); } } } internal bool GetAny() { try { return this.BaseRepository().FindList(a => true).ToList().Count() > 0 ? true : false; } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowServiceException(ex); } } } #endregion } }