This commit is contained in:
2022-07-10 00:29:01 +00:00
parent 70ce9a07a6
commit 2e26823b2f
5 changed files with 334 additions and 39 deletions

View File

@@ -98,6 +98,12 @@
<Compile Include="FixInvoiceProblems.Designer.cs">
<DependentUpon>FixInvoiceProblems.cs</DependentUpon>
</Compile>
<Compile Include="FixPriceDifference.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FixPriceDifference.Designer.cs">
<DependentUpon>FixPriceDifference.cs</DependentUpon>
</Compile>
<Compile Include="Integration.cs" />
<Compile Include="InvoiceTemplateBuilder.cs">
<SubType>Form</SubType>
@@ -258,6 +264,9 @@
<EmbeddedResource Include="FixInvoiceProblems.resx">
<DependentUpon>FixInvoiceProblems.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FixPriceDifference.resx">
<DependentUpon>FixPriceDifference.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="InvoiceTemplateBuilder.resx">
<DependentUpon>InvoiceTemplateBuilder.cs</DependentUpon>
</EmbeddedResource>

View File

@@ -32,20 +32,19 @@ namespace AyaNovaQBI
Close();
}
private void grid_CellContentClick(object sender, DataGridViewCellEventArgs e)
private async void grid_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
var senderGrid = (DataGridView)sender;
if (senderGrid.Columns[e.ColumnIndex] is DataGridViewButtonColumn )
{
//MessageBox.Show($"Row was {e.RowIndex}");
var mm=MisMatches[e.RowIndex];//grid event index is same row as collection index so this saves hassles with rows and accessors
switch ((Util.MisMatchReason)e.Cell.Row.Cells["Reason"].Value)
switch (mm.Reason)
{
case Util.MisMatchReason.NothingToInvoice:
case util.MisMatchReason.NothingToInvoice:
MessageBox.Show("Nothing to invoice");
break;
case Util.MisMatchReason.PriceDifferent:
case util.MisMatchReason.PriceDifferent:
{
#region price problem
FixPriceDifference d = new FixPriceDifference();
@@ -117,7 +116,7 @@ namespace AyaNovaQBI
break;
case "CHANGEQB":
//Change the QB price to use the price on this workorder item part
Util.ChangeQBItemPrice(e.Cell.Row.Cells["QBListID"].Value.ToString(), (decimal)e.Cell.Row.Cells["AyaPrice"].Value);
util.ChangeQBItemPrice(e.Cell.Row.Cells["QBListID"].Value.ToString(), (decimal)e.Cell.Row.Cells["AyaPrice"].Value);
break;
}
@@ -131,7 +130,7 @@ namespace AyaNovaQBI
#endregion price prob.
}
break;
case Util.MisMatchReason.NotLinkedToQB:
case util.MisMatchReason.NotLinkedToQB:
{
#region link problem
LinkOrImportAyaObject d = new LinkOrImportAyaObject();
@@ -149,12 +148,12 @@ namespace AyaNovaQBI
{
case RootObjectTypes.Client:
d.CanImport = true;
d.QBItems = Util.QBClients;
d.QBItems = util.QBClients;
if (d.ShowDialog() == DialogResult.Cancel) return;
if (d.Choice == "IMPORT")
{
ArrayList alErrors = new ArrayList();
Util.ImportAyaClient((Guid)e.Cell.Row.Cells["RootObjectID"].Value, alErrors);
util.ImportAyaClient((Guid)e.Cell.Row.Cells["RootObjectID"].Value, alErrors);
//display errors if any
if (alErrors.Count != 0)
{
@@ -180,7 +179,7 @@ namespace AyaNovaQBI
else
{
//it's a link by default
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !Util.QBClients.Rows.Contains(d.SelectedQBItem))
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !util.QBClients.Rows.Contains(d.SelectedQBItem))
return;
QBItemName = d.SelectedQBItemName;
@@ -190,76 +189,76 @@ namespace AyaNovaQBI
break;
case RootObjectTypes.Rate:
d.CanImport = false;
d.QBItems = Util.QBItems;
d.QBItems = util.QBItems;
if (d.ShowDialog() == DialogResult.Cancel) return;
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !Util.QBItems.Rows.Contains(d.SelectedQBItem))
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !util.QBItems.Rows.Contains(d.SelectedQBItem))
return;
QBItemName = d.SelectedQBItemName;
break;
case RootObjectTypes.Part:
d.CanImport = false;
d.QBItems = Util.QBItems;
d.QBItems = util.QBItems;
if (d.ShowDialog() == DialogResult.Cancel) return;
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !Util.QBItems.Rows.Contains(d.SelectedQBItem))
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !util.QBItems.Rows.Contains(d.SelectedQBItem))
return;
QBItemName = d.SelectedQBItemName;
break;
case RootObjectTypes.WorkorderItemOutsideService:
d.CanImport = false;
d.QBItems = Util.QBItems;
d.QBItems = util.QBItems;
if (d.ShowDialog() == DialogResult.Cancel) return;
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !Util.QBItems.Rows.Contains(d.SelectedQBItem))
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !util.QBItems.Rows.Contains(d.SelectedQBItem))
return;
Util.QDat.OutsideServiceChargeAs = d.SelectedQBItem;
util.QDat.OutsideServiceChargeAs = d.SelectedQBItem;
//Case 299
Util.QBI.AIObject = Util.QDat.XMLData;
//Util.QBI.AIObject = Util.QDat;
util.QBI.AIObject = util.QDat.XMLData;
//util.QBI.AIObject = util.QDat;
Util.QBI = (Integration)Util.QBI.Save();
Util.QDat.IsDirty = false;
util.QBI = (Integration)util.QBI.Save();
util.QDat.IsDirty = false;
goto REMOVEITEMS;
case RootObjectTypes.WorkorderItemLoan:
d.CanImport = false;
d.QBItems = Util.QBItems;
d.QBItems = util.QBItems;
if (d.ShowDialog() == DialogResult.Cancel) return;
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !Util.QBItems.Rows.Contains(d.SelectedQBItem))
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !util.QBItems.Rows.Contains(d.SelectedQBItem))
return;
Util.QDat.WorkorderItemLoanChargeAs = d.SelectedQBItem;
util.QDat.WorkorderItemLoanChargeAs = d.SelectedQBItem;
//Case 299
Util.QBI.AIObject = Util.QDat.XMLData;
//Util.QBI.AIObject = Util.QDat;
Util.QBI = (Integration)Util.QBI.Save();
Util.QDat.IsDirty = false;
util.QBI.AIObject = util.QDat.XMLData;
//util.QBI.AIObject = util.QDat;
util.QBI = (Integration)util.QBI.Save();
util.QDat.IsDirty = false;
goto REMOVEITEMS;
case RootObjectTypes.WorkorderItemMiscExpense:
d.CanImport = false;
d.QBItems = Util.QBItems;
d.QBItems = util.QBItems;
if (d.ShowDialog() == DialogResult.Cancel) return;
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !Util.QBItems.Rows.Contains(d.SelectedQBItem))
if (d.SelectedQBItem == null || d.SelectedQBItem == "" || !util.QBItems.Rows.Contains(d.SelectedQBItem))
return;
Util.QDat.MiscExpenseChargeAs = d.SelectedQBItem;
util.QDat.MiscExpenseChargeAs = d.SelectedQBItem;
//Case 299
Util.QBI.AIObject = Util.QDat.XMLData;
//Util.QBI.AIObject = Util.QDat;
Util.QBI = (Integration)Util.QBI.Save();
Util.QDat.IsDirty = false;
util.QBI.AIObject = util.QDat.XMLData;
//util.QBI.AIObject = util.QDat;
util.QBI = (Integration)util.QBI.Save();
util.QDat.IsDirty = false;
goto REMOVEITEMS;
@@ -267,13 +266,13 @@ namespace AyaNovaQBI
//add the new link
IntegrationMap m = Util.QBI.Maps.Add(Util.QBI);
IntegrationMap m = util.QBI.Maps.Add(util.QBI);
m.RootObjectID = (Guid)e.Cell.Row.Cells["RootObjectID"].Value;
m.RootObjectType = (RootObjectTypes)e.Cell.Row.Cells["ObjectType"].Value;
m.ForeignID = d.SelectedQBItem;
m.Name = QBItemName;
m.LastSync = System.DateTime.Now;
Util.QBI = (Integration)Util.QBI.Save();
util.QBI = (Integration)util.QBI.Save();
REMOVEITEMS:

