コード例 #1
0
        private void RemoveProducts()
        {
            var productsId = _view.GetIdProductsForDelete();

            foreach (var prod in productsId)
            {
                _productService.RemoveProduct(_order.OrderId, prod);
            }

            _view.SetProductBasket(_order.GetCloneProductList());
            _view.SetOrderPrice(_order.TotalCost);
        }
コード例 #2
0
        public ClientManagerAddOrderSecondStepPresenter(IKernel kernel, IClientManagerAddOrderSecondStepView view,
                                                        IClientOrderServiceForClientManager model, IServiceForControlProductMovementInClientOrder productService,
                                                        ClientOrder order)
        {
            _kernel         = kernel;
            _view           = view;
            _order          = order;
            _model          = model;
            _productService = productService;


            _view.AddProduct     += AddProduct;
            _view.Back           += Back;
            _view.RemoveProducts += RemoveProducts;
            _view.ConfirmOrder   += ConfirmOrder;

            _view.SetProductBasket(_order.GetCloneProductList());
            _view.SetOrderPrice(order.TotalCost);
        }
コード例 #3
0
        public void SetOrderInfo(ClientOrder order)
        {
            if (order != null)
            {
                var clientInfo = order.ClientInfo;
                LabelCurrentSurname.Text     = clientInfo.Surname;
                LabelCurrentName.Text        = clientInfo.Name;
                LabelCurrentPatronymic.Text  = clientInfo.Patronymic;
                LabelCurrentPhoneNumber.Text = clientInfo.PhoneNumber;

                var address = clientInfo.Address;
                LabelCurrentCity.Text        = address.City;
                LabelCurrentStreet.Text      = address.Street;
                LabelCurrentHouseNumber.Text = address.HomeNumber;
                LabelCurrentPavilion.Text    = address.PavilionNumber;
                LabelCurrentPorch.Text       = address.PorchNumber;
                LabelCurrentFloor.Text       = address.FloorNumber;
                LabelCurrentFlat.Text        = address.FlatNumber;

                GroupBoxClientAddress.Visible = true;

                LabelCurrentOrderCost.Text = order.TotalCost.ToString() + " рубля(-ей)";

                var products = order.GetCloneProductList();
                foreach (var product in products)
                {
                    FlowLayoutPanel panelCurrentProduct = new FlowLayoutPanel();
                    panelCurrentProduct.Name = "PanelCurrentProduct";
                    panelCurrentProduct.Size = new System.Drawing.Size(732, 127);

                    Label labelProductGroup = new Label();
                    labelProductGroup.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                     System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelProductGroup.Margin = new Padding(4, 10, 4, 0);
                    labelProductGroup.Name   = "LabelProductGroup";
                    labelProductGroup.Size   = new System.Drawing.Size(339, 24);
                    labelProductGroup.Text   = "Продуктовая группа";
                    panelCurrentProduct.Controls.Add(labelProductGroup);

                    Label labelProductName = new Label();
                    labelProductName.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                    System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelProductName.Margin = new Padding(4, 10, 4, 0);
                    labelProductName.Name   = "LabelProductName";
                    labelProductName.Size   = new System.Drawing.Size(373, 24);
                    labelProductName.Text   = "Название продукта";
                    panelCurrentProduct.Controls.Add(labelProductName);

                    Label labelCurrentProductGroup = new Label();
                    labelCurrentProductGroup.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                            System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentProductGroup.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductGroup.Name   = "LabelCurrentProductGroup";
                    labelCurrentProductGroup.Size   = new System.Drawing.Size(339, 24);
                    labelCurrentProductGroup.Text   = product.ProductGroup;
                    panelCurrentProduct.Controls.Add(labelCurrentProductGroup);

                    Label labelCurrentProductName = new Label();
                    labelCurrentProductName.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                           System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentProductName.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductName.Name   = "LabelCurrentProductName";
                    labelCurrentProductName.Size   = new System.Drawing.Size(372, 24);
                    labelCurrentProductName.Text   = product.ProductName;
                    panelCurrentProduct.Controls.Add(labelCurrentProductName);

                    Label labelProductPrice = new Label();
                    labelProductPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                     System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelProductPrice.Margin = new Padding(4, 10, 4, 0);
                    labelProductPrice.Name   = "LabelProductPrice";
                    labelProductPrice.Size   = new System.Drawing.Size(339, 24);
                    labelProductPrice.Text   = "Стоимость единицы продукта";
                    panelCurrentProduct.Controls.Add(labelProductPrice);

                    Label labelNumberOfProductInOrder = new Label();
                    labelNumberOfProductInOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                               System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelNumberOfProductInOrder.Margin = new Padding(4, 10, 4, 0);
                    labelNumberOfProductInOrder.Name   = "LabelNumberOfProductInOrder";
                    labelNumberOfProductInOrder.Size   = new System.Drawing.Size(372, 24);
                    labelNumberOfProductInOrder.Text   = "Количество продукта в заказе";
                    panelCurrentProduct.Controls.Add(labelNumberOfProductInOrder);

                    Label labelCurrentProductPrice = new Label();
                    labelCurrentProductPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                            System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentProductPrice.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductPrice.Name   = "LabelCurrentProductPrice";
                    labelCurrentProductPrice.Size   = new System.Drawing.Size(339, 24);
                    labelCurrentProductPrice.Text   = product.Price.ToString() + " рубля(-ей)";
                    panelCurrentProduct.Controls.Add(labelCurrentProductPrice);

                    Label labelCurrentNumberOfProductInOrder = new Label();
                    labelCurrentNumberOfProductInOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                                      System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentNumberOfProductInOrder.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentNumberOfProductInOrder.Name   = "LabelCurrentNumberOfProductInOrder";
                    labelCurrentNumberOfProductInOrder.Size   = new System.Drawing.Size(339, 24);
                    labelCurrentNumberOfProductInOrder.Text   = product.Lot.QuantityProduct.ToString();
                    panelCurrentProduct.Controls.Add(labelCurrentNumberOfProductInOrder);

                    PanelOfProducts.Controls.Add(panelCurrentProduct);
                }

                GroupBoxClientInfoAndOrderInfo.Visible = true;
                LabelListProductsInOrder.Visible       = true;
                PanelOfProducts.Visible = true;
            }
            else
            {
                MessageBox.Show(
                    "На данный момент отсутствуют заказы для доставки.",
                    "Заказ не найден");
                GroupBoxClientAddress.Visible          = false;
                GroupBoxClientInfoAndOrderInfo.Visible = false;
                PanelOfProducts.Visible = false;
            }
        }
