コード例 #1
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid financialPaymentVoucherId)
        {
            var service = new CrudeFinancialPaymentVoucherServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByFinancialPaymentVoucherId(financialPaymentVoucherId);
                maskedTextBoxAmount.Text = _contract.Amount.ToString();
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                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();
            }
        }
コード例 #2
0
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28
        public void ShowAsAdd(System.Guid financialVoucherId, decimal amount, System.Guid financialCurrencyId, System.Guid userId)
        {
            try {
                _contract = new CrudeFinancialPaymentVoucherContract();
                _isNew    = true;
                _contract.FinancialVoucherId          = financialVoucherId;
                _contract.Amount                      = amount;
                maskedTextBoxAmount.Text              = _contract.Amount.ToString();
                _contract.FinancialCurrencyId         = financialCurrencyId;
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                _contract.UserId                      = userId;
                userPicker.SelectedValue              = userId;
                _contract.DateTime                    = DateTime.UtcNow;
                dateTimePickerDateTime.Text           = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
コード例 #3
0
        public ActionResult CrudeFinancialPaymentVoucherCreate([Bind()] CrudeFinancialPaymentVoucherContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFinancialPaymentVoucherServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFinancialPaymentVoucherIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialPaymentVoucher/CrudeFinancialPaymentVoucherCreate.cshtml",
                       contract
                       ));
        }
コード例 #4
0
        public ActionResult CrudeFinancialPaymentVoucherEdit([Bind()] CrudeFinancialPaymentVoucherContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeFinancialPaymentVoucherServiceClient().Update(contract);

                return(RedirectToAction("CrudeFinancialPaymentVoucherIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialPaymentVoucher/CrudeFinancialPaymentVoucherEdit.cshtml",
                       contract
                       ));
        }
コード例 #5
0
 // shows the form with default values for comboboxes and pickers
 // links:
 //  docLink: http://sql2x.org/documentationLink/e04d0806-55ef-41cc-8669-acf0ddd850c7
 public void ShowAsAdd()
 {
     try {
         _contract  = new CrudeFinancialPaymentVoucherContract();
         _isNew     = true;
         this.Text += " - Not Savable (FinancialVoucher Missing)";
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
コード例 #6
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFinancialVoucher(System.Guid financialVoucherId)
        {
            try {
                _contract                    = new CrudeFinancialPaymentVoucherContract();
                _isNew                       = true;
                _contract.DateTime           = DateTime.UtcNow;
                dateTimePickerDateTime.Text  = _contract.DateTime.ToString();
                _contract.FinancialVoucherId = financialVoucherId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
コード例 #7
0
        public ActionResult CrudeFinancialPaymentVoucherCreate(System.Guid?financialVoucherId, System.Guid?financialCurrencyId, System.Guid?userId)
        {
            var contract = new CrudeFinancialPaymentVoucherContract();

            if (financialVoucherId != null)
            {
                contract.FinancialVoucherId = (System.Guid)financialVoucherId;
            }
            if (financialCurrencyId != null)
            {
                contract.FinancialCurrencyId = (System.Guid)financialCurrencyId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

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

            if (userId == null)
            {
                contract.UserId = new System.Guid("{FFFFFFFF-5555-5555-5555-FFFFFFFFFFFF}");
            }

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

            contract.DateTime = DateTime.UtcNow;


            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialPaymentVoucher/CrudeFinancialPaymentVoucherCreate.cshtml",
                       contract
                       ));
        }