Exemplo n.º 1
0
        private void initListe()
        {
            Dictionary <int, string> lstReprezentanti = new Dictionary <int, string>();
            Dictionary <int, string> lstCabinete      = new Dictionary <int, string>();

            lstReprezentanti.Add(0, string.Empty);
            lstCabinete.Add(0, string.Empty);

            if (this.lClient != null)
            {
                foreach (var elem in BClientiReprezentanti.GetListByIdClient(this.lClient.Id, CDL.iStomaLab.CDefinitiiComune.EnumStare.Activa, null))
                {
                    lstReprezentanti.Add(elem.Id, BClientiReprezentanti.getReprezentant(elem.Id, null).GetIdentitateReprezentant());
                }

                foreach (var elem in BClientiCabinete.GetListByIdClient(this.lClient.Id, CDefinitiiComune.EnumStare.Activa, null))
                {
                    lstCabinete.Add(elem.Id, elem.Denumire);
                }
            }

            this.cboStare.BeginUpdate();
            this.cboStare.DataSource = BClientiComenziEtape.StructStareEtapa.GetList();
            this.cboStare.EndUpdate();

            BColectieEtape listaEtape = new BColectieEtape();

            if (this.lLucrareSelectata != null)
            {                                                                        //this.lLucrareSelectata.id
                BColectieLucrariEtape etape = BLucrariEtape.GetListByParamIdLucrare(0, EnumStare.Activa, null);
                if (etape.Count > 0)
                {
                    listaEtape = BEtape.getByListaId(etape.GetListaIdEtape(), null);
                }
                else
                {
                    listaEtape = BEtape.GetListByParam(EnumStare.Activa, null);
                }
            }

            this.cboEtapaCurenta.BeginUpdate();
            this.cboEtapaCurenta.DataSource = listaEtape;
            this.cboEtapaCurenta.EndUpdate();

            /* if (this.lComanda != null)
             * {
             *    if (this.lComanda.IdEtapaSetari > 0)
             *         this.cboEtapaCurenta.SelectedItem = this.lComanda.IdEtapaSetari;
             *     else
             *         this.cboEtapaCurenta.SelectedItem = null;
             *     this.cboStare.SelectedIndex = Convert.ToInt32(this.lComanda.StatusEtapa);
             * }*/

            this.cboEtapaCurenta.DropDownStyle = ComboBoxStyle.DropDownList;
            this.cboStare.DropDownStyle        = ComboBoxStyle.DropDownList;
        }
Exemplo n.º 2
0
        public void Initializeaza(BListaPreturiStandard pPretLucrare)
        {
            base.InitializeazaVariabileleGenerale();

            this.lPretLucrare = pPretLucrare;
            incepeIncarcarea();

            if (this.lPretLucrare == null)
            {
                this.txtDenumireLucrare.Goleste();
                this.txtPrescurtareLucrare.Goleste();
                this.txtCodLucrare.Goleste();
                this.lblCautaCategorieLucrare.Goleste();
                this.txtValoareLucrare.Goleste();
                this.chkLucrareEuro.Checked = false;
                this.chkLucrareRon.Checked  = false;
                this.txtTermenMediuLucrare.Goleste();
                this.lblCautaSubcategorieLucrare.Goleste();
            }
            else
            {
                this.lColectieLucrariEtape            = BLucrariEtape.GetListByParamIdLucrare(this.lPretLucrare.Id, CDL.iStomaLab.CDefinitiiComune.EnumStare.Activa, null);
                FormListaCategorii._SCategorie        = BCategorii.getCategorieById(this.lPretLucrare.IdCategorie, null);
                this.txtDenumireLucrare.Text          = this.lPretLucrare.Denumire;
                this.txtPrescurtareLucrare.Text       = this.lPretLucrare.DenumirePrescurtata;
                this.txtCodLucrare.Text               = this.lPretLucrare.CodIntern;
                this.lblCautaCategorieLucrare.Text    = BListaPreturiStandard.getById(BListaPreturiStandard.getByIdCategorie(this.lPretLucrare.IdCategorie, null), null);
                this.lblCautaSubcategorieLucrare.Text = BListaPreturiStandard.getById(this.lPretLucrare.IdCategorie, null);
                if (this.lPretLucrare.ValoareEUR != 0)
                {
                    this.chkLucrareEuro.Checked = true;
                    this.txtValoareLucrare.Text = lPretLucrare.ValoareEUR.ToString();
                }
                else
                {
                    this.chkLucrareRon.Checked  = true;
                    this.txtValoareLucrare.Text = lPretLucrare.ValoareRON.ToString();
                }
                this.txtTermenMediuLucrare.Text = this.lPretLucrare.TermenMediuZile.ToString();
            }

            ConstruiesteColoaneDGV();
            ConstruiesteRanduriDGV();

            finalizeazaIncarcarea();
        }