コード例 #4
0
        public void SetOrderInfo(ClientOrder order)
        {
            if (order != null)
            {
                var clientInfo = order.ClientInfo;
                LabelCurrentSurname.Text     = clientInfo.Surname;
                LabelCurrentName.Text        = clientInfo.Name;
                LabelCurrentPatronymic.Text  = clientInfo.Patronymic;
                LabelCurrentPhoneNumber.Text = clientInfo.PhoneNumber;
                if (order.IsDelivery)
                {
                    this.PanelOfProducts.Size          = new System.Drawing.Size(862, 289);
                    LabelCurrentWayToReceiveOrder.Text = "Доставка";

                    var address = clientInfo.Address;
                    LabelCurrentCity.Text        = address.City;
                    LabelCurrentStreet.Text      = address.Street;
                    LabelCurrentHouseNumber.Text = address.HomeNumber;
                    LabelCurrentPavilion.Text    = address.PavilionNumber;
                    LabelCurrentPorch.Text       = address.PorchNumber;
                    LabelCurrentFloor.Text       = address.FloorNumber;
                    LabelCurrentFlat.Text        = address.FlatNumber;

                    GroupBoxClientAddress.Visible = true;
                }
                else
                {
                    LabelCurrentWayToReceiveOrder.Text = "Самовывоз";
                    this.PanelOfProducts.Size          = new System.Drawing.Size(862, 389);
                }

                LabelCurrentOrderDate.Text = order.OrderDate.ToShortDateString();
                LabelCurrentOrderCost.Text = order.TotalCost.ToString() + " рубля(-ей)";

                var products = order.GetCloneProductList();
                foreach (var product in products)
                {
                    FlowLayoutPanel panelCurrentProduct = new FlowLayoutPanel();
                    panelCurrentProduct.Name = "PanelCurrentProduct";
                    panelCurrentProduct.Size = new System.Drawing.Size(732, 127);

                    Label labelProductGroup = new Label();
                    labelProductGroup.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                     System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelProductGroup.Margin = new Padding(4, 10, 4, 0);
                    labelProductGroup.Name   = "LabelProductGroup";
                    labelProductGroup.Size   = new System.Drawing.Size(339, 24);
                    labelProductGroup.Text   = "Продуктовая группа";
                    panelCurrentProduct.Controls.Add(labelProductGroup);

                    Label labelProductName = new Label();
                    labelProductName.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                    System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelProductName.Margin = new Padding(4, 10, 4, 0);
                    labelProductName.Name   = "LabelProductName";
                    labelProductName.Size   = new System.Drawing.Size(373, 24);
                    labelProductName.Text   = "Название продукта";
                    panelCurrentProduct.Controls.Add(labelProductName);

                    Label labelCurrentProductGroup = new Label();
                    labelCurrentProductGroup.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                            System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentProductGroup.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductGroup.Name   = "LabelCurrentProductGroup";
                    labelCurrentProductGroup.Size   = new System.Drawing.Size(339, 24);
                    labelCurrentProductGroup.Text   = product.ProductGroup;
                    panelCurrentProduct.Controls.Add(labelCurrentProductGroup);

                    Label labelCurrentProductName = new Label();
                    labelCurrentProductName.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                           System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentProductName.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductName.Name   = "LabelCurrentProductName";
                    labelCurrentProductName.Size   = new System.Drawing.Size(372, 24);
                    labelCurrentProductName.Text   = product.ProductName;
                    panelCurrentProduct.Controls.Add(labelCurrentProductName);

                    Label labelProductPrice = new Label();
                    labelProductPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                     System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelProductPrice.Margin = new Padding(4, 10, 4, 0);
                    labelProductPrice.Name   = "LabelProductPrice";
                    labelProductPrice.Size   = new System.Drawing.Size(339, 24);
                    labelProductPrice.Text   = "Стоимость единицы продукта";
                    panelCurrentProduct.Controls.Add(labelProductPrice);

                    Label labelNumberOfProductInOrder = new Label();
                    labelNumberOfProductInOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                               System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 204);
                    labelNumberOfProductInOrder.Margin = new Padding(4, 10, 4, 0);
                    labelNumberOfProductInOrder.Name   = "LabelNumberOfProductInOrder";
                    labelNumberOfProductInOrder.Size   = new System.Drawing.Size(372, 24);
                    labelNumberOfProductInOrder.Text   = "Количество продукта в заказе";
                    panelCurrentProduct.Controls.Add(labelNumberOfProductInOrder);

                    Label labelCurrentProductPrice = new Label();
                    labelCurrentProductPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                            System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentProductPrice.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductPrice.Name   = "LabelCurrentProductPrice";
                    labelCurrentProductPrice.Size   = new System.Drawing.Size(339, 24);
                    labelCurrentProductPrice.Text   = product.Price.ToString() + " рубля(-ей)";
                    panelCurrentProduct.Controls.Add(labelCurrentProductPrice);

                    Label labelCurrentNumberOfProductInOrder = new Label();
                    labelCurrentNumberOfProductInOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F,
                                                                                      System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 204);
                    labelCurrentNumberOfProductInOrder.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentNumberOfProductInOrder.Name   = "LabelCurrentNumberOfProductInOrder";
                    labelCurrentNumberOfProductInOrder.Size   = new System.Drawing.Size(339, 24);
                    labelCurrentNumberOfProductInOrder.Text   = product.Lot.QuantityProduct.ToString();
                    panelCurrentProduct.Controls.Add(labelCurrentNumberOfProductInOrder);

                    PanelOfProducts.Controls.Add(panelCurrentProduct);
                }

                GroupBoxClientInfo.Visible       = true;
                LabelListProductsInOrder.Visible = true;
                PanelOfProducts.Visible          = true;
                GroupBoxGeneralOrderInfo.Visible = true;
            }
            else
            {
                MessageBox.Show(
                    "Заказ с таким номером не был найден в базе. Проверьте правильность введённых данных  повторите попытку.",
                    "Заказ не найден");
            }
        }
