This commit is contained in:
@@ -64,4 +64,4 @@ using System.Security.Permissions;
|
||||
// Configure log4net using the .config file
|
||||
//[assembly: log4net.Config.XmlConfigurator(ConfigFile="Log4Net.config",Watch=true)]
|
||||
//[assembly: log4net.Config.XmlConfigurator( ConfigFile="Log4Net.config",Watch=true )]
|
||||
[assembly: AssemblyFileVersionAttribute("7.6.10.0")]
|
||||
[assembly: AssemblyFileVersionAttribute("7.6.11.0")]
|
||||
|
||||
@@ -20,78 +20,78 @@ namespace GZTW.AyaNova.BLL
|
||||
{
|
||||
#pragma warning disable 1591
|
||||
/// <summary>
|
||||
/// Lightweight read only list of <see cref="MemoList.MemoListInfo"/> objects representing <see cref="Memo"/> object
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class MemoList : ReadOnlyCollectionBase
|
||||
{
|
||||
/// Lightweight read only list of <see cref="MemoList.MemoListInfo"/> objects representing <see cref="Memo"/> object
|
||||
///
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class MemoList : ReadOnlyCollectionBase
|
||||
{
|
||||
|
||||
|
||||
#region Data structure
|
||||
/// <summary>
|
||||
/// Properties
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public struct MemoListInfo
|
||||
{
|
||||
internal Guid mID;
|
||||
internal SmartDate mCreated;
|
||||
internal GridRelativeTimeCellItem mCreatedRelative;
|
||||
|
||||
#region Data structure
|
||||
/// <summary>
|
||||
/// Properties
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public struct MemoListInfo
|
||||
{
|
||||
internal Guid mID;
|
||||
internal SmartDate mCreated;
|
||||
internal GridRelativeTimeCellItem mCreatedRelative;
|
||||
internal GridNameValueCellItem mSubject;
|
||||
internal string mMessage;
|
||||
internal GridNameValueCellItem mFrom;
|
||||
//internal Guid mFrom;
|
||||
internal bool mViewed;
|
||||
internal bool mReplied;
|
||||
internal string mMessage;
|
||||
internal GridNameValueCellItem mFrom;
|
||||
//internal Guid mFrom;
|
||||
internal bool mViewed;
|
||||
internal bool mReplied;
|
||||
|
||||
//ID Not localized as it's an invisible field
|
||||
//ID Not localized as it's an invisible field
|
||||
[Display(DisplayType.Hidden)]
|
||||
public Guid ID
|
||||
{
|
||||
get
|
||||
{
|
||||
return mID;
|
||||
}
|
||||
}
|
||||
public Guid ID
|
||||
{
|
||||
get
|
||||
{
|
||||
return mID;
|
||||
}
|
||||
}
|
||||
|
||||
[SqlColumnNameAttribute("aMemo.aCreated"),Display(DisplayType.DateTime)]
|
||||
public object LT_Memo_Label_Sent
|
||||
{
|
||||
get
|
||||
{
|
||||
return mCreated.DBValue;
|
||||
}
|
||||
}
|
||||
[SqlColumnNameAttribute("aMemo.aCreated"), Display(DisplayType.DateTime)]
|
||||
public object LT_Memo_Label_Sent
|
||||
{
|
||||
get
|
||||
{
|
||||
return mCreated.DBValue;
|
||||
}
|
||||
}
|
||||
|
||||
[SqlColumnNameAttribute("grid"), Display(DisplayType.Text)]
|
||||
public GridRelativeTimeCellItem LT_Memo_Label_Sent_Relative
|
||||
{
|
||||
get
|
||||
{
|
||||
return mCreatedRelative;
|
||||
}
|
||||
}
|
||||
public GridRelativeTimeCellItem LT_Memo_Label_Sent_Relative
|
||||
{
|
||||
get
|
||||
{
|
||||
return mCreatedRelative;
|
||||
}
|
||||
}
|
||||
|
||||
[SqlColumnNameAttribute("aUser.aLastName",
|
||||
"aMemo.aFromID"),
|
||||
Display(DisplayType.Button, RootObjectType = RootObjectTypes.Client)]
|
||||
public GridNameValueCellItem LT_Memo_Label_FromID
|
||||
{
|
||||
get
|
||||
{
|
||||
return mFrom;
|
||||
}
|
||||
}
|
||||
public GridNameValueCellItem LT_Memo_Label_FromID
|
||||
{
|
||||
get
|
||||
{
|
||||
return mFrom;
|
||||
}
|
||||
}
|
||||
|
||||
[SqlColumnNameAttribute("aMemo.aSubject", "aMemo.aID"), Display(DisplayType.Button, RootObjectType = RootObjectTypes.Memo)]
|
||||
public GridNameValueCellItem LT_Memo_Label_Subject
|
||||
{
|
||||
get
|
||||
{
|
||||
return mSubject;
|
||||
}
|
||||
}
|
||||
{
|
||||
get
|
||||
{
|
||||
return mSubject;
|
||||
}
|
||||
}
|
||||
|
||||
[Display(DisplayType.Hidden)]
|
||||
public string LT_Memo_Label_Message
|
||||
@@ -103,118 +103,118 @@ namespace GZTW.AyaNova.BLL
|
||||
}
|
||||
|
||||
[SqlColumnNameAttribute("aMemo.aViewed"), Display(DisplayType.Hidden)]//case 1805 added column name attribute so can set criteria for dashboard
|
||||
public bool LT_Memo_Label_Viewed
|
||||
{
|
||||
get
|
||||
{
|
||||
return mViewed;
|
||||
}
|
||||
}
|
||||
public bool LT_Memo_Label_Viewed
|
||||
{
|
||||
get
|
||||
{
|
||||
return mViewed;
|
||||
}
|
||||
}
|
||||
|
||||
//Special control, i.e. in this case image checkbox showing replied graphic or not replied graphic
|
||||
[Display(DisplayType.SpecialControl)]
|
||||
public bool LT_Memo_Label_Replied
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.mReplied;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="obj"></param>
|
||||
public bool Equals(MemoListInfo obj)
|
||||
{
|
||||
return this.ID.Equals(obj.ID);
|
||||
}
|
||||
|
||||
}//end MemoListInfo
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
private RelativeTimeFormatter rtfm=null;
|
||||
|
||||
protected MemoList()
|
||||
{
|
||||
|
||||
rtfm=RelativeTimeFormatter.GetItem(User.CurrentUserLanguage);
|
||||
// AllowSort=false;
|
||||
// AllowFind=true;
|
||||
// AllowEdit=false;
|
||||
// AllowNew=false;
|
||||
// AllowRemove=false;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Business properties and methods
|
||||
|
||||
/// <summary>
|
||||
/// Get item by index
|
||||
/// </summary>
|
||||
/// <param name="Item"></param>
|
||||
public MemoListInfo this[int Item]
|
||||
{
|
||||
|
||||
get
|
||||
{
|
||||
return (MemoListInfo) List[Item];
|
||||
}
|
||||
}
|
||||
public bool LT_Memo_Label_Replied
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.mReplied;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Returns display text that matches passed in itemid value
|
||||
/// </summary>
|
||||
/// <param name="ItemID"></param>
|
||||
public string this[Guid ItemID]
|
||||
{
|
||||
|
||||
get
|
||||
{
|
||||
foreach (MemoListInfo child in List)
|
||||
{
|
||||
if(child.ID==ItemID) return child.ToString();
|
||||
}
|
||||
return "Missing: "+ItemID.ToString();
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="obj"></param>
|
||||
public bool Equals(MemoListInfo obj)
|
||||
{
|
||||
return this.ID.Equals(obj.ID);
|
||||
}
|
||||
|
||||
#region contains
|
||||
/// <summary>
|
||||
/// Check if item in collection
|
||||
/// </summary>
|
||||
/// <param name="obj"></param>
|
||||
public bool Contains(MemoListInfo obj)
|
||||
{
|
||||
foreach (MemoListInfo child in List)
|
||||
{
|
||||
if(child.Equals(obj)) return true;
|
||||
}
|
||||
return false;
|
||||
}//end MemoListInfo
|
||||
#endregion
|
||||
|
||||
}
|
||||
#endregion
|
||||
#region Constructor
|
||||
private RelativeTimeFormatter rtfm = null;
|
||||
|
||||
protected MemoList()
|
||||
{
|
||||
|
||||
rtfm = RelativeTimeFormatter.GetItem(User.CurrentUserLanguage);
|
||||
// AllowSort=false;
|
||||
// AllowFind=true;
|
||||
// AllowEdit=false;
|
||||
// AllowNew=false;
|
||||
// AllowRemove=false;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Business properties and methods
|
||||
|
||||
/// <summary>
|
||||
/// Get item by index
|
||||
/// </summary>
|
||||
/// <param name="Item"></param>
|
||||
public MemoListInfo this[int Item]
|
||||
{
|
||||
|
||||
get
|
||||
{
|
||||
return (MemoListInfo)List[Item];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Returns display text that matches passed in itemid value
|
||||
/// </summary>
|
||||
/// <param name="ItemID"></param>
|
||||
public string this[Guid ItemID]
|
||||
{
|
||||
|
||||
get
|
||||
{
|
||||
foreach (MemoListInfo child in List)
|
||||
{
|
||||
if (child.ID == ItemID) return child.ToString();
|
||||
}
|
||||
return "Missing: " + ItemID.ToString();
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region contains
|
||||
/// <summary>
|
||||
/// Check if item in collection
|
||||
/// </summary>
|
||||
/// <param name="obj"></param>
|
||||
public bool Contains(MemoListInfo obj)
|
||||
{
|
||||
foreach (MemoListInfo child in List)
|
||||
{
|
||||
if (child.Equals(obj)) return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Reporting and shared UI editor helpers
|
||||
|
||||
/// <summary>
|
||||
/// Returns the report key which is a property of
|
||||
/// reports used to link all reports that can be used
|
||||
/// with a particular data source.
|
||||
/// </summary>
|
||||
public static string ReportKey
|
||||
{
|
||||
get
|
||||
{
|
||||
return "MemoList";
|
||||
}
|
||||
}
|
||||
/// Returns the report key which is a property of
|
||||
/// reports used to link all reports that can be used
|
||||
/// with a particular data source.
|
||||
/// </summary>
|
||||
public static string ReportKey
|
||||
{
|
||||
get
|
||||
{
|
||||
return "MemoList";
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the Detailed report key
|
||||
@@ -298,9 +298,9 @@ namespace GZTW.AyaNova.BLL
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region Static methods
|
||||
#region Static methods
|
||||
|
||||
/// <summary>
|
||||
/// Internal method used by list factory
|
||||
@@ -310,16 +310,16 @@ namespace GZTW.AyaNova.BLL
|
||||
return (MemoList)DataPortal.Fetch(new Criteria(Filter, IDList, MaxRecords));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get all Memo (filtered by crit)
|
||||
/// </summary>
|
||||
/// <param name="xmlCriteria">Use AyaNova UI to easily build xmlCriteria and Ctrl-Alt-g keyboard command to display it for use in your code</param>
|
||||
/// <summary>
|
||||
/// Get all Memo (filtered by crit)
|
||||
/// </summary>
|
||||
/// <param name="xmlCriteria">Use AyaNova UI to easily build xmlCriteria and Ctrl-Alt-g keyboard command to display it for use in your code</param>
|
||||
/// <returns>list of <see cref="MemoList.MemoListInfo"/> objects</returns>
|
||||
|
||||
public static MemoList GetList(string xmlCriteria)
|
||||
{
|
||||
|
||||
public static MemoList GetList(string xmlCriteria)
|
||||
{
|
||||
return (MemoList)DataPortal.Fetch(new Criteria(xmlCriteria, null, -1));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Takes a single ID and returns a "list" of one object
|
||||
@@ -349,62 +349,75 @@ namespace GZTW.AyaNova.BLL
|
||||
return (MemoList)DataPortal.Fetch(new Criteria("", IDList, -1));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Return an empty list
|
||||
/// used for initializing grid
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static MemoList GetEmptyList()
|
||||
{
|
||||
return new MemoList();
|
||||
}
|
||||
/// <summary>
|
||||
/// Return an empty list
|
||||
/// used for initializing grid
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static MemoList GetEmptyList()
|
||||
{
|
||||
return new MemoList();
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region DAL DATA ACCESS
|
||||
///
|
||||
/// <param name="Criteria"></param>
|
||||
protected override void DataPortal_Fetch(object Criteria)
|
||||
{
|
||||
|
||||
Criteria crit = (Criteria)Criteria;
|
||||
#region DAL DATA ACCESS
|
||||
///
|
||||
/// <param name="Criteria"></param>
|
||||
protected override void DataPortal_Fetch(object Criteria)
|
||||
{
|
||||
|
||||
SafeDataReader dr = null;
|
||||
Criteria crit = (Criteria)Criteria;
|
||||
|
||||
SafeDataReader dr = null;
|
||||
DateTime dtNow = DBUtil.CurrentWorkingDateTime;
|
||||
try
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
if (crit.IDList != null)
|
||||
{
|
||||
//Case 556
|
||||
System.Text.StringBuilder sbIN = new System.Text.StringBuilder();
|
||||
sbIN.Append(" WHERE (aMemo.aID in (");
|
||||
foreach (Guid gItem in crit.IDList)
|
||||
//v8 Migrate related change
|
||||
//this is a workaround to get all the memos even though the current user is not the recipient of all of them
|
||||
if (crit.IDList.Count == 1 && crit.IDList[0] == new Guid("{BD608E8A-820C-46D1-9D81-4CCB6E71B213}"))//v8 migrate plugin id
|
||||
{
|
||||
sbIN.Append("'");
|
||||
sbIN.Append("{");
|
||||
sbIN.Append(gItem.ToString().ToUpperInvariant());
|
||||
sbIN.Append("}");
|
||||
sbIN.Append("',");
|
||||
dr = DBUtil.GetReaderFromSQLString(
|
||||
"SELECT aMemo.aID, aMemo.aCreated, " +
|
||||
"aMemo.aViewed, aMemo.aReplied, aMemo.aSubject, aMemo.aMessage, " +
|
||||
"aMemo.aFromID, aMemo.aToId " +
|
||||
" 'first' as afirstname, 'last' as alastname, 'ii' as ainitials, 'en' as aemployeenumber, 'r' as aregionname " +
|
||||
"FROM aMemo order by amemo.acreated");
|
||||
}
|
||||
sbIN.Length = sbIN.Length - 1;
|
||||
sbIN.Append(")) ");
|
||||
|
||||
//************************************************************
|
||||
dr = DBUtil.GetReaderFromSQLString(
|
||||
"SELECT aMemo.aID, aMemo.aCreated, " +
|
||||
"aMemo.aViewed, aMemo.aReplied, aMemo.aSubject, aMemo.aMessage, " +
|
||||
"aMemo.aFromID, aUser.aFirstName, aUser.aLastName, aUser.aInitials, AREGION.ANAME AS AREGIONNAME, " +
|
||||
"aUser.aEmployeeNumber FROM aMemo " +
|
||||
|
||||
" LEFT OUTER JOIN aUser ON aMemo.aFromID = aUser.aID " +
|
||||
" LEFT OUTER JOIN AREGION ON (AUSER.AREGIONID=AREGION.AID) " +
|
||||
sbIN.ToString() + " " +
|
||||
AyaBizUtils.GetGridSortOrderColumns(crit.CriteriaXML));
|
||||
|
||||
|
||||
|
||||
else
|
||||
{
|
||||
//Case 556
|
||||
System.Text.StringBuilder sbIN = new System.Text.StringBuilder();
|
||||
sbIN.Append(" WHERE (aMemo.aID in (");
|
||||
foreach (Guid gItem in crit.IDList)
|
||||
{
|
||||
sbIN.Append("'");
|
||||
sbIN.Append("{");
|
||||
sbIN.Append(gItem.ToString().ToUpperInvariant());
|
||||
sbIN.Append("}");
|
||||
sbIN.Append("',");
|
||||
}
|
||||
sbIN.Length = sbIN.Length - 1;
|
||||
sbIN.Append(")) ");
|
||||
|
||||
//************************************************************
|
||||
dr = DBUtil.GetReaderFromSQLString(
|
||||
"SELECT aMemo.aID, aMemo.aCreated, " +
|
||||
"aMemo.aViewed, aMemo.aReplied, aMemo.aSubject, aMemo.aMessage, " +
|
||||
"aMemo.aFromID, aUser.aFirstName, aUser.aLastName, aUser.aInitials, AREGION.ANAME AS AREGIONNAME, " +
|
||||
"aUser.aEmployeeNumber FROM aMemo " +
|
||||
|
||||
" LEFT OUTER JOIN aUser ON aMemo.aFromID = aUser.aID " +
|
||||
" LEFT OUTER JOIN AREGION ON (AUSER.AREGIONID=AREGION.AID) " +
|
||||
sbIN.ToString() + " " +
|
||||
AyaBizUtils.GetGridSortOrderColumns(crit.CriteriaXML));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -413,7 +426,7 @@ namespace GZTW.AyaNova.BLL
|
||||
"aMemo.aViewed, aMemo.aReplied, aMemo.aSubject, aMemo.aMessage, " +
|
||||
"aMemo.aFromID, aUser.aFirstName, aUser.aLastName, aUser.aInitials, AREGION.ANAME AS AREGIONNAME, " +
|
||||
"aUser.aEmployeeNumber FROM aMemo " +
|
||||
|
||||
|
||||
" LEFT OUTER JOIN aUser ON aMemo.aFromID = aUser.aID " +
|
||||
" LEFT OUTER JOIN AREGION ON (AUSER.AREGIONID=AREGION.AID) " +
|
||||
"WHERE (aMemo.aToID = @ID) " +
|
||||
@@ -428,45 +441,45 @@ namespace GZTW.AyaNova.BLL
|
||||
|
||||
dr = DBUtil.GetReaderFromSQLString(q, CurrentUserID);
|
||||
}
|
||||
while(dr.Read())
|
||||
{
|
||||
//*******************************************
|
||||
MemoListInfo info=new MemoListInfo();
|
||||
while (dr.Read())
|
||||
{
|
||||
//*******************************************
|
||||
MemoListInfo info = new MemoListInfo();
|
||||
|
||||
info.mID=dr.GetGuid("aID");
|
||||
|
||||
info.mCreated=DBUtil.ToLocal(dr.GetSmartDate("aCreated"));
|
||||
info.mCreatedRelative = new GridRelativeTimeCellItem(rtfm.Format(dtNow,info.mCreated));
|
||||
info.mFrom=new GridNameValueCellItem(
|
||||
dr.GetGuid("aFromID"),
|
||||
User.NameFormatter(dr.GetString("aFirstName"),dr.GetString("aLastName"),dr.GetString("aInitials"),
|
||||
info.mID = dr.GetGuid("aID");
|
||||
|
||||
info.mCreated = DBUtil.ToLocal(dr.GetSmartDate("aCreated"));
|
||||
info.mCreatedRelative = new GridRelativeTimeCellItem(rtfm.Format(dtNow, info.mCreated));
|
||||
info.mFrom = new GridNameValueCellItem(
|
||||
dr.GetGuid("aFromID"),
|
||||
User.NameFormatter(dr.GetString("aFirstName"), dr.GetString("aLastName"), dr.GetString("aInitials"),
|
||||
dr.GetString("aEmployeeNumber"), dr.GetString("AREGIONNAME"), AyaBizUtils.GlobalSettings.DefaultScheduleableUserNameDisplayFormat)
|
||||
,RootObjectTypes.User);
|
||||
, RootObjectTypes.User);
|
||||
|
||||
info.mSubject = new GridNameValueCellItem(
|
||||
dr.GetGuid("aID"),
|
||||
dr.GetString("aSubject"),
|
||||
dr.GetString("aSubject"),
|
||||
RootObjectTypes.Memo);
|
||||
|
||||
|
||||
info.mViewed=dr.GetBoolean("aViewed");
|
||||
info.mReplied=dr.GetBoolean("aReplied");
|
||||
|
||||
info.mViewed = dr.GetBoolean("aViewed");
|
||||
info.mReplied = dr.GetBoolean("aReplied");
|
||||
info.mMessage = dr.GetString("aMessage");
|
||||
|
||||
InnerList.Add(info);
|
||||
//*******************************************
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
if(dr!=null) dr.Close();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
#endregion
|
||||
InnerList.Add(info);
|
||||
//*******************************************
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (dr != null) dr.Close();
|
||||
}
|
||||
|
||||
#region criteria
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region criteria
|
||||
/// <summary>
|
||||
/// Criteria for identifying existing object
|
||||
/// </summary>
|
||||
@@ -483,8 +496,8 @@ namespace GZTW.AyaNova.BLL
|
||||
MaxRecords = _MaxRecords;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
}//end MemoList
|
||||
#endregion
|
||||
|
||||
}//end MemoList
|
||||
#pragma warning restore 1591
|
||||
}//end namespace GZTW.AyaNova.BLL
|
||||
Reference in New Issue
Block a user