Exemplo n.º 3
0
        public void Initializeaza(BListaPreturiStandard pLucrare)
        {
            base.InitializeazaVariabileleGenerale();

            this.lLucrare = pLucrare;

            incepeIncarcarea();
            if (this.lLucrare == null)
            {
                this.cboListaEtape.AllowModification(false);
            }
            else
            {
                BColectieEtape listaEtape = new BColectieEtape();
                if (this.lLucrare != null)
                {
                    BColectieLucrariEtape etape = BLucrariEtape.GetListByParamIdLucrare(this.lLucrare.Id, EnumStare.Activa, null);
                    if (etape.Count > 0)
                    {
                        listaEtape = BEtape.getByListaId(etape.GetListaIdEtape(), null);
                    }
                    else
                    {
                        listaEtape = BEtape.GetListByParam(EnumStare.Activa, null);
                    }
                }

                this.cboListaEtape.BeginUpdate();
                this.cboListaEtape.DataSource = listaEtape;
                this.cboListaEtape.EndUpdate();
                this.cboListaEtape.SelectedItem = null;
                this.cboListaEtape.AllowModification(true);
            }

            finalizeazaIncarcarea();
        }
Exemplo n.º 4
0
        private void initListe()
        {
            Dictionary <int, string> lstReprezentanti = new Dictionary <int, string>();
            Dictionary <int, string> lstCabinete      = new Dictionary <int, string>();

            //Dictionary<int, string> lstEtape = new Dictionary<int, string>();

            lstReprezentanti.Add(0, string.Empty);
            lstCabinete.Add(0, string.Empty);
            //lstEtape.Add(0, string.Empty);

            foreach (var elem in BClientiReprezentanti.GetListByIdClient(this.lClient.Id, CDL.iStomaLab.CDefinitiiComune.EnumStare.Activa, null))
            {
                lstReprezentanti.Add(elem.Id, BClientiReprezentanti.getReprezentant(elem.Id, null).GetIdentitateReprezentant());
            }
            foreach (var elem in BClientiCabinete.GetListByIdClient(this.lClient.Id, CDefinitiiComune.EnumStare.Activa, null))
            {
                lstCabinete.Add(elem.Id, elem.Denumire);
            }

            this.cboStare.BeginUpdate();
            this.cboStare.DataSource = BClientiComenziEtape.StructStareEtapa.GetList();
            this.cboStare.EndUpdate();

            BColectieEtape listaEtape = new BColectieEtape();

            if (this.lLucrareSelectata != null)
            {
                BColectieLucrariEtape etape = BLucrariEtape.GetListByParamIdLucrare(this.lLucrareSelectata.Id, EnumStare.Activa, null);
                if (etape.Count > 0)
                {
                    listaEtape = BEtape.getByListaId(etape.GetListaIdEtape(), null);
                    //foreach (var elem in etape)
                    //{
                    //    lstEtape.Add(elem.IdEtapa, BEtape.GetEtapaById(elem.IdEtapa, EnumStare.Activa, null).Denumire);
                    //}
                }
                else
                {
                    listaEtape = BEtape.GetListByParam(EnumStare.Activa, null);
                    //foreach (var elem in etapeStandard)
                    //{
                    //    lstEtape.Add(elem.Id, elem.Denumire);
                    //}
                }
            }

            this.cboComandaReprezentant.DataSource    = new BindingSource(lstReprezentanti, null);
            this.cboComandaReprezentant.DisplayMember = BMultiLingv.getElementById(BMultiLingv.EnumDictionar.Value);
            this.cboComandaReprezentant.ValueMember   = BMultiLingv.getElementById(BMultiLingv.EnumDictionar.Key);

            this.cboCabinet.DataSource    = new BindingSource(lstCabinete, null);
            this.cboCabinet.DisplayMember = BMultiLingv.getElementById(BMultiLingv.EnumDictionar.Value);
            this.cboCabinet.ValueMember   = BMultiLingv.getElementById(BMultiLingv.EnumDictionar.Key);

            vizibilitateZonaCabinete(lstCabinete.Count > 1);
            vizibilitateZonaMedici(lstReprezentanti.Count > 1);

            this.cboEtapaCurenta.BeginUpdate();
            this.cboEtapaCurenta.DataSource = listaEtape;
            this.cboEtapaCurenta.EndUpdate();

            if (this.lComanda != null)
            {
                if (this.lComanda.IdReprezentantClient != 0)
                {
                    this.cboComandaReprezentant.SelectedValue = this.lComanda.IdReprezentantClient;
                }
                if (this.lComanda.IdCabinet != 0)
                {
                    this.cboCabinet.SelectedValue = this.lComanda.IdCabinet;
                }
                if (this.lComanda.IdEtapaSetari > 0)
                {
                    this.cboEtapaCurenta.SelectedItem = this.lComanda.IdEtapaSetari;
                }
                else
                {
                    this.cboEtapaCurenta.SelectedItem = null;
                }
                this.cboStare.SelectedIndex = Convert.ToInt32(this.lComanda.StatusEtapa);
            }

            this.cboComandaReprezentant.DropDownStyle = ComboBoxStyle.DropDownList;
            this.cboCabinet.DropDownStyle             = ComboBoxStyle.DropDownList;
            this.cboEtapaCurenta.DropDownStyle        = ComboBoxStyle.DropDownList;
            this.cboStare.DropDownStyle = ComboBoxStyle.DropDownList;
        }
