Ejemplo n.º 1
0
 public frmVentaPromociones(frmPOS frm)
 {
     InitializeComponent();
     c = new CerrarFrmEspera(Cerrar);
     cboTipoPromocion.SelectedIndex = 0;
     this.frm = frm;
 }
Ejemplo n.º 2
0
 public frmVendedor(frmPOS frm, int id, string nombre)
 {
     InitializeComponent();
     this.frm            = frm;
     this.id             = idActual;
     this.lblNombre.Text = nombre;
 }
Ejemplo n.º 3
0
 public frmDatosVentaProducto(frmPOS frm, string nombre, int cant, decimal descuento)
 {
     InitializeComponent();
     this.Text         += nombre;
     nudCant.Value      = cant;
     nudDescuento.Value = descuento;
     this.frm           = frm;
     nudCant.Select();
 }
Ejemplo n.º 4
0
 public frmCobrar(frmPOS frm, int id, decimal total)
 {
     InitializeComponent();
     this.frm                  = frm;
     this.id                   = id;
     this.total                = total;
     lblTotal.Text             = total.ToString("C2");
     cboTipoPago.SelectedIndex = 0;
     CalcularCambio();
 }
Ejemplo n.º 5
0
 public frmPaquetes(frmPOS frm, int idP)
 {
     InitializeComponent();
     this.frm = frm;
     this.idP = idP;
 }
Ejemplo n.º 6
0
 public frmVentaCliente(frmPOS frm)
 {
     InitializeComponent();
     this.frm = frm;
 }
Ejemplo n.º 7
0
 public frmVentaProducto(frmPOS frm)
 {
     InitializeComponent();
     this.frm = frm;
 }
Ejemplo n.º 8
0
 public frmRecuperarVenta(frmPOS frm)
 {
     InitializeComponent();
     this.frm = frm;
 }
Ejemplo n.º 9
0
 public frmVendedor(frmPOS frm)
 {
     InitializeComponent();
     this.frm = frm;
     this.lblENombre.Visible = this.lblNombre.Visible = false;
 }