119
AyaNovaQBI/FixPriceDifference.Designer.cs generated Normal file
View File

@@ -0,0 +1,119 @@
namespace AyaNovaQBI
{
partial class FixPriceDifference
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.lblTitle = new System.Windows.Forms.Label();
this.lblStatus = new System.Windows.Forms.Label();
this.cbQBClasses = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(550, 368);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 6;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(4, 368);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// lblTitle
//
this.lblTitle.BackColor = System.Drawing.SystemColors.Window;
this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTitle.ForeColor = System.Drawing.SystemColors.WindowText;
this.lblTitle.Location = new System.Drawing.Point(0, 0);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(637, 84);
this.lblTitle.TabIndex = 7;
this.lblTitle.Text = "title";
this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStatus
//
this.lblStatus.AutoSize = true;
this.lblStatus.Dock = System.Windows.Forms.DockStyle.Top;
this.lblStatus.Location = new System.Drawing.Point(0, 84);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(0, 13);
this.lblStatus.TabIndex = 10;
//
// cbQBClasses
//
this.cbQBClasses.Dock = System.Windows.Forms.DockStyle.Top;
this.cbQBClasses.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbQBClasses.FormattingEnabled = true;
this.cbQBClasses.Location = new System.Drawing.Point(0, 97);
this.cbQBClasses.Name = "cbQBClasses";
this.cbQBClasses.Size = new System.Drawing.Size(637, 21);
this.cbQBClasses.TabIndex = 11;
//
// FixPriceDifference
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(637, 403);
this.Controls.Add(this.cbQBClasses);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.lblTitle);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "FixPriceDifference";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "FixPriceDifference";
this.Load += new System.EventHandler(this.SetQBClass_load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.ComboBox cbQBClasses;
}
}

View File

@@ -0,0 +1,48 @@
using System;
using System.Data;
using System.Windows.Forms;
namespace AyaNovaQBI
{
public partial class FixPriceDifference : Form
{
public FixPriceDifference()
{
InitializeComponent();
}
public string DialogTitle { get; set; }
public string OptionTitle { get; set; }
public string OptionDescription { get; set; }
public DataTable QBClasses { get; set; }
public string SelectedQBClass { get; set; }
private void SetQBClass_load(object sender, EventArgs e)
{
Text = DialogTitle;
lblDescription.Text = OptionDescription;
lblTitle.Text = OptionTitle;
btnCancel.Text = util.AyaTranslations["Cancel"];
btnOK.Text = util.AyaTranslations["OK"];
cbQBClasses.DataSource = QBClasses;
cbQBClasses.DisplayMember = "FullName";
cbQBClasses.ValueMember = "ID";
lblStatus.Text = "QuickBooks transaction class";
}
private void btnOK_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
Close();
}
}
}

View File

@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>