Exemplo n.º 5
0
        public void Initializeaza()
        {
            base.InitializeazaVariabileleGenerale();

            incepeIncarcarea();

            if (this.lLucrare == null)
            {
                this.txtDenumireLucrare.Goleste();
                this.txtPrescurtareLucrare.Goleste();
                this.txtCodLucrare.Goleste();
                this.lblCautaCategorieLucrare.Goleste();
                this.ctrlValoareMonetara.Initializeaza(null);
                this.txtTermenMediuLucrare.Goleste();
                this.lblCautaSubcategorieLucrare.Goleste();
            }
            else
            {
                this.lColectieLucrariEtape = BLucrariEtape.GetListByParamIdLucrare(this.lLucrare.Id, CDL.iStomaLab.CDefinitiiComune.EnumStare.Activa, null);
                foreach (var etapa in this.lColectieLucrariEtape)
                {
                    this.lColectieEtape.Adauga(BEtape.GetEtapaById(etapa.IdEtapa, EnumStare.Activa, null));
                }

                this.lColectieEtapeTemp = this.lColectieEtape;

                this.txtDenumireLucrare.Text    = this.lLucrare.Denumire;
                this.txtPrescurtareLucrare.Text = this.lLucrare.DenumirePrescurtata;
                this.txtCodLucrare.Text         = this.lLucrare.CodIntern;

                if (this.lLucrare.IdCategorie != 0)
                {
                    this.lCategorie = BCategorii.getCategorieById(this.lLucrare.IdCategorie, null);

                    this.lblCautaCategorieLucrare.ObiectAfisajCorespunzator = this.lCategorie;
                    this.lblCautaCategorieLucrare.Tag = this.lCategorie;

                    if (this.lCategorie.IdCategorie > 0)
                    {
                        BCategorii categ = BCategorii.getCategorieById(this.lCategorie.IdCategorie, null);
                        this.lblCautaCategorieLucrare.ObiectAfisajCorespunzator = categ;
                        this.lblCautaCategorieLucrare.Text = categ.Denumire;

                        this.lblCautaSubcategorieLucrare.ObiectAfisajCorespunzator = this.lCategorie;
                        this.lblCautaSubcategorieLucrare.Text = this.lCategorie.Denumire;
                    }
                    else
                    {
                        this.lblCautaCategorieLucrare.Text = this.lCategorie.Denumire;
                        this.lblCautaSubcategorieLucrare.Goleste();
                    }
                }

                if (this.lLucrare.ValoareEUR != 0)
                {
                    Tuple <double, EnumTipMoneda> tupleValoareMonetara = new Tuple <double, EnumTipMoneda>(this.lLucrare.ValoareEUR, EnumTipMoneda.Euro);
                    this.ctrlValoareMonetara.Initializeaza(tupleValoareMonetara);
                }
                else
                {
                    Tuple <double, EnumTipMoneda> tupleValoareMonetara = new Tuple <double, EnumTipMoneda>(this.lLucrare.ValoareRON, EnumTipMoneda.Lei);
                    this.ctrlValoareMonetara.Initializeaza(tupleValoareMonetara);
                }
                this.txtTermenMediuLucrare.Text = this.lLucrare.TermenMediuZile.ToString();
            }

            ConstruiesteColoaneDGV();
            ConstruiesteRanduriDGV();

            finalizeazaIncarcarea();
        }