This commit is contained in:
2021-03-05 17:08:01 +00:00
parent a27e67959e
commit a1c0e769e5
2 changed files with 7 additions and 2 deletions

View File

@@ -168,7 +168,7 @@ namespace AyaNova.Biz
l.Add(new FormField { TKey = "UsesBanking", FieldKey = "UsesBanking" });
l.Add(new FormField { TKey = "CustomerNotes", FieldKey = "Notes" });
l.Add(new FormField { TKey = "CustomerTechNotes", FieldKey = "TechNotes" });
l.Add(new FormField { TKey = "CustomerPopUpNotes", FieldKey = "PopUpNotes" });
l.Add(new FormField { TKey = "AlertNotes", FieldKey = "PopUpNotes" });
l.Add(new FormField { TKey = "Tags", FieldKey = "Tags" });
l.Add(new FormField { TKey = "Wiki", FieldKey = "Wiki" });
l.Add(new FormField { TKey = "Attachments", FieldKey = "Attachments" });
@@ -780,7 +780,7 @@ namespace AyaNova.Biz
l.Add(new FormField { TKey = "VendorContact", FieldKey = "Contact" });
l.Add(new FormField { TKey = "VendorNotes", FieldKey = "Notes" });
l.Add(new FormField { TKey = "VendorContactNotes", FieldKey = "ContactNotes" });
l.Add(new FormField { TKey = "VendorPopUpNotes", FieldKey = "PopUpNotes" });
l.Add(new FormField { TKey = "AlertNotes", FieldKey = "PopUpNotes" });
l.Add(new FormField { TKey = "Tags", FieldKey = "Tags" });
l.Add(new FormField { TKey = "Wiki", FieldKey = "Wiki" });
l.Add(new FormField { TKey = "Attachments", FieldKey = "Attachments" });

View File

@@ -34,6 +34,11 @@ namespace AyaNova.Models
public virtual DbSet<Customer> Customer { get; set; }
public virtual DbSet<CustomerNote> CustomerNote { get; set; }
public virtual DbSet<Contract> Contract { get; set; }
public virtual DbSet<ContractPartOverride> ContractPartOverride { get; set; }
public virtual DbSet<ContractServiceRate> ContractServiceRate { get; set; }
public virtual DbSet<ContractServiceRateOverride> ContractServiceRateOverride { get; set; }
public virtual DbSet<ContractTravelRate> ContractTravelRate { get; set; }
public virtual DbSet<ContractTravelRateOverride> ContractTravelRateOverride { get; set; }
public virtual DbSet<HeadOffice> HeadOffice { get; set; }
public virtual DbSet<LoanUnit> LoanUnit { get; set; }
public virtual DbSet<NotifySubscription> NotifySubscription { get; set; }