protected virtual void FacturasDefaultAction()
        {
            if (Factura == null)
            {
                return;
            }

            InvoiceViewForm form = new InvoiceViewForm(Factura.Oid, this);

            form.ShowDialog(this);
        }
Exemplo n.º 2
0
        private void ViewFactura_TI_Click(object sender, EventArgs e)
        {
            if (FacturaActual == null)
            {
                return;
            }

            InvoiceViewForm form = new InvoiceViewForm(FacturaActual.Oid, this);

            form.ShowDialog(this);
        }
Exemplo n.º 3
0
        protected virtual void VerPendienteAction()
        {
            if (Pendientes_DGW.CurrentRow == null)
            {
                return;
            }

            OutputInvoiceInfo factura = Pendientes_DGW.CurrentRow.DataBoundItem as OutputInvoiceInfo;

            InvoiceViewForm form = new InvoiceViewForm(factura.Oid, this);

            form.ShowDialog(this);
        }