| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- namespace RestaurantApp
- {
- partial class OrderForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.splitContainer = new System.Windows.Forms.SplitContainer();
- this.groupOrders = new System.Windows.Forms.GroupBox();
- this.dgvOrders = new System.Windows.Forms.DataGridView();
- this.panelOrdersTop = new System.Windows.Forms.Panel();
- this.cmbStatusFilter = new System.Windows.Forms.ComboBox();
- this.txtOrderSearch = new System.Windows.Forms.TextBox();
- this.btnOrderSearch = new System.Windows.Forms.Button();
- this.btnRefreshOrders = new System.Windows.Forms.Button();
- this.btnNewOrder = new System.Windows.Forms.Button();
- this.groupOrderDetails = new System.Windows.Forms.GroupBox();
- this.dgvOrderItems = new System.Windows.Forms.DataGridView();
- this.panelOrderInfo = new System.Windows.Forms.Panel();
- this.btnCloseOrder = new System.Windows.Forms.Button();
- this.btnPay = new System.Windows.Forms.Button();
- this.btnRemoveItem = new System.Windows.Forms.Button();
- this.btnEditItem = new System.Windows.Forms.Button();
- this.btnAddItem = new System.Windows.Forms.Button();
- this.lblStatus = new System.Windows.Forms.Label();
- this.lblTotal = new System.Windows.Forms.Label();
- this.lblClient = new System.Windows.Forms.Label();
- this.lblOpenedAt = new System.Windows.Forms.Label();
- this.lblWaiter = new System.Windows.Forms.Label();
- this.lblTable = new System.Windows.Forms.Label();
- this.groupAddItem = new System.Windows.Forms.GroupBox();
- this.btnAddDish = new System.Windows.Forms.Button();
- this.lblNotes = new System.Windows.Forms.Label();
- this.lblQuantity = new System.Windows.Forms.Label();
- this.lblDish = new System.Windows.Forms.Label();
- this.txtItemNotes = new System.Windows.Forms.TextBox();
- this.numQuantity = new System.Windows.Forms.NumericUpDown();
- this.cmbDish = new System.Windows.Forms.ComboBox();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
- this.splitContainer.Panel1.SuspendLayout();
- this.splitContainer.Panel2.SuspendLayout();
- this.splitContainer.SuspendLayout();
- this.groupOrders.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrders)).BeginInit();
- this.panelOrdersTop.SuspendLayout();
- this.groupOrderDetails.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrderItems)).BeginInit();
- this.panelOrderInfo.SuspendLayout();
- this.groupAddItem.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).BeginInit();
- this.SuspendLayout();
- //
- // splitContainer
- //
- this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer.Location = new System.Drawing.Point(0, 0);
- this.splitContainer.Name = "splitContainer";
- this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer.Panel1
- //
- this.splitContainer.Panel1.Controls.Add(this.groupOrders);
- //
- // splitContainer.Panel2
- //
- this.splitContainer.Panel2.Controls.Add(this.groupOrderDetails);
- this.splitContainer.Size = new System.Drawing.Size(1100, 700);
- this.splitContainer.SplitterDistance = 350;
- this.splitContainer.TabIndex = 0;
- //
- // groupOrders
- //
- this.groupOrders.Controls.Add(this.dgvOrders);
- this.groupOrders.Controls.Add(this.panelOrdersTop);
- this.groupOrders.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupOrders.Location = new System.Drawing.Point(0, 0);
- this.groupOrders.Name = "groupOrders";
- this.groupOrders.Size = new System.Drawing.Size(1100, 350);
- this.groupOrders.TabIndex = 0;
- this.groupOrders.TabStop = false;
- this.groupOrders.Text = "Заказы";
- //
- // dgvOrders
- //
- this.dgvOrders.AllowUserToAddRows = false;
- this.dgvOrders.AllowUserToDeleteRows = false;
- this.dgvOrders.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dgvOrders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvOrders.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvOrders.Location = new System.Drawing.Point(3, 56);
- this.dgvOrders.Name = "dgvOrders";
- this.dgvOrders.ReadOnly = true;
- this.dgvOrders.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvOrders.Size = new System.Drawing.Size(1094, 291);
- this.dgvOrders.TabIndex = 1;
- //
- // panelOrdersTop
- //
- this.panelOrdersTop.Controls.Add(this.cmbStatusFilter);
- this.panelOrdersTop.Controls.Add(this.txtOrderSearch);
- this.panelOrdersTop.Controls.Add(this.btnOrderSearch);
- this.panelOrdersTop.Controls.Add(this.btnRefreshOrders);
- this.panelOrdersTop.Controls.Add(this.btnNewOrder);
- this.panelOrdersTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.panelOrdersTop.Location = new System.Drawing.Point(3, 16);
- this.panelOrdersTop.Name = "panelOrdersTop";
- this.panelOrdersTop.Size = new System.Drawing.Size(1094, 40);
- this.panelOrdersTop.TabIndex = 0;
- //
- // cmbStatusFilter
- //
- this.cmbStatusFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbStatusFilter.Items.AddRange(new object[] {
- "Все",
- "open",
- "in_progress",
- "ready",
- "closed",
- "cancelled"});
- this.cmbStatusFilter.Location = new System.Drawing.Point(10, 10);
- this.cmbStatusFilter.Name = "cmbStatusFilter";
- this.cmbStatusFilter.Size = new System.Drawing.Size(120, 21);
- this.cmbStatusFilter.TabIndex = 4;
- //
- // txtOrderSearch
- //
- this.txtOrderSearch.Location = new System.Drawing.Point(140, 10);
- this.txtOrderSearch.Name = "txtOrderSearch";
- this.txtOrderSearch.Size = new System.Drawing.Size(150, 20);
- this.txtOrderSearch.TabIndex = 3;
- //
- // btnOrderSearch
- //
- this.btnOrderSearch.Location = new System.Drawing.Point(300, 8);
- this.btnOrderSearch.Name = "btnOrderSearch";
- this.btnOrderSearch.Size = new System.Drawing.Size(75, 23);
- this.btnOrderSearch.TabIndex = 2;
- this.btnOrderSearch.Text = "Поиск";
- this.btnOrderSearch.UseVisualStyleBackColor = true;
- //
- // btnRefreshOrders
- //
- this.btnRefreshOrders.Location = new System.Drawing.Point(385, 8);
- this.btnRefreshOrders.Name = "btnRefreshOrders";
- this.btnRefreshOrders.Size = new System.Drawing.Size(75, 23);
- this.btnRefreshOrders.TabIndex = 1;
- this.btnRefreshOrders.Text = "Обновить";
- this.btnRefreshOrders.UseVisualStyleBackColor = true;
- //
- // btnNewOrder
- //
- this.btnNewOrder.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnNewOrder.ForeColor = System.Drawing.Color.White;
- this.btnNewOrder.Location = new System.Drawing.Point(1000, 8);
- this.btnNewOrder.Name = "btnNewOrder";
- this.btnNewOrder.Size = new System.Drawing.Size(90, 23);
- this.btnNewOrder.TabIndex = 0;
- this.btnNewOrder.Text = "Новый заказ";
- this.btnNewOrder.UseVisualStyleBackColor = false;
- //
- // groupOrderDetails
- //
- this.groupOrderDetails.Controls.Add(this.dgvOrderItems);
- this.groupOrderDetails.Controls.Add(this.panelOrderInfo);
- this.groupOrderDetails.Controls.Add(this.groupAddItem);
- this.groupOrderDetails.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupOrderDetails.Location = new System.Drawing.Point(0, 0);
- this.groupOrderDetails.Name = "groupOrderDetails";
- this.groupOrderDetails.Size = new System.Drawing.Size(1100, 346);
- this.groupOrderDetails.TabIndex = 0;
- this.groupOrderDetails.TabStop = false;
- this.groupOrderDetails.Text = "Детали заказа";
- //
- // dgvOrderItems
- //
- this.dgvOrderItems.AllowUserToAddRows = false;
- this.dgvOrderItems.AllowUserToDeleteRows = false;
- this.dgvOrderItems.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dgvOrderItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvOrderItems.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvOrderItems.Location = new System.Drawing.Point(3, 130);
- this.dgvOrderItems.Name = "dgvOrderItems";
- this.dgvOrderItems.ReadOnly = true;
- this.dgvOrderItems.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvOrderItems.Size = new System.Drawing.Size(694, 213);
- this.dgvOrderItems.TabIndex = 2;
- //
- // panelOrderInfo
- //
- this.panelOrderInfo.Controls.Add(this.btnCloseOrder);
- this.panelOrderInfo.Controls.Add(this.btnPay);
- this.panelOrderInfo.Controls.Add(this.btnRemoveItem);
- this.panelOrderInfo.Controls.Add(this.btnEditItem);
- this.panelOrderInfo.Controls.Add(this.btnAddItem);
- this.panelOrderInfo.Controls.Add(this.lblStatus);
- this.panelOrderInfo.Controls.Add(this.lblTotal);
- this.panelOrderInfo.Controls.Add(this.lblClient);
- this.panelOrderInfo.Controls.Add(this.lblOpenedAt);
- this.panelOrderInfo.Controls.Add(this.lblWaiter);
- this.panelOrderInfo.Controls.Add(this.lblTable);
- this.panelOrderInfo.Dock = System.Windows.Forms.DockStyle.Top;
- this.panelOrderInfo.Location = new System.Drawing.Point(3, 16);
- this.panelOrderInfo.Name = "panelOrderInfo";
- this.panelOrderInfo.Size = new System.Drawing.Size(694, 114);
- this.panelOrderInfo.TabIndex = 1;
- //
- // btnCloseOrder
- //
- this.btnCloseOrder.BackColor = System.Drawing.Color.Orange;
- this.btnCloseOrder.Location = new System.Drawing.Point(500, 55);
- this.btnCloseOrder.Name = "btnCloseOrder";
- this.btnCloseOrder.Size = new System.Drawing.Size(90, 35);
- this.btnCloseOrder.TabIndex = 10;
- this.btnCloseOrder.Text = "Закрыть заказ";
- this.btnCloseOrder.UseVisualStyleBackColor = false;
- //
- // btnPay
- //
- this.btnPay.BackColor = System.Drawing.Color.Green;
- this.btnPay.ForeColor = System.Drawing.Color.White;
- this.btnPay.Location = new System.Drawing.Point(500, 10);
- this.btnPay.Name = "btnPay";
- this.btnPay.Size = new System.Drawing.Size(90, 35);
- this.btnPay.TabIndex = 9;
- this.btnPay.Text = "Оплата";
- this.btnPay.UseVisualStyleBackColor = false;
- //
- // btnRemoveItem
- //
- this.btnRemoveItem.Location = new System.Drawing.Point(300, 80);
- this.btnRemoveItem.Name = "btnRemoveItem";
- this.btnRemoveItem.Size = new System.Drawing.Size(90, 23);
- this.btnRemoveItem.TabIndex = 8;
- this.btnRemoveItem.Text = "Удалить";
- this.btnRemoveItem.UseVisualStyleBackColor = true;
- //
- // btnEditItem
- //
- this.btnEditItem.Location = new System.Drawing.Point(300, 55);
- this.btnEditItem.Name = "btnEditItem";
- this.btnEditItem.Size = new System.Drawing.Size(90, 23);
- this.btnEditItem.TabIndex = 7;
- this.btnEditItem.Text = "Изменить";
- this.btnEditItem.UseVisualStyleBackColor = true;
- //
- // btnAddItem
- //
- this.btnAddItem.Location = new System.Drawing.Point(300, 30);
- this.btnAddItem.Name = "btnAddItem";
- this.btnAddItem.Size = new System.Drawing.Size(90, 23);
- this.btnAddItem.TabIndex = 6;
- this.btnAddItem.Text = "Добавить";
- this.btnAddItem.UseVisualStyleBackColor = true;
- //
- // lblStatus
- //
- this.lblStatus.AutoSize = true;
- this.lblStatus.Location = new System.Drawing.Point(300, 10);
- this.lblStatus.Name = "lblStatus";
- this.lblStatus.Size = new System.Drawing.Size(44, 13);
- this.lblStatus.TabIndex = 5;
- this.lblStatus.Text = "Статус:";
- //
- // lblTotal
- //
- this.lblTotal.AutoSize = true;
- this.lblTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
- this.lblTotal.Location = new System.Drawing.Point(10, 90);
- this.lblTotal.Name = "lblTotal";
- this.lblTotal.Size = new System.Drawing.Size(88, 17);
- this.lblTotal.TabIndex = 4;
- this.lblTotal.Text = "Сумма: 0 ₽";
- //
- // lblClient
- //
- this.lblClient.AutoSize = true;
- this.lblClient.Location = new System.Drawing.Point(10, 70);
- this.lblClient.Name = "lblClient";
- this.lblClient.Size = new System.Drawing.Size(46, 13);
- this.lblClient.TabIndex = 3;
- this.lblClient.Text = "Клиент:";
- //
- // lblOpenedAt
- //
- this.lblOpenedAt.AutoSize = true;
- this.lblOpenedAt.Location = new System.Drawing.Point(10, 50);
- this.lblOpenedAt.Name = "lblOpenedAt";
- this.lblOpenedAt.Size = new System.Drawing.Size(51, 13);
- this.lblOpenedAt.TabIndex = 2;
- this.lblOpenedAt.Text = "Открыт: ";
- //
- // lblWaiter
- //
- this.lblWaiter.AutoSize = true;
- this.lblWaiter.Location = new System.Drawing.Point(10, 30);
- this.lblWaiter.Name = "lblWaiter";
- this.lblWaiter.Size = new System.Drawing.Size(61, 13);
- this.lblWaiter.TabIndex = 1;
- this.lblWaiter.Text = "Официант:";
- //
- // lblTable
- //
- this.lblTable.AutoSize = true;
- this.lblTable.Location = new System.Drawing.Point(10, 10);
- this.lblTable.Name = "lblTable";
- this.lblTable.Size = new System.Drawing.Size(37, 13);
- this.lblTable.TabIndex = 0;
- this.lblTable.Text = "Стол: ";
- //
- // groupAddItem
- //
- this.groupAddItem.Controls.Add(this.btnAddDish);
- this.groupAddItem.Controls.Add(this.lblNotes);
- this.groupAddItem.Controls.Add(this.lblQuantity);
- this.groupAddItem.Controls.Add(this.lblDish);
- this.groupAddItem.Controls.Add(this.txtItemNotes);
- this.groupAddItem.Controls.Add(this.numQuantity);
- this.groupAddItem.Controls.Add(this.cmbDish);
- this.groupAddItem.Dock = System.Windows.Forms.DockStyle.Right;
- this.groupAddItem.Location = new System.Drawing.Point(697, 16);
- this.groupAddItem.Name = "groupAddItem";
- this.groupAddItem.Size = new System.Drawing.Size(400, 327);
- this.groupAddItem.TabIndex = 0;
- this.groupAddItem.TabStop = false;
- this.groupAddItem.Text = "Добавить блюдо";
- //
- // btnAddDish
- //
- this.btnAddDish.BackColor = System.Drawing.Color.LimeGreen;
- this.btnAddDish.Location = new System.Drawing.Point(20, 250);
- this.btnAddDish.Name = "btnAddDish";
- this.btnAddDish.Size = new System.Drawing.Size(120, 30);
- this.btnAddDish.TabIndex = 6;
- this.btnAddDish.Text = "Добавить в заказ";
- this.btnAddDish.UseVisualStyleBackColor = false;
- //
- // lblNotes
- //
- this.lblNotes.AutoSize = true;
- this.lblNotes.Location = new System.Drawing.Point(17, 150);
- this.lblNotes.Name = "lblNotes";
- this.lblNotes.Size = new System.Drawing.Size(73, 13);
- this.lblNotes.TabIndex = 5;
- this.lblNotes.Text = "Примечание:";
- //
- // lblQuantity
- //
- this.lblQuantity.AutoSize = true;
- this.lblQuantity.Location = new System.Drawing.Point(17, 90);
- this.lblQuantity.Name = "lblQuantity";
- this.lblQuantity.Size = new System.Drawing.Size(69, 13);
- this.lblQuantity.TabIndex = 4;
- this.lblQuantity.Text = "Количество:";
- //
- // lblDish
- //
- this.lblDish.AutoSize = true;
- this.lblDish.Location = new System.Drawing.Point(17, 30);
- this.lblDish.Name = "lblDish";
- this.lblDish.Size = new System.Drawing.Size(43, 13);
- this.lblDish.TabIndex = 3;
- this.lblDish.Text = "Блюдо:";
- //
- // txtItemNotes
- //
- this.txtItemNotes.Location = new System.Drawing.Point(20, 170);
- this.txtItemNotes.Multiline = true;
- this.txtItemNotes.Name = "txtItemNotes";
- this.txtItemNotes.Size = new System.Drawing.Size(360, 60);
- this.txtItemNotes.TabIndex = 2;
- //
- // numQuantity
- //
- this.numQuantity.Location = new System.Drawing.Point(20, 110);
- this.numQuantity.Minimum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.numQuantity.Name = "numQuantity";
- this.numQuantity.Size = new System.Drawing.Size(100, 20);
- this.numQuantity.TabIndex = 1;
- this.numQuantity.Value = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- //
- // cmbDish
- //
- this.cmbDish.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbDish.FormattingEnabled = true;
- this.cmbDish.Location = new System.Drawing.Point(20, 50);
- this.cmbDish.Name = "cmbDish";
- this.cmbDish.Size = new System.Drawing.Size(360, 21);
- this.cmbDish.TabIndex = 0;
- //
- // OrderForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1100, 700);
- this.Controls.Add(this.splitContainer);
- this.Name = "OrderForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Управление заказами";
- this.splitContainer.Panel1.ResumeLayout(false);
- this.splitContainer.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
- this.splitContainer.ResumeLayout(false);
- this.groupOrders.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrders)).EndInit();
- this.panelOrdersTop.ResumeLayout(false);
- this.panelOrdersTop.PerformLayout();
- this.groupOrderDetails.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrderItems)).EndInit();
- this.panelOrderInfo.ResumeLayout(false);
- this.panelOrderInfo.PerformLayout();
- this.groupAddItem.ResumeLayout(false);
- this.groupAddItem.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).EndInit();
- this.ResumeLayout(false);
- }
- private System.Windows.Forms.SplitContainer splitContainer;
- private System.Windows.Forms.GroupBox groupOrders;
- private System.Windows.Forms.DataGridView dgvOrders;
- private System.Windows.Forms.Panel panelOrdersTop;
- private System.Windows.Forms.ComboBox cmbStatusFilter;
- private System.Windows.Forms.TextBox txtOrderSearch;
- private System.Windows.Forms.Button btnOrderSearch;
- private System.Windows.Forms.Button btnRefreshOrders;
- private System.Windows.Forms.Button btnNewOrder;
- private System.Windows.Forms.GroupBox groupOrderDetails;
- private System.Windows.Forms.DataGridView dgvOrderItems;
- private System.Windows.Forms.Panel panelOrderInfo;
- private System.Windows.Forms.Label lblTable;
- private System.Windows.Forms.Label lblWaiter;
- private System.Windows.Forms.Label lblOpenedAt;
- private System.Windows.Forms.Label lblClient;
- private System.Windows.Forms.Label lblTotal;
- private System.Windows.Forms.Label lblStatus;
- private System.Windows.Forms.Button btnCloseOrder;
- private System.Windows.Forms.Button btnPay;
- private System.Windows.Forms.Button btnRemoveItem;
- private System.Windows.Forms.Button btnEditItem;
- private System.Windows.Forms.Button btnAddItem;
- private System.Windows.Forms.GroupBox groupAddItem;
- private System.Windows.Forms.Button btnAddDish;
- private System.Windows.Forms.Label lblNotes;
- private System.Windows.Forms.Label lblQuantity;
- private System.Windows.Forms.Label lblDish;
- private System.Windows.Forms.TextBox txtItemNotes;
- private System.Windows.Forms.NumericUpDown numQuantity;
- private System.Windows.Forms.ComboBox cmbDish;
- }
- }
|