public CorteInvInicialForm() { InitializeComponent(); dbUser = new DBUsuario(); dbInventario = new InventarioController(); tblInventario.AutoGenerateColumns = false; }
public RemisionForm() { InitializeComponent(); dbUser = new DBUsuario(); dbInventario = new InventarioController(); tblRemision.AutoGenerateColumns = false; }
public RInvResguardoForm() { InitializeComponent(); dbPrendasal = new DBPRENDASAL(); dbInventario = new InventarioController(); dbCatalogo = new DBCatalogo(); }
public CustodiaForm() { InitializeComponent(); dbUser = new DBUsuario(); dbInventario = new InventarioController(); tblCustodia.AutoGenerateColumns = false; }
public ArticuloForm(Inventario item) { InitializeComponent(); ACCION = eOperacion.UPDATE; SELECTED = item; dbUser = new DBUsuario(); dbInventario = new InventarioController(); }
public ItemInicial() { InitializeComponent(); ACCION = eOperacion.INSERT; dbPrendasal = new DBPRENDASAL(); dbUser = new DBUsuario(); dbInventario = new InventarioController(); dbCatalogo = new DBCatalogo(); }
public ItemInicial(Inventario item) { InitializeComponent(); ACCION = eOperacion.UPDATE; dbPrendasal = new DBPRENDASAL(); SELECTED = item; dbUser = new DBUsuario(); dbInventario = new InventarioController(); dbCatalogo = new DBCatalogo(); }
public void DeleteReturnsOk() { // Arrange var inventarioController = new InventarioController(); // Act IHttpActionResult actionResult = inventarioController.Delete(1); var deletedResult = ((OkNegotiatedContentResult <HttpStatusCode>)actionResult).Content; // Assert Assert.AreEqual(HttpStatusCode.OK, deletedResult); }
public void GetItems_ShouldReturnAllInventarios() { var inventarioController = new InventarioController(); var actionResult = inventarioController.GetItems(); var response = actionResult as IOrderedEnumerable <Inventario>; Assert.AreEqual(response.ToList().Count, 6); Assert.IsTrue(true); Assert.IsNotNull(response); }
private void btCerrarDia_Click(object sender, RoutedEventArgs e) { if (!PedidoController.ObtenerPedidosVendedor().Any()) { InventarioController inventario = new InventarioController(); inventario.CerrarDia(); MessageBox.Show("Se cerro el dia!"); } else { MessageBox.Show("No se puede cerrar el dia con pedidos pendientes!!!"); } }
public ExistenciasForm() { InitializeComponent(); tblINVENTARIO.AutoGenerateColumns = false; dbInventario = new InventarioController(); tblINVENTARIO.AutoGenerateColumns = false; PRODUCTOS = new DataTable(); PRODUCTOS.Columns.Add("ID").DataType = System.Type.GetType("System.Int32"); PRODUCTOS.Columns.Add("CAT").DataType = System.Type.GetType("System.String"); PRODUCTOS.Columns.Add("CODIGO").DataType = System.Type.GetType("System.String"); PRODUCTOS.Columns.Add("CANTIDAD").DataType = System.Type.GetType("System.Double"); PRODUCTOS.Columns.Add("ARTICULO").DataType = System.Type.GetType("System.String"); PRODUCTOS.Columns.Add("DESCRIPCION").DataType = System.Type.GetType("System.String"); PRODUCTOS.Columns.Add("PRECIO").DataType = System.Type.GetType("System.Decimal"); }
public void PostMethodSetsLocationHeader() { // Arrange var inventarioController = new InventarioController(); // Act IHttpActionResult actionResult = inventarioController.Post(new InventarioDTO { NombreProducto = "Product1", CodProducto = "CodProducto1", Cantidad = 10, DescripcionProducto = "DescripcionProducto1", FechaCaducidad = "22/10/2020", PrecioProducto = 12.14M, TypeProducto = "TipoProducto" });; var createdResult = ((OkNegotiatedContentResult <HttpStatusCode>)actionResult).Content; // Assert Assert.IsNotNull(actionResult); Assert.AreEqual(HttpStatusCode.Created, createdResult); }
private void Incializa() { tipoInventarioController = new TipoInventarioController(); productoController = new ProductoController(); inventarioController = new InventarioController(); inventariopController = new InventariopController(); loteController = new LoteController(); movInvController = new MovInvController(); tipoInventario = null; producto = null; lote = null; inventario = null; categoria = null; partida = null; Costo = 0; partidas = new List <Inventariop>();; CreaInventario(); TxtTipoInv.Focus(); }
private void ResetPDV() { venta = new Venta(); partidas = new List <Ventap>(); cliente = null; producto = null; SigPartida = 0; datosCliente = "PUBLICO EN GENERAL"; TxtSubtotal.Text = ""; TxtTotal.Text = ""; TxtCliente.Text = ""; ventaController = new VentaController(); ventapController = new VentapController(); productoController = new ProductoController(); clienteController = new ClienteController(); inventarioController = new InventarioController(); ImpuestoController = new ImpuestoController(); empresaController = new EmpresaController(); loteController = new LoteController(); movInvController = new MovInvController(); flujoController = new FlujoController(); reporteController = new ReporteController(); dymErrorController = new DymErrorController(); oCFDI = new CFDI(); lote = null; TxtProductoId.Focus(); //Reset malla Malla.Rows.Clear(); for (int i = 0; i < NPARTIDAS; i++) { Malla.Rows.Add(); Malla.Rows[i].Cells[2].Style.BackColor = Color.Yellow; Malla.Rows[i].Cells[8].Style.BackColor = Color.Yellow; } CreaVenta(); }
public EnviarInvForm() { InitializeComponent(); dbUser = new DBUsuario(); dbInventario = new InventarioController(); }