// 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 CrudeProductExposePlanServiceClient();

            try {
                _contract.ProductExposeSetTypeRcd = productExposeSetTypeRefCombo.Text;

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

            Close();
        }
Ejemplo n.º 2
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductExposePlan()
        {
            var productExposePlan = new CrudeProductExposePlanServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productExposePlan.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , productExposeSetTypeRefCombo.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductExposePlan.AutoGenerateColumns = false;
                dataGridViewCrudeProductExposePlan.DataSource          = bindingSource;
                dataGridViewCrudeProductExposePlan.AutoResizeColumns();
                dataGridViewCrudeProductExposePlan.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productExposePlan.Close();
            }
        }
        public ActionResult CrudeProductExposePlanEdit(
            System.Guid productExposePlanId
            )
        {
            CrudeProductExposePlanContract contract = new CrudeProductExposePlanServiceClient().FetchByProductExposePlanId(productExposePlanId);

            ViewBag.ProductId =
                new SelectList(new CrudeProductServiceClient().FetchAll(),
                               "ProductId",
                               "ProductName",
                               contract.ProductId
                               );

            ViewBag.ProductExposeSetTypeRcd =
                new SelectList(new CrudeProductExposeSetTypeRefServiceClient().FetchAll(),
                               "ProductExposeSetTypeRcd",
                               "ProductExposeSetTypeName",
                               contract.ProductExposeSetTypeRcd
                               );

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


            return(View(
                       "~/Views/Crude/Product/CrudeProductExposePlan/CrudeProductExposePlanEdit.cshtml",
                       contract
                       ));
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productExposePlanId)
        {
            var service = new CrudeProductExposePlanServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductExposePlanId(productExposePlanId);
                productExposeSetTypeRefCombo.Text = _contract.ProductExposeSetTypeRcd != null ? _contract.ProductExposeSetTypeRcd : String.Empty;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

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