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

@@ -1330,6 +1330,13 @@ namespace AyaNova
Application.Idle+= new EventHandler(Application_Idle);
this.Visible=true;
//case 3823
if (mClientNoteIdToDisplay != Guid.Empty)
{
ClientNotesForm CN = new ClientNotesForm();
CN.ClientID = mClient.ID;
CN.ShowDialog();
}
}
@@ -2087,9 +2094,9 @@ namespace AyaNova
#region Business object editing / adding / deletion related code
//case 3823
private TypeAndID mClientNoteToDisplay;
public TypeAndID ClientNoteToDisplay { get { return mClientNoteToDisplay; } set { mClientNoteToDisplay = value; } }
//case 3823
private Guid mClientNoteIdToDisplay = Guid.Empty;
public Guid ClientNoteToDisplay { get { return mClientNoteIdToDisplay; } set { mClientNoteIdToDisplay = value; } }
private Client mClient;