case 3823

This commit is contained in:
2020-10-15 20:36:08 +00:00
parent 6ce273b16b
commit fb9066d5d1
6 changed files with 29 additions and 11 deletions

View File

@@ -265,7 +265,10 @@ namespace AyaNova
this.Text = Util.LocaleText.GetLocalizedText("ClientNote.Label.List") + " - " + AyaBizUtils.GetBizObjectName("Client", mClientID);
if (mClientNoteIdToDisplay != Guid.Empty)
{
MessageBox.Show("STUB: scroll into view id " + mClientNoteIdToDisplay.ToString());
}
}
@@ -457,6 +460,11 @@ namespace AyaNova
#endregion
#region properties
//case 3823
private Guid mClientNoteIdToDisplay = Guid.Empty;
public Guid ClientNoteToDisplay { get { return mClientNoteIdToDisplay; } set { mClientNoteIdToDisplay = value; } }
private Guid mClientID=Guid.Empty;