Added support for deleting records from the APC and invoice tables that have been committed to the database. Fixed the color coding bug where the Ad Special row would get the pending edit color instead of no coloring.

This commit is contained in:
2016-12-16 15:41:17 -06:00
parent 91c2326db2
commit bd586580e6
7 changed files with 520 additions and 34 deletions
+11 -1
View File
@@ -107,6 +107,7 @@
this.informationPanel = new System.Windows.Forms.Panel();
this.errorLabel = new System.Windows.Forms.Label();
this.addRecordButton = new System.Windows.Forms.Button();
this.debugMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.commentsGroupBox.SuspendLayout();
this.mainTabControl.SuspendLayout();
this.projectionTabPage.SuspendLayout();
@@ -418,7 +419,8 @@
this.mainLayoutPanel.SetColumnSpan(this.mainMenuStrip, 4);
this.mainMenuStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FileMainMenu});
this.FileMainMenu,
this.debugMainMenu});
this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
this.mainMenuStrip.Name = "mainMenuStrip";
this.mainMenuStrip.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
@@ -941,6 +943,13 @@
this.addRecordButton.UseVisualStyleBackColor = true;
this.addRecordButton.Click += new System.EventHandler(this.AddRecordsButtonClick);
//
// debugMainMenu
//
this.debugMainMenu.Name = "debugMainMenu";
this.debugMainMenu.Size = new System.Drawing.Size(87, 31);
this.debugMainMenu.Text = "&Debug";
this.debugMainMenu.Click += new System.EventHandler(this.debugMainMenu_Click);
//
// NewAddRecord
//
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
@@ -1067,5 +1076,6 @@
private System.Windows.Forms.Button generateCostAnalysisIdButton;
private System.Windows.Forms.Button generateTaxableIdButton;
private System.Windows.Forms.Button generateWeeklySalesIdButton;
private System.Windows.Forms.ToolStripMenuItem debugMainMenu;
}
}