コード例 #1
0
ファイル: Cajas.cs プロジェクト: luis-wq/BasesyM
 public Cajas(CotizacionesRealizadas padre, int idCotizacion, int bandera)
 {
     InitializeComponent();
     this.padreN       = padre;
     this.idCotizacion = idCotizacion;
     this.bandera      = bandera;
     detalleCotizacion = BD.ConsultaCotizacionById(this.idCotizacion);
 }
コード例 #2
0
 public Pagos(CotizacionesRealizadas padreN, int idCotizacion, int bandera, DateTime t)
 {
     InitializeComponent();
     this.pad          = padreN;
     this.idCotizacion = idCotizacion;
     this.bandera      = bandera;
     this.t            = t;
 }
コード例 #3
0
        private void BtnCotRe_Click(object sender, EventArgs e)
        {
            //IniciarListados(7,tipo_usuario); //Cotizaciones realizadas.
            CotizacionesRealizadas form = new CotizacionesRealizadas(this, tipo_usuario, t);

            form.Show();
            this.Enabled = false;
        }
コード例 #4
0
        public GenerarPDF(CotizacionesRealizadas padre, String tipo, int idCotizacion, int bandera)
        {
            this.padreN       = padre;
            this.tipo         = tipo;
            this.idCotizacion = idCotizacion;
            this.bandera      = bandera;

            InitializeComponent();
        }
コード例 #5
0
 public VerDetalleDiasProduccion(CotizacionesRealizadas padre, int idCotizacion)
 {
     InitializeComponent();
     this.padre        = padre;
     this.idCotizacion = idCotizacion;
 }