public ActionResult CrudeFinancialVoucherEdit(
            System.Guid financialVoucherId
            )
        {
            CrudeFinancialVoucherContract contract = new CrudeFinancialVoucherServiceClient().FetchByFinancialVoucherId(financialVoucherId);

            ViewBag.FinancialVoucherTypeRcd =
                new SelectList(new CrudeFinancialVoucherTypeRefServiceClient().FetchAll(),
                               "FinancialVoucherTypeRcd",
                               "FinancialVoucherTypeName",
                               contract.FinancialVoucherTypeRcd
                               );

            ViewBag.FinancialCurrencyId =
                new SelectList(new CrudeFinancialCurrencyServiceClient().FetchAll(),
                               "FinancialCurrencyId",
                               "FinancialCurrencyTypeName",
                               contract.FinancialCurrencyId
                               );

            ViewBag.DefaultUserName =
                new CrudeDefaultUserServiceClient().FetchByDefaultUserId(contract.UserId).DefaultUserName;


            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialVoucher/CrudeFinancialVoucherEdit.cshtml",
                       contract
                       ));
        }
예제 #2
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid financialVoucherId)
        {
            var service = new CrudeFinancialVoucherServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByFinancialVoucherId(financialVoucherId);
                financialVoucherTypeRefCombo.Text        = _contract.FinancialVoucherTypeRcd != null ? _contract.FinancialVoucherTypeRcd : String.Empty;
                maskedTextBoxVoucherNumber.Text          = _contract.VoucherNumber.ToString();
                textBoxVoucherDescription.Text           = _contract.VoucherDescription;
                maskedTextBoxValueAmount.Text            = _contract.ValueAmount.ToString();
                financialCurrencyPicker.SelectedValue    = _contract.FinancialCurrencyId;
                dateTimePickerValidFromDateTime.Value    = _contract.ValidFromDateTime != DateTime.MinValue ? _contract.ValidFromDateTime : dateTimePickerValidFromDateTime.MinDate;
                dateTimePickerValidFromDateTime.Checked  = _contract.ValidFromDateTime != DateTime.MinValue;
                dateTimePickerValidUntilDateTime.Value   = _contract.ValidUntilDateTime != DateTime.MinValue ? _contract.ValidUntilDateTime : dateTimePickerValidUntilDateTime.MinDate;
                dateTimePickerValidUntilDateTime.Checked = _contract.ValidUntilDateTime != DateTime.MinValue;
                userPicker.SelectedValue    = _contract.UserId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
예제 #3
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeFinancialVoucher()
        {
            var financialVoucher = new CrudeFinancialVoucherServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = financialVoucher.FetchWithFilter(
                    Guid.Empty
                    , financialVoucherTypeRefCombo.Text
                    , maskedTextBoxVoucherNumber.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxVoucherNumber.Text)
                    , textBoxVoucherDescription.Text
                    , maskedTextBoxValueAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxValueAmount.Text)
                    , financialCurrencyPicker.SelectedValue
                    , dateTimePickerValidFromDateTime.Checked ? Convert.ToDateTime(dateTimePickerValidFromDateTime.Value): DateTime.MinValue
                    , dateTimePickerValidUntilDateTime.Checked ? Convert.ToDateTime(dateTimePickerValidUntilDateTime.Value): DateTime.MinValue
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeFinancialVoucher.AutoGenerateColumns = false;
                dataGridViewCrudeFinancialVoucher.DataSource          = bindingSource;
                dataGridViewCrudeFinancialVoucher.AutoResizeColumns();
                dataGridViewCrudeFinancialVoucher.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                financialVoucher.Close();
            }
        }
예제 #4
0
        private void dataGridViewVoucherSearchWithRemainingAmount_SelectionChanged(object sender, EventArgs e)
        {
            if (dataGridViewVoucherSearchWithRemainingAmount.CurrentRow != null)
            {
                // get voucher
                var voucher =
                    new CrudeFinancialVoucherServiceClient().FetchByFinancialVoucherId(
                        ( Guid )dataGridViewVoucherSearchWithRemainingAmount.CurrentRow.Cells["FinancialVoucherId"].Value
                        );

                maskedTextBoxPaymentAmount.Text = voucher.ValueAmount.ToString();
                financialCurrencyPickerPayment.SelectedValue = voucher.FinancialCurrencyId;

                CashCalc();
            }
        }
예제 #5
0
        // 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 CrudeFinancialVoucherServiceClient();

            try {
                _contract.FinancialVoucherTypeRcd = financialVoucherTypeRefCombo.Text;
                _contract.VoucherNumber           = maskedTextBoxVoucherNumber.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxVoucherNumber.Text);
                _contract.VoucherDescription      = textBoxVoucherDescription.Text;
                _contract.ValueAmount             = maskedTextBoxValueAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxValueAmount.Text);
                _contract.FinancialCurrencyId     = (Guid)financialCurrencyPicker.SelectedValue;
                _contract.ValidFromDateTime       = dateTimePickerValidFromDateTime.Checked ? Convert.ToDateTime(dateTimePickerValidFromDateTime.Value): DateTime.MinValue;
                _contract.ValidUntilDateTime      = dateTimePickerValidUntilDateTime.Checked ? Convert.ToDateTime(dateTimePickerValidUntilDateTime.Value): DateTime.MinValue;
                _contract.UserId = (Guid)userPicker.SelectedValue;

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

            Close();
        }