Moved numpad control to Tanshu.Common. Billing feature complete. Delete not working as expected
Signed-off-by: unknown <tanshu@.(none)>
This commit is contained in:
@ -53,10 +53,6 @@
|
||||
this.btnDelete = new System.Windows.Forms.Button();
|
||||
this.btnUpdate = new System.Windows.Forms.Button();
|
||||
this.btnExit = new System.Windows.Forms.Button();
|
||||
this.txtMinimumLevel = new System.Windows.Forms.TextBox();
|
||||
this.label6 = new System.Windows.Forms.Label();
|
||||
this.txtMaximumLevel = new System.Windows.Forms.TextBox();
|
||||
this.label9 = new System.Windows.Forms.Label();
|
||||
this.chkDiscontinued = new System.Windows.Forms.CheckBox();
|
||||
this.cmbSalesLedger = new System.Windows.Forms.ComboBox();
|
||||
this.label5 = new System.Windows.Forms.Label();
|
||||
@ -295,49 +291,11 @@
|
||||
this.btnExit.Text = "E&xit";
|
||||
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
|
||||
//
|
||||
// txtMinimumLevel
|
||||
//
|
||||
this.txtMinimumLevel.AccessibleName = "Phone 1";
|
||||
this.txtMinimumLevel.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsProducts, "MinimumLevel", true));
|
||||
this.txtMinimumLevel.Location = new System.Drawing.Point(10, 264);
|
||||
this.txtMinimumLevel.Name = "txtMinimumLevel";
|
||||
this.txtMinimumLevel.Size = new System.Drawing.Size(77, 20);
|
||||
this.txtMinimumLevel.TabIndex = 75;
|
||||
this.txtMinimumLevel.Text = "0";
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.AutoSize = true;
|
||||
this.label6.Location = new System.Drawing.Point(10, 248);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Size = new System.Drawing.Size(77, 13);
|
||||
this.label6.TabIndex = 74;
|
||||
this.label6.Text = "Minimum Level";
|
||||
//
|
||||
// txtMaximumLevel
|
||||
//
|
||||
this.txtMaximumLevel.AccessibleName = "Phone 1";
|
||||
this.txtMaximumLevel.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsProducts, "MaximumLevel", true));
|
||||
this.txtMaximumLevel.Location = new System.Drawing.Point(96, 264);
|
||||
this.txtMaximumLevel.Name = "txtMaximumLevel";
|
||||
this.txtMaximumLevel.Size = new System.Drawing.Size(85, 20);
|
||||
this.txtMaximumLevel.TabIndex = 77;
|
||||
this.txtMaximumLevel.Text = "0";
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.AutoSize = true;
|
||||
this.label9.Location = new System.Drawing.Point(93, 249);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Size = new System.Drawing.Size(80, 13);
|
||||
this.label9.TabIndex = 76;
|
||||
this.label9.Text = "Maximum Level";
|
||||
//
|
||||
// chkDiscontinued
|
||||
//
|
||||
this.chkDiscontinued.AutoSize = true;
|
||||
this.chkDiscontinued.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.bsProducts, "Discontinued", true));
|
||||
this.chkDiscontinued.Location = new System.Drawing.Point(233, 272);
|
||||
this.chkDiscontinued.Location = new System.Drawing.Point(236, 190);
|
||||
this.chkDiscontinued.Name = "chkDiscontinued";
|
||||
this.chkDiscontinued.Size = new System.Drawing.Size(88, 17);
|
||||
this.chkDiscontinued.TabIndex = 78;
|
||||
@ -347,6 +305,7 @@
|
||||
// cmbSalesLedger
|
||||
//
|
||||
this.cmbSalesLedger.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.bsProducts, "SaleLedgerID", true));
|
||||
this.cmbSalesLedger.DisplayMember = "LedgerID";
|
||||
this.cmbSalesLedger.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||
this.cmbSalesLedger.Location = new System.Drawing.Point(93, 163);
|
||||
this.cmbSalesLedger.Name = "cmbSalesLedger";
|
||||
@ -399,10 +358,6 @@
|
||||
this.Controls.Add(this.cmbSalesLedger);
|
||||
this.Controls.Add(this.label5);
|
||||
this.Controls.Add(this.chkDiscontinued);
|
||||
this.Controls.Add(this.txtMaximumLevel);
|
||||
this.Controls.Add(this.label9);
|
||||
this.Controls.Add(this.txtMinimumLevel);
|
||||
this.Controls.Add(this.label6);
|
||||
this.Controls.Add(this.btnAdd);
|
||||
this.Controls.Add(this.btnDelete);
|
||||
this.Controls.Add(this.btnUpdate);
|
||||
@ -456,10 +411,6 @@
|
||||
internal System.Windows.Forms.Button btnDelete;
|
||||
internal System.Windows.Forms.Button btnUpdate;
|
||||
internal System.Windows.Forms.Button btnExit;
|
||||
internal System.Windows.Forms.TextBox txtMinimumLevel;
|
||||
internal System.Windows.Forms.Label label6;
|
||||
internal System.Windows.Forms.TextBox txtMaximumLevel;
|
||||
internal System.Windows.Forms.Label label9;
|
||||
private System.Windows.Forms.CheckBox chkDiscontinued;
|
||||
internal System.Windows.Forms.ComboBox cmbSalesLedger;
|
||||
internal System.Windows.Forms.Label label5;
|
||||
|
||||
@ -144,8 +144,6 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
if (!addNew)
|
||||
product = ProductBI.GetProduct(productList.ElementAt(bsProducts.Position).ProductID);
|
||||
product.Name = txtName.Text;
|
||||
product.MinimumLevel = Convert.ToDecimal(txtMinimumLevel.Text);
|
||||
product.MaximumLevel = Convert.ToDecimal(txtMaximumLevel.Text);
|
||||
product.Units = cmbUnits.Text;
|
||||
product.ProductGroup = new ProductGroupBI().GetProductGroup((int)cmbProductTypes.SelectedValue);
|
||||
product.SalePrice = Convert.ToDecimal(txtSalePrice.Text);
|
||||
|
||||
@ -120,12 +120,24 @@
|
||||
<metadata name="bsProducts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bsProducts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bsTypes.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>251, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bsTypes.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>251, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bsUnits.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>123, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bsUnits.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>123, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bsSalesTax.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>145, 54</value>
|
||||
</metadata>
|
||||
<metadata name="bsSalesTax.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>145, 54</value>
|
||||
</metadata>
|
||||
|
||||
Reference in New Issue
Block a user