Example #1
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeDefaultSystemSetting()
        {
            var defaultSystemSetting = new CrudeDefaultSystemSettingServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = defaultSystemSetting.FetchWithFilter(
                    Guid.Empty
                    , defaultSystemSettingRefCombo.Text
                    , textBoxDefaultSystemSettingValue.Text
                    , Guid.Empty
                    , dateTimePickerDateTime.Checked ? Convert.ToDateTime(dateTimePickerDateTime.Value): DateTime.MinValue
                    );
                dataGridViewCrudeDefaultSystemSetting.AutoGenerateColumns = false;
                dataGridViewCrudeDefaultSystemSetting.DataSource          = bindingSource;
                dataGridViewCrudeDefaultSystemSetting.AutoResizeColumns();
                dataGridViewCrudeDefaultSystemSetting.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                defaultSystemSetting.Close();
            }
        }
        // saves the form
        // links:
        //  docLink: http://sql2x.org/documentationLink/c9522930-91f8-4468-a936-8030bb2a6482
        private void buttonSave_Click(object sender, EventArgs e)
        {
            var service = new CrudeDefaultSystemSettingServiceClient();

            try {
                _contract.DefaultSystemSettingRcd   = defaultSystemSettingRefCombo.Text;
                _contract.DefaultSystemSettingValue = textBoxDefaultSystemSettingValue.Text;
                _contract.DateTime = dateTimePickerDateTime.Checked ? Convert.ToDateTime(dateTimePickerDateTime.Value): DateTime.MinValue;

                if (_isNew)
                {
                    service.Insert(_contract);
                }
                else
                {
                    service.Update(_contract);
                }
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }

            Close();
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid defaultSystemSettingId, System.Guid defaultUserId)
        {
            var service = new CrudeDefaultSystemSettingServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByDefaultSystemSettingId(defaultSystemSettingId);
                defaultSystemSettingRefCombo.Text     = _contract.DefaultSystemSettingRcd != null ? _contract.DefaultSystemSettingRcd : String.Empty;
                textBoxDefaultSystemSettingValue.Text = _contract.DefaultSystemSettingValue;
                _contract.DefaultUserId        = defaultUserId;
                dateTimePickerDateTime.Value   = _contract.DateTime != DateTime.MinValue ? _contract.DateTime : dateTimePickerDateTime.MinDate;
                dateTimePickerDateTime.Checked = _contract.DateTime != DateTime.MinValue;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
Example #4
0
        public void RefreshSystemSettings()
        {
            // get system setting
            try {
                var setting = new CrudeDefaultSystemSettingServiceClient();
                _systemSettings = setting.FetchAll();
            } catch { }

            // get default currency
            //string defaultCurrency = SystemSetting(DefaultC.BookingCurrency);
            //CrudeFinancialCurrencyContract crudeFinancialCurrencyContract =
            //    new CrudeFinancialCurrencyServiceClient().
            //        FetchByFinancialCurrencyTypeCode(defaultCurrency);

            //if ( crudeFinancialCurrencyContract != null ) {
            //    FinancialCurrencyId = crudeFinancialCurrencyContract.FinancialCurrencyId;
            //}
        }
Example #5
0
        public ActionResult CrudeDefaultSystemSettingEdit(
            System.Guid defaultSystemSettingId
            )
        {
            CrudeDefaultSystemSettingContract contract = new CrudeDefaultSystemSettingServiceClient().FetchByDefaultSystemSettingId(defaultSystemSettingId);

            ViewBag.DefaultSystemSettingRcd =
                new SelectList(new CrudeDefaultSystemSettingRefServiceClient().FetchAll(),
                               "DefaultSystemSettingRcd",
                               "DefaultSystemSettingName",
                               contract.DefaultSystemSettingRcd
                               );


            return(View(
                       "~/Views/Crude/Default/CrudeDefaultSystemSetting/CrudeDefaultSystemSettingEdit.cshtml",
                       contract
                       ));
        }