コード例 #1
0
        private void gridViewFatture_DoubleClick(object sender, EventArgs e)
        {
            Fattura fattura = this.gridViewFatture.GetFocusedRow() as Fattura;

            if (fattura != null)
            {
                XtraFormCreaFattura dettaglio = new XtraFormCreaFattura();
                dettaglio.Init(fattura.Vendita, fattura);

                if (dettaglio.ShowDialog(this) == DialogResult.OK)
                {
                    Init(m_Vendita);
                }
            }
        }
コード例 #2
0
        private void gridViewFatture_DoubleClick(object sender, EventArgs e)
        {
            Fattura fattura = this.gridViewFatture.GetFocusedRow() as Fattura;

            if (fattura != null)
            {
                XtraFormCreaFattura dettaglio = new XtraFormCreaFattura();
                dettaglio.Init(fattura.Vendita, fattura);

                if (dettaglio.ShowDialog(this) == DialogResult.OK)
                {
                    this.xpServerCollectionSourceVendite.Reload();
                    this.xpCollectionRigaVenditaVariante.Reload();
                    this.xpCollectionFatture.Reload();
                }
            }
        }
コード例 #3
0
        private void barButtonItemCreaFattura_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (this.xtraTabControlVendita.SelectedTabPage == xtraTabPageFatture)
            {
                XtraFormCreaFattura dettaglio = new XtraFormCreaFattura();
                dettaglio.Init(m_Vendita, null);

                if (dettaglio.ShowDialog(this) == DialogResult.OK)
                {
                    Init(m_Vendita);
                }
            }
            else
            {
                this.xtraTabControlVendita.SelectedTabPage = xtraTabPageFatture;
            }
        }
コード例 #4
0
        private void barButtonItemNewInvoice_ItemClick(object sender, ItemClickEventArgs e)
        {
            Vendita vendita = this.gridViewVendite.GetFocusedRow() as Vendita;

            if (vendita != null)
            {
                Fattura fattura = null;
                if (vendita.Fatture.Count > 0)
                {
                    fattura = vendita.Fatture[0];
                }

                XtraFormCreaFattura dettaglio = new XtraFormCreaFattura();
                dettaglio.Init(vendita, fattura);

                if (dettaglio.ShowDialog(this) == DialogResult.OK)
                {
                    this.xpServerCollectionSourceVendite.Reload();
                    this.xpCollectionRigaVenditaVariante.Reload();
                    this.xpCollectionFatture.Reload();
                }
            }
        }