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

            _isNew = false;
            try {
                _contract = service.FetchByFinancialServiceId(financialServiceId);
                serviceTypeRefCombo.Text = _contract.ServiceTypeRcd != null ? _contract.ServiceTypeRcd : String.Empty;
                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();
            }
        }
        // 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 bookingServiceRequestId, string serviceTypeRcd, decimal amount, System.Guid financialCurrencyId, System.Guid financialSpecialServiceId, System.Guid financialHotelBookingId, System.Guid financialCarRentalId, System.Guid financialFerryBookingId, System.Guid userId)
        {
            try {
                _contract = new CrudeFinancialServiceContract();
                _isNew    = true;
                _contract.BookingServiceRequestId = bookingServiceRequestId;
                _contract.ServiceTypeRcd          = serviceTypeRcd;
                serviceTypeRefCombo.Text          = _contract.ServiceTypeRcd != null ? _contract.ServiceTypeRcd : String.Empty;
                _contract.Amount                      = amount;
                maskedTextBoxAmount.Text              = _contract.Amount.ToString();
                _contract.FinancialCurrencyId         = financialCurrencyId;
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                _contract.FinancialSpecialServiceId   = financialSpecialServiceId;
                _contract.FinancialHotelBookingId     = financialHotelBookingId;
                _contract.FinancialCarRentalId        = financialCarRentalId;
                _contract.FinancialFerryBookingId     = financialFerryBookingId;
                _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 CrudeFinancialServiceCreate([Bind()] CrudeFinancialServiceContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFinancialServiceServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFinancialServiceIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialService/CrudeFinancialServiceCreate.cshtml",
                       contract
                       ));
        }
示例#4
0
        public ActionResult CrudeFinancialServiceEdit([Bind()] CrudeFinancialServiceContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeFinancialServiceServiceClient().Update(contract);

                return(RedirectToAction("CrudeFinancialServiceIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialService/CrudeFinancialServiceEdit.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 CrudeFinancialServiceContract();
         _isNew     = true;
         this.Text += " - Not Savable (BookingServiceRequest 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 ShowAsAddByFinancialFerryBooking(System.Guid financialFerryBookingId)
        {
            try {
                _contract                         = new CrudeFinancialServiceContract();
                _isNew                            = true;
                _contract.DateTime                = DateTime.UtcNow;
                dateTimePickerDateTime.Text       = _contract.DateTime.ToString();
                _contract.FinancialFerryBookingId = financialFerryBookingId;

                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 CrudeFinancialServiceContract();
                _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 by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByServiceType(string serviceTypeRcd)
        {
            try {
                _contract                   = new CrudeFinancialServiceContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.ServiceTypeRcd    = serviceTypeRcd;
                serviceTypeRefCombo.Text    = _contract.ServiceTypeRcd != null ? _contract.ServiceTypeRcd : String.Empty;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
示例#9
0
        public ActionResult CrudeFinancialServiceCreate(System.Guid?bookingServiceRequestId, System.Guid?financialCurrencyId, System.Guid?financialSpecialServiceId, System.Guid?financialHotelBookingId, System.Guid?financialCarRentalId, System.Guid?financialFerryBookingId, System.Guid?userId)
        {
            var contract = new CrudeFinancialServiceContract();

            if (bookingServiceRequestId != null)
            {
                contract.BookingServiceRequestId = (System.Guid)bookingServiceRequestId;
            }
            if (financialCurrencyId != null)
            {
                contract.FinancialCurrencyId = (System.Guid)financialCurrencyId;
            }
            if (financialSpecialServiceId != null)
            {
                contract.FinancialSpecialServiceId = (System.Guid)financialSpecialServiceId;
            }
            if (financialHotelBookingId != null)
            {
                contract.FinancialHotelBookingId = (System.Guid)financialHotelBookingId;
            }
            if (financialCarRentalId != null)
            {
                contract.FinancialCarRentalId = (System.Guid)financialCarRentalId;
            }
            if (financialFerryBookingId != null)
            {
                contract.FinancialFerryBookingId = (System.Guid)financialFerryBookingId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.ServiceTypeRcd =
                new SelectList(new CrudeServiceTypeRefServiceClient().FetchAll(),
                               "ServiceTypeRcd",
                               "ServiceTypeName",
                               contract.ServiceTypeRcd
                               );

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