por ahora todo menos orden de compra y remito

This commit is contained in:
2024-08-11 18:25:17 -03:00
parent ab890dbf98
commit 75c9f8ed9b
72 changed files with 985 additions and 379 deletions

View File

@@ -42,11 +42,14 @@
label3 = new Label();
numCantidad = new NumericUpDown();
label4 = new Label();
numPreciopropuesto = new NumericUpDown();
label5 = new Label();
((System.ComponentModel.ISupportInitialize)dgvProducto).BeginInit();
((System.ComponentModel.ISupportInitialize)numId).BeginInit();
((System.ComponentModel.ISupportInitialize)dgvProveedor).BeginInit();
((System.ComponentModel.ISupportInitialize)dgvPedido).BeginInit();
((System.ComponentModel.ISupportInitialize)numCantidad).BeginInit();
((System.ComponentModel.ISupportInitialize)numPreciopropuesto).BeginInit();
SuspendLayout();
//
// dgvProducto
@@ -55,12 +58,12 @@
dgvProducto.AllowUserToDeleteRows = false;
dgvProducto.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dgvProducto.EditMode = DataGridViewEditMode.EditProgrammatically;
dgvProducto.Location = new Point(227, 26);
dgvProducto.Location = new Point(244, 26);
dgvProducto.MultiSelect = false;
dgvProducto.Name = "dgvProducto";
dgvProducto.RowTemplate.Height = 25;
dgvProducto.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dgvProducto.Size = new Size(275, 249);
dgvProducto.Size = new Size(347, 338);
dgvProducto.TabIndex = 1;
dgvProducto.CellClick += dgvProducto_CellClick;
//
@@ -76,7 +79,7 @@
// label2
//
label2.AutoSize = true;
label2.Location = new Point(508, 8);
label2.Location = new Point(597, 8);
label2.Name = "label2";
label2.Size = new Size(55, 15);
label2.TabIndex = 3;
@@ -84,7 +87,7 @@
//
// numId
//
numId.Location = new Point(78, 26);
numId.Location = new Point(50, 18);
numId.Maximum = new decimal(new int[] { 1410065407, 2, 0, 0 });
numId.Name = "numId";
numId.Size = new Size(120, 23);
@@ -92,7 +95,7 @@
//
// btnGuardar
//
btnGuardar.Location = new Point(11, 316);
btnGuardar.Location = new Point(12, 407);
btnGuardar.Name = "btnGuardar";
btnGuardar.Size = new Size(77, 26);
btnGuardar.TabIndex = 9;
@@ -102,7 +105,7 @@
//
// btnCerrar
//
btnCerrar.Location = new Point(696, 316);
btnCerrar.Location = new Point(892, 407);
btnCerrar.Name = "btnCerrar";
btnCerrar.Size = new Size(81, 26);
btnCerrar.TabIndex = 10;
@@ -136,12 +139,12 @@
dgvProveedor.AllowUserToDeleteRows = false;
dgvProveedor.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dgvProveedor.EditMode = DataGridViewEditMode.EditProgrammatically;
dgvProveedor.Location = new Point(508, 26);
dgvProveedor.Location = new Point(597, 26);
dgvProveedor.MultiSelect = false;
dgvProveedor.Name = "dgvProveedor";
dgvProveedor.RowTemplate.Height = 25;
dgvProveedor.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dgvProveedor.Size = new Size(269, 249);
dgvProveedor.Size = new Size(376, 338);
dgvProveedor.TabIndex = 13;
//
// dgvPedido
@@ -151,13 +154,14 @@
dgvPedido.Name = "dgvPedido";
dgvPedido.RowTemplate.Height = 25;
dgvPedido.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dgvPedido.Size = new Size(187, 171);
dgvPedido.Size = new Size(227, 171);
dgvPedido.TabIndex = 14;
dgvPedido.CellContentClick += dgvPedido_CellContentClick;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(227, 8);
label1.Location = new Point(244, 8);
label1.Name = "label1";
label1.Size = new Size(56, 15);
label1.TabIndex = 15;
@@ -174,7 +178,7 @@
//
// numCantidad
//
numCantidad.Location = new Point(317, 281);
numCantidad.Location = new Point(310, 376);
numCantidad.Maximum = new decimal(new int[] { 1410065407, 2, 0, 0 });
numCantidad.Name = "numCantidad";
numCantidad.Size = new Size(120, 23);
@@ -183,19 +187,38 @@
// label4
//
label4.AutoSize = true;
label4.Location = new Point(227, 289);
label4.Location = new Point(249, 378);
label4.Name = "label4";
label4.Size = new Size(55, 15);
label4.TabIndex = 18;
label4.Text = "Cantidad";
//
// numPreciopropuesto
//
numPreciopropuesto.Location = new Point(562, 376);
numPreciopropuesto.Maximum = new decimal(new int[] { 1410065407, 2, 0, 0 });
numPreciopropuesto.Name = "numPreciopropuesto";
numPreciopropuesto.Size = new Size(120, 23);
numPreciopropuesto.TabIndex = 19;
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(466, 378);
label5.Name = "label5";
label5.Size = new Size(94, 15);
label5.TabIndex = 20;
label5.Text = "PrecioPropuesto";
//
// FrmPresupuesto
//
AcceptButton = btnGuardar;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = btnCerrar;
ClientSize = new Size(794, 351);
ClientSize = new Size(985, 445);
Controls.Add(label5);
Controls.Add(numPreciopropuesto);
Controls.Add(label4);
Controls.Add(numCantidad);
Controls.Add(label3);
@@ -217,6 +240,7 @@
((System.ComponentModel.ISupportInitialize)dgvProveedor).EndInit();
((System.ComponentModel.ISupportInitialize)dgvPedido).EndInit();
((System.ComponentModel.ISupportInitialize)numCantidad).EndInit();
((System.ComponentModel.ISupportInitialize)numPreciopropuesto).EndInit();
ResumeLayout(false);
PerformLayout();
}
@@ -236,5 +260,7 @@
private Label label3;
private NumericUpDown numCantidad;
private Label label4;
private NumericUpDown numPreciopropuesto;
private Label label5;
}
}