コード例 #5
0
        public void SetOrderInfo(ClientOrder order)
        {
            if (order != null)
            {
                var clientInfo = order.ClientInfo;
                LabelCurrentSurname.Text     = clientInfo.Surname;
                LabelCurrentName.Text        = clientInfo.Name;
                LabelCurrentPatronymic.Text  = clientInfo.Patronymic;
                LabelCurrentPhoneNumber.Text = clientInfo.PhoneNumber;
                LabelCurrentOrderDate.Text   = order.OrderDate.ToShortDateString();
                LabelCurrentOrderCost.Text   = order.TotalCost + " рубля(-ей)";

                var products = order.GetCloneProductList();
                foreach (var product in products)
                {
                    FlowLayoutPanel panelCurrentProduct = new FlowLayoutPanel();
                    panelCurrentProduct.Name = "PanelCurrentProduct";
                    panelCurrentProduct.Size = new Size(732, 127);

                    Label labelProductGroup = new Label();
                    labelProductGroup.Font = new Font("Microsoft Sans Serif", 11F,
                                                      FontStyle.Regular, GraphicsUnit.Point, 204);
                    labelProductGroup.Margin = new Padding(4, 10, 4, 0);
                    labelProductGroup.Name   = "LabelProductGroup";
                    labelProductGroup.Size   = new Size(339, 24);
                    labelProductGroup.Text   = "Продуктовая группа";
                    panelCurrentProduct.Controls.Add(labelProductGroup);

                    Label labelProductName = new Label();
                    labelProductName.Font = new Font("Microsoft Sans Serif", 11F,
                                                     FontStyle.Regular, GraphicsUnit.Point, 204);
                    labelProductName.Margin = new Padding(4, 10, 4, 0);
                    labelProductName.Name   = "LabelProductName";
                    labelProductName.Size   = new Size(373, 24);
                    labelProductName.Text   = "Название продукта";
                    panelCurrentProduct.Controls.Add(labelProductName);

                    Label labelCurrentProductGroup = new Label();
                    labelCurrentProductGroup.Font = new Font("Microsoft Sans Serif", 11F,
                                                             FontStyle.Bold, GraphicsUnit.Point, 204);
                    labelCurrentProductGroup.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductGroup.Name   = "LabelCurrentProductGroup";
                    labelCurrentProductGroup.Size   = new Size(339, 24);
                    labelCurrentProductGroup.Text   = product.ProductGroup;
                    panelCurrentProduct.Controls.Add(labelCurrentProductGroup);

                    Label labelCurrentProductName = new Label();
                    labelCurrentProductName.Font = new Font("Microsoft Sans Serif", 11F,
                                                            FontStyle.Bold, GraphicsUnit.Point, 204);
                    labelCurrentProductName.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductName.Name   = "LabelCurrentProductName";
                    labelCurrentProductName.Size   = new Size(372, 24);
                    labelCurrentProductName.Text   = product.ProductName;
                    panelCurrentProduct.Controls.Add(labelCurrentProductName);

                    Label labelProductPrice = new Label();
                    labelProductPrice.Font = new Font("Microsoft Sans Serif", 11F,
                                                      FontStyle.Regular, GraphicsUnit.Point, ((204)));
                    labelProductPrice.Margin = new Padding(4, 10, 4, 0);
                    labelProductPrice.Name   = "LabelProductPrice";
                    labelProductPrice.Size   = new Size(339, 24);
                    labelProductPrice.Text   = "Стоимость единицы продукта";
                    panelCurrentProduct.Controls.Add(labelProductPrice);

                    Label labelNumberOfProductInOrder = new Label();
                    labelNumberOfProductInOrder.Font = new Font("Microsoft Sans Serif", 11F,
                                                                FontStyle.Regular, GraphicsUnit.Point, 204);
                    labelNumberOfProductInOrder.Margin = new Padding(4, 10, 4, 0);
                    labelNumberOfProductInOrder.Name   = "LabelNumberOfProductInOrder";
                    labelNumberOfProductInOrder.Size   = new Size(372, 24);
                    labelNumberOfProductInOrder.Text   = "Количество продукта в заказе";
                    panelCurrentProduct.Controls.Add(labelNumberOfProductInOrder);

                    Label labelCurrentProductPrice = new Label();
                    labelCurrentProductPrice.Font = new Font("Microsoft Sans Serif", 11F,
                                                             FontStyle.Bold, GraphicsUnit.Point, 204);
                    labelCurrentProductPrice.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentProductPrice.Name   = "LabelCurrentProductPrice";
                    labelCurrentProductPrice.Size   = new Size(339, 24);
                    labelCurrentProductPrice.Text   = product.Price + " рубля(-ей)";
                    panelCurrentProduct.Controls.Add(labelCurrentProductPrice);

                    Label labelCurrentNumberOfProductInOrder = new Label();
                    labelCurrentNumberOfProductInOrder.Font = new Font("Microsoft Sans Serif", 11F,
                                                                       FontStyle.Bold, GraphicsUnit.Point, 204);
                    labelCurrentNumberOfProductInOrder.Margin = new Padding(4, 0, 4, 0);
                    labelCurrentNumberOfProductInOrder.Name   = "LabelCurrentNumberOfProductInOrder";
                    labelCurrentNumberOfProductInOrder.Size   = new Size(339, 24);
                    labelCurrentNumberOfProductInOrder.Text   = product.Lot.QuantityProduct.ToString();
                    panelCurrentProduct.Controls.Add(labelCurrentNumberOfProductInOrder);

                    PanelOfProducts.Controls.Add(panelCurrentProduct);
                }

                GroupBoxClientInfo.Visible       = true;
                LabelListProductsInOrder.Visible = true;
                PanelOfProducts.Visible          = true;
                GroupBoxGeneralOrderInfo.Visible = true;
            }
            else
            {
                MessageBox.Show(
                    "Заказ с таким номером не был найден в базе. Проверьте правильность введённых данных повторите попытку.",
                    "Заказ не найден");
            }
        }