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

            _isNew = false;
            try {
                _contract = service.FetchByFinancialBookingTransactionId(financialBookingTransactionId);
                maskedTextBoxTransactionNumber.Text          = _contract.TransactionNumber.ToString();
                financialBookingTransactionTypeRefCombo.Text = _contract.FinancialBookingTransactionTypeRcd != null ? _contract.FinancialBookingTransactionTypeRcd : String.Empty;
                maskedTextBoxAmount.Text = _contract.Amount.ToString();
                financialCurrencyPicker.SelectedValue   = _contract.FinancialCurrencyId;
                financialCostcentrePicker.SelectedValue = _contract.FinancialCostcentreId;
                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();
            }
        }
Ejemplo n.º 2
0
        public ActionResult CrudeFinancialBookingTransactionCreate([Bind()] CrudeFinancialBookingTransactionContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFinancialBookingTransactionServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFinancialBookingTransactionIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialBookingTransaction/CrudeFinancialBookingTransactionCreate.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 3
0
        public ActionResult CrudeFinancialBookingTransactionEdit([Bind()] CrudeFinancialBookingTransactionContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeFinancialBookingTransactionServiceClient().Update(contract);

                return(RedirectToAction("CrudeFinancialBookingTransactionIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialBookingTransaction/CrudeFinancialBookingTransactionEdit.cshtml",
                       contract
                       ));
        }
 // 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 CrudeFinancialBookingTransactionContract();
         _isNew     = true;
         this.Text += " - Not Savable (Booking Missing)";
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFinancialService(System.Guid financialServiceId)
        {
            try {
                _contract                    = new CrudeFinancialBookingTransactionContract();
                _isNew                       = true;
                _contract.DateTime           = DateTime.UtcNow;
                dateTimePickerDateTime.Text  = _contract.DateTime.ToString();
                _contract.FinancialServiceId = financialServiceId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFinancialBookingTransactionType(string financialBookingTransactionTypeRcd)
        {
            try {
                _contract                   = new CrudeFinancialBookingTransactionContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.FinancialBookingTransactionTypeRcd = financialBookingTransactionTypeRcd;
                financialBookingTransactionTypeRefCombo.Text = _contract.FinancialBookingTransactionTypeRcd != null ? _contract.FinancialBookingTransactionTypeRcd : String.Empty;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/599dcb45-f71b-4672-bb18-46975a4fe9b3
        public void ShowAsAddByRules(System.Guid userId)
        {
            try {
                _contract                   = new CrudeFinancialBookingTransactionContract();
                _isNew                      = true;
                _contract.UserId            = userId;
                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();
                }
            }
        }
        // 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 bookingId, int transactionNumber, string financialBookingTransactionTypeRcd, decimal amount, System.Guid financialFeeId, System.Guid financialTaxId, System.Guid financialFareId, System.Guid financialPaymentId, System.Guid financialCurrencyId, System.Guid financialCostcentreId, System.Guid financialAdjustmentId, System.Guid financialServiceId, System.Guid userId)
        {
            try {
                _contract                                    = new CrudeFinancialBookingTransactionContract();
                _isNew                                       = true;
                _contract.BookingId                          = bookingId;
                _contract.TransactionNumber                  = transactionNumber;
                maskedTextBoxTransactionNumber.Text          = _contract.TransactionNumber.ToString();
                _contract.FinancialBookingTransactionTypeRcd = financialBookingTransactionTypeRcd;
                financialBookingTransactionTypeRefCombo.Text = _contract.FinancialBookingTransactionTypeRcd != null ? _contract.FinancialBookingTransactionTypeRcd : String.Empty;
                _contract.Amount                             = amount;
                maskedTextBoxAmount.Text                     = _contract.Amount.ToString();
                _contract.FinancialFeeId                     = financialFeeId;
                _contract.FinancialTaxId                     = financialTaxId;
                _contract.FinancialFareId                    = financialFareId;
                _contract.FinancialPaymentId                 = financialPaymentId;
                _contract.FinancialCurrencyId                = financialCurrencyId;
                financialCurrencyPicker.SelectedValue        = _contract.FinancialCurrencyId;
                _contract.FinancialCostcentreId              = financialCostcentreId;
                financialCostcentrePicker.SelectedValue      = _contract.FinancialCostcentreId;
                _contract.FinancialAdjustmentId              = financialAdjustmentId;
                _contract.FinancialServiceId                 = financialServiceId;
                _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();
                }
            }
        }
Ejemplo n.º 9
0
        public ActionResult CrudeFinancialBookingTransactionCreate(System.Guid?bookingId, System.Guid?financialFeeId, System.Guid?financialTaxId, System.Guid?financialFareId, System.Guid?financialPaymentId, System.Guid?financialCurrencyId, System.Guid?financialCostcentreId, System.Guid?financialAdjustmentId, System.Guid?financialServiceId, System.Guid?userId)
        {
            var contract = new CrudeFinancialBookingTransactionContract();

            if (bookingId != null)
            {
                contract.BookingId = (System.Guid)bookingId;
            }
            if (financialFeeId != null)
            {
                contract.FinancialFeeId = (System.Guid)financialFeeId;
            }
            if (financialTaxId != null)
            {
                contract.FinancialTaxId = (System.Guid)financialTaxId;
            }
            if (financialFareId != null)
            {
                contract.FinancialFareId = (System.Guid)financialFareId;
            }
            if (financialPaymentId != null)
            {
                contract.FinancialPaymentId = (System.Guid)financialPaymentId;
            }
            if (financialCurrencyId != null)
            {
                contract.FinancialCurrencyId = (System.Guid)financialCurrencyId;
            }
            if (financialCostcentreId != null)
            {
                contract.FinancialCostcentreId = (System.Guid)financialCostcentreId;
            }
            if (financialAdjustmentId != null)
            {
                contract.FinancialAdjustmentId = (System.Guid)financialAdjustmentId;
            }
            if (financialServiceId != null)
            {
                contract.FinancialServiceId = (System.Guid)financialServiceId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.FinancialBookingTransactionTypeRcd =
                new SelectList(new CrudeFinancialBookingTransactionTypeRefServiceClient().FetchAll(),
                               "FinancialBookingTransactionTypeRcd",
                               "FinancialBookingTransactionTypeName",
                               contract.FinancialBookingTransactionTypeRcd
                               );

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

            ViewBag.FinancialCostcentreId =
                new SelectList(new CrudeFinancialCostcentreServiceClient().FetchAll(),
                               "FinancialCostcentreId",
                               "FinancialCostcentreName",
                               contract.FinancialCostcentreId
                               );

            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/CrudeFinancialBookingTransaction/CrudeFinancialBookingTransactionCreate.cshtml",
                       contract
                       ));
        }