This commit is contained in:
2022-07-05 23:39:44 +00:00
parent b66e1d6a0a
commit 7b22f03f44
4 changed files with 5 additions and 3 deletions

View File

@@ -86,7 +86,6 @@
this.Controls.Add(this.panel2); this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1); this.Controls.Add(this.panel1);
this.Name = "CopyableMessageBox"; this.Name = "CopyableMessageBox";
this.ShowInTaskbar = false;
this.Load += new System.EventHandler(this.CopyableMessageBox_Load); this.Load += new System.EventHandler(this.CopyableMessageBox_Load);
this.panel1.ResumeLayout(false); this.panel1.ResumeLayout(false);
this.panel1.PerformLayout(); this.panel1.PerformLayout();

View File

@@ -17,6 +17,7 @@ namespace AyaNovaQBI
{ {
InitializeComponent(); InitializeComponent();
mDisplay=Display; mDisplay=Display;
this.Icon = AyaNovaQBI.Properties.Resources.logo;
} }
private void btnCopy_Click(object sender, EventArgs e) private void btnCopy_Click(object sender, EventArgs e)

View File

@@ -7,3 +7,5 @@ DOCS UI use "Link" and do not use "map" anywhere
TEST auto-linking not tested due to import not coded yet so would be fuckery to do TEST auto-linking not tested due to import not coded yet so would be fuckery to do
Integration object is saved too often as copied the code from v7, oncce working change that to save when ops are done only as it's a much more potentially expensive operation now Integration object is saved too often as copied the code from v7, oncce working change that to save when ops are done only as it's a much more potentially expensive operation now
e.g.Util.ImportAyaCustomer at bottom e.g.Util.ImportAyaCustomer at bottom
unselect first item in map for both grids as they currently open with the first tiem highlighted
link -> import from qb should re-initialize grids, also other direction too so that imported items appear in grid showing it worked

View File

@@ -1729,7 +1729,7 @@ namespace AyaNovaQBI
if (item == null) return 0; if (item == null) return 0;
//Ok we have a matching vendor in the list, return the id of it //Ok we have a matching vendor in the list, return the id of it
return item.Id; return item.ObjectId;
} }