Esempio n. 1
0
        public void Set_Save()
        {
            MessageBoxIcon msgIcon = MessageBoxIcon.Warning;
            try
            {
                if (!string.IsNullOrWhiteSpace(txtCOD_ALMA_ENTR.Text))
                {
                    msgIcon = MessageBoxIcon.Warning;
                    throw new ArgumentException(WhMessage.MsgNotModyRegis);
                }
                var obeg = new BEEntryGoods()
                {
                    ALF_DOCU_REFE = txtALF_DOCU_REFE.Text.Trim(),
                    FEC_ENTR = (DateTime?)dteFEC_ENTR.EditValue,
                    FEC_REGI = (DateTime?)dteFEC_REGI.EditValue,
                    COD_ALMA = (int?)lkeCOD_ALMA.EditValue,
                    COD_SOCI_NEGO_RESP = (int?)lkeCOD_SOCI_NEGO_RESP.EditValue,
                    COD_MOTI = (int?)lkeCOD_MOTI.EditValue,
                    ALF_COME = memALF_COME.Text.Trim(),
                    COD_USUA_CREA = SESSION_USER,
                    COD_USUA_MODI = SESSION_USER ,
                    COD_COMP = SESSION_COMP
                };

                var context = new ValidationContext(obeg, null, null);
                var errors = new List<ValidationResult>();
                if (!Validator.TryValidateObject(obeg, context, errors, true))
                {
                    foreach (ValidationResult result in errors)
                    {
                        msgIcon = MessageBoxIcon.Warning;
                        throw new ArgumentException(result.ErrorMessage);
                    }
                }

                gdvDetail.CloseEditor();
                gdvDetail.RefreshData();
                var olst = (List<BEEntryGoodsDetail>)gdvDetail.DataSource;
                if (olst.Count == 0)
                {
                    msgIcon = MessageBoxIcon.Warning;
                    throw new ArgumentException(WhMessage.MsgManyRows);
                }

                var i = 1;
                olst.ForEach(item =>
                {
                    context = new ValidationContext(item, null, null);
                    errors = new List<ValidationResult>();
                    if (!Validator.TryValidateObject(item, context, errors, true))
                    {
                        foreach (ValidationResult result in errors)
                        {
                            msgIcon = MessageBoxIcon.Warning;
                            throw new ArgumentException(string.Format("{0}\nFila: {1}", result.ErrorMessage, i));
                        }
                    }
                    i++;
                });

                var obr = new BREntryGoods();
                obr.Set_PSGN_SPMT_SVTC_ALMA_ENTR(obeg, olst);
                if (!string.IsNullOrWhiteSpace(obeg.MSG_MNTN))
                {
                    msgIcon = MessageBoxIcon.Error;
                    throw new ArgumentException(obeg.MSG_MNTN);
                }
                txtCOD_ALMA_ENTR.Text = obeg.COD_ALMA_ENTR.ToString();
                gdvDetail.RefreshData();
                StateControls(true);
                XtraMessageBox.Show(WhMessage.MsgSuccessfully, WhMessage.MsgInsCaption,
                                    MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            catch (Exception ex)
            {
                XtraMessageBox.Show(ex.Message,
                                    WhMessage.MsgInsCaption,
                                    MessageBoxButtons.OK,
                                    msgIcon);
            }
        }
Esempio n. 2
0
        private void Search()
        {
            try
            {
                var opar = new BEEntryGoods();
                opar.COD_ALMA = (int?)lkeCOD_ALMA.EditValue;
                opar.COD_MOTI = (int?)lkeCOD_MOTI.EditValue;
                opar.FEC_ENTR = (DateTime?)dteFEC_ENTR.EditValue;
                opar.FEC_REGI = (DateTime?)dteFEC_REGI.EditValue;
                opar.ALF_DOCU_REFE = txtALF_DOCU_REFE.Text;
                opar.COD_COMP = xfMain.SgIns.SESSION_COMP;

                var obr = new BREntryGoods();
                var olst = obr.Get_PSGN_SPLS_SVTC_ALMA_ENTR(opar);

                gdcSearch.DataSource = olst;
                gdvSearch.MoveFirst();
            }
            catch (Exception ex)
            {
                XtraMessageBox.Show(ex.Message, WhMessage.MsgInsCaption,
                                    MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
Esempio n. 3
0
        private void Set_EntryGoods(BEEntryGoods row)
        {
            ClearControls();
            txtCOD_ALMA_ENTR.Text = row.COD_ALMA_ENTR.ToString();
            txtALF_DOCU_REFE.Text = row.ALF_DOCU_REFE;
            dteFEC_ENTR.EditValue = row.FEC_ENTR;
            dteFEC_REGI.EditValue = row.FEC_REGI;
            lkeCOD_ALMA.EditValue = row.COD_ALMA;
            lkeCOD_SOCI_NEGO_RESP.EditValue = row.COD_SOCI_NEGO_RESP;
            lkeCOD_MOTI.EditValue = row.COD_MOTI;
            memALF_COME.Text = row.ALF_COME;

            var obeg = new BEEntryGoods() { COD_ALMA_ENTR = row.COD_ALMA_ENTR };
            var obr = new BREntryGoods();
            var olst = obr.Get_PSGN_SPLS_SVTD_ALMA_ENTR(obeg);

            gdcDetail.DataSource = olst;
            gdvDetail.RefreshData();
        }