OrderForm.Designer.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. namespace RestaurantApp
  2. {
  3. partial class OrderForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. private void InitializeComponent()
  15. {
  16. this.splitContainer = new System.Windows.Forms.SplitContainer();
  17. this.groupOrders = new System.Windows.Forms.GroupBox();
  18. this.dgvOrders = new System.Windows.Forms.DataGridView();
  19. this.panelOrdersTop = new System.Windows.Forms.Panel();
  20. this.cmbStatusFilter = new System.Windows.Forms.ComboBox();
  21. this.txtOrderSearch = new System.Windows.Forms.TextBox();
  22. this.btnOrderSearch = new System.Windows.Forms.Button();
  23. this.btnRefreshOrders = new System.Windows.Forms.Button();
  24. this.btnNewOrder = new System.Windows.Forms.Button();
  25. this.groupOrderDetails = new System.Windows.Forms.GroupBox();
  26. this.dgvOrderItems = new System.Windows.Forms.DataGridView();
  27. this.panelOrderInfo = new System.Windows.Forms.Panel();
  28. this.btnCloseOrder = new System.Windows.Forms.Button();
  29. this.btnPay = new System.Windows.Forms.Button();
  30. this.btnRemoveItem = new System.Windows.Forms.Button();
  31. this.btnEditItem = new System.Windows.Forms.Button();
  32. this.btnAddItem = new System.Windows.Forms.Button();
  33. this.lblStatus = new System.Windows.Forms.Label();
  34. this.lblTotal = new System.Windows.Forms.Label();
  35. this.lblClient = new System.Windows.Forms.Label();
  36. this.lblOpenedAt = new System.Windows.Forms.Label();
  37. this.lblWaiter = new System.Windows.Forms.Label();
  38. this.lblTable = new System.Windows.Forms.Label();
  39. this.groupAddItem = new System.Windows.Forms.GroupBox();
  40. this.btnAddDish = new System.Windows.Forms.Button();
  41. this.lblNotes = new System.Windows.Forms.Label();
  42. this.lblQuantity = new System.Windows.Forms.Label();
  43. this.lblDish = new System.Windows.Forms.Label();
  44. this.txtItemNotes = new System.Windows.Forms.TextBox();
  45. this.numQuantity = new System.Windows.Forms.NumericUpDown();
  46. this.cmbDish = new System.Windows.Forms.ComboBox();
  47. ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
  48. this.splitContainer.Panel1.SuspendLayout();
  49. this.splitContainer.Panel2.SuspendLayout();
  50. this.splitContainer.SuspendLayout();
  51. this.groupOrders.SuspendLayout();
  52. ((System.ComponentModel.ISupportInitialize)(this.dgvOrders)).BeginInit();
  53. this.panelOrdersTop.SuspendLayout();
  54. this.groupOrderDetails.SuspendLayout();
  55. ((System.ComponentModel.ISupportInitialize)(this.dgvOrderItems)).BeginInit();
  56. this.panelOrderInfo.SuspendLayout();
  57. this.groupAddItem.SuspendLayout();
  58. ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).BeginInit();
  59. this.SuspendLayout();
  60. //
  61. // splitContainer
  62. //
  63. this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.splitContainer.Location = new System.Drawing.Point(0, 0);
  65. this.splitContainer.Name = "splitContainer";
  66. this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
  67. //
  68. // splitContainer.Panel1
  69. //
  70. this.splitContainer.Panel1.Controls.Add(this.groupOrders);
  71. //
  72. // splitContainer.Panel2
  73. //
  74. this.splitContainer.Panel2.Controls.Add(this.groupOrderDetails);
  75. this.splitContainer.Size = new System.Drawing.Size(1100, 700);
  76. this.splitContainer.SplitterDistance = 350;
  77. this.splitContainer.TabIndex = 0;
  78. //
  79. // groupOrders
  80. //
  81. this.groupOrders.Controls.Add(this.dgvOrders);
  82. this.groupOrders.Controls.Add(this.panelOrdersTop);
  83. this.groupOrders.Dock = System.Windows.Forms.DockStyle.Fill;
  84. this.groupOrders.Location = new System.Drawing.Point(0, 0);
  85. this.groupOrders.Name = "groupOrders";
  86. this.groupOrders.Size = new System.Drawing.Size(1100, 350);
  87. this.groupOrders.TabIndex = 0;
  88. this.groupOrders.TabStop = false;
  89. this.groupOrders.Text = "Заказы";
  90. //
  91. // dgvOrders
  92. //
  93. this.dgvOrders.AllowUserToAddRows = false;
  94. this.dgvOrders.AllowUserToDeleteRows = false;
  95. this.dgvOrders.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  96. this.dgvOrders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  97. this.dgvOrders.Dock = System.Windows.Forms.DockStyle.Fill;
  98. this.dgvOrders.Location = new System.Drawing.Point(3, 56);
  99. this.dgvOrders.Name = "dgvOrders";
  100. this.dgvOrders.ReadOnly = true;
  101. this.dgvOrders.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  102. this.dgvOrders.Size = new System.Drawing.Size(1094, 291);
  103. this.dgvOrders.TabIndex = 1;
  104. //
  105. // panelOrdersTop
  106. //
  107. this.panelOrdersTop.Controls.Add(this.cmbStatusFilter);
  108. this.panelOrdersTop.Controls.Add(this.txtOrderSearch);
  109. this.panelOrdersTop.Controls.Add(this.btnOrderSearch);
  110. this.panelOrdersTop.Controls.Add(this.btnRefreshOrders);
  111. this.panelOrdersTop.Controls.Add(this.btnNewOrder);
  112. this.panelOrdersTop.Dock = System.Windows.Forms.DockStyle.Top;
  113. this.panelOrdersTop.Location = new System.Drawing.Point(3, 16);
  114. this.panelOrdersTop.Name = "panelOrdersTop";
  115. this.panelOrdersTop.Size = new System.Drawing.Size(1094, 40);
  116. this.panelOrdersTop.TabIndex = 0;
  117. //
  118. // cmbStatusFilter
  119. //
  120. this.cmbStatusFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  121. this.cmbStatusFilter.Items.AddRange(new object[] {
  122. "Все",
  123. "open",
  124. "in_progress",
  125. "ready",
  126. "closed",
  127. "cancelled"});
  128. this.cmbStatusFilter.Location = new System.Drawing.Point(10, 10);
  129. this.cmbStatusFilter.Name = "cmbStatusFilter";
  130. this.cmbStatusFilter.Size = new System.Drawing.Size(120, 21);
  131. this.cmbStatusFilter.TabIndex = 4;
  132. //
  133. // txtOrderSearch
  134. //
  135. this.txtOrderSearch.Location = new System.Drawing.Point(140, 10);
  136. this.txtOrderSearch.Name = "txtOrderSearch";
  137. this.txtOrderSearch.Size = new System.Drawing.Size(150, 20);
  138. this.txtOrderSearch.TabIndex = 3;
  139. //
  140. // btnOrderSearch
  141. //
  142. this.btnOrderSearch.Location = new System.Drawing.Point(300, 8);
  143. this.btnOrderSearch.Name = "btnOrderSearch";
  144. this.btnOrderSearch.Size = new System.Drawing.Size(75, 23);
  145. this.btnOrderSearch.TabIndex = 2;
  146. this.btnOrderSearch.Text = "Поиск";
  147. this.btnOrderSearch.UseVisualStyleBackColor = true;
  148. //
  149. // btnRefreshOrders
  150. //
  151. this.btnRefreshOrders.Location = new System.Drawing.Point(385, 8);
  152. this.btnRefreshOrders.Name = "btnRefreshOrders";
  153. this.btnRefreshOrders.Size = new System.Drawing.Size(75, 23);
  154. this.btnRefreshOrders.TabIndex = 1;
  155. this.btnRefreshOrders.Text = "Обновить";
  156. this.btnRefreshOrders.UseVisualStyleBackColor = true;
  157. //
  158. // btnNewOrder
  159. //
  160. this.btnNewOrder.BackColor = System.Drawing.Color.DodgerBlue;
  161. this.btnNewOrder.ForeColor = System.Drawing.Color.White;
  162. this.btnNewOrder.Location = new System.Drawing.Point(1000, 8);
  163. this.btnNewOrder.Name = "btnNewOrder";
  164. this.btnNewOrder.Size = new System.Drawing.Size(90, 23);
  165. this.btnNewOrder.TabIndex = 0;
  166. this.btnNewOrder.Text = "Новый заказ";
  167. this.btnNewOrder.UseVisualStyleBackColor = false;
  168. //
  169. // groupOrderDetails
  170. //
  171. this.groupOrderDetails.Controls.Add(this.dgvOrderItems);
  172. this.groupOrderDetails.Controls.Add(this.panelOrderInfo);
  173. this.groupOrderDetails.Controls.Add(this.groupAddItem);
  174. this.groupOrderDetails.Dock = System.Windows.Forms.DockStyle.Fill;
  175. this.groupOrderDetails.Location = new System.Drawing.Point(0, 0);
  176. this.groupOrderDetails.Name = "groupOrderDetails";
  177. this.groupOrderDetails.Size = new System.Drawing.Size(1100, 346);
  178. this.groupOrderDetails.TabIndex = 0;
  179. this.groupOrderDetails.TabStop = false;
  180. this.groupOrderDetails.Text = "Детали заказа";
  181. //
  182. // dgvOrderItems
  183. //
  184. this.dgvOrderItems.AllowUserToAddRows = false;
  185. this.dgvOrderItems.AllowUserToDeleteRows = false;
  186. this.dgvOrderItems.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  187. this.dgvOrderItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  188. this.dgvOrderItems.Dock = System.Windows.Forms.DockStyle.Fill;
  189. this.dgvOrderItems.Location = new System.Drawing.Point(3, 130);
  190. this.dgvOrderItems.Name = "dgvOrderItems";
  191. this.dgvOrderItems.ReadOnly = true;
  192. this.dgvOrderItems.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  193. this.dgvOrderItems.Size = new System.Drawing.Size(694, 213);
  194. this.dgvOrderItems.TabIndex = 2;
  195. //
  196. // panelOrderInfo
  197. //
  198. this.panelOrderInfo.Controls.Add(this.btnCloseOrder);
  199. this.panelOrderInfo.Controls.Add(this.btnPay);
  200. this.panelOrderInfo.Controls.Add(this.btnRemoveItem);
  201. this.panelOrderInfo.Controls.Add(this.btnEditItem);
  202. this.panelOrderInfo.Controls.Add(this.btnAddItem);
  203. this.panelOrderInfo.Controls.Add(this.lblStatus);
  204. this.panelOrderInfo.Controls.Add(this.lblTotal);
  205. this.panelOrderInfo.Controls.Add(this.lblClient);
  206. this.panelOrderInfo.Controls.Add(this.lblOpenedAt);
  207. this.panelOrderInfo.Controls.Add(this.lblWaiter);
  208. this.panelOrderInfo.Controls.Add(this.lblTable);
  209. this.panelOrderInfo.Dock = System.Windows.Forms.DockStyle.Top;
  210. this.panelOrderInfo.Location = new System.Drawing.Point(3, 16);
  211. this.panelOrderInfo.Name = "panelOrderInfo";
  212. this.panelOrderInfo.Size = new System.Drawing.Size(694, 114);
  213. this.panelOrderInfo.TabIndex = 1;
  214. //
  215. // btnCloseOrder
  216. //
  217. this.btnCloseOrder.BackColor = System.Drawing.Color.Orange;
  218. this.btnCloseOrder.Location = new System.Drawing.Point(500, 55);
  219. this.btnCloseOrder.Name = "btnCloseOrder";
  220. this.btnCloseOrder.Size = new System.Drawing.Size(90, 35);
  221. this.btnCloseOrder.TabIndex = 10;
  222. this.btnCloseOrder.Text = "Закрыть заказ";
  223. this.btnCloseOrder.UseVisualStyleBackColor = false;
  224. //
  225. // btnPay
  226. //
  227. this.btnPay.BackColor = System.Drawing.Color.Green;
  228. this.btnPay.ForeColor = System.Drawing.Color.White;
  229. this.btnPay.Location = new System.Drawing.Point(500, 10);
  230. this.btnPay.Name = "btnPay";
  231. this.btnPay.Size = new System.Drawing.Size(90, 35);
  232. this.btnPay.TabIndex = 9;
  233. this.btnPay.Text = "Оплата";
  234. this.btnPay.UseVisualStyleBackColor = false;
  235. //
  236. // btnRemoveItem
  237. //
  238. this.btnRemoveItem.Location = new System.Drawing.Point(300, 80);
  239. this.btnRemoveItem.Name = "btnRemoveItem";
  240. this.btnRemoveItem.Size = new System.Drawing.Size(90, 23);
  241. this.btnRemoveItem.TabIndex = 8;
  242. this.btnRemoveItem.Text = "Удалить";
  243. this.btnRemoveItem.UseVisualStyleBackColor = true;
  244. //
  245. // btnEditItem
  246. //
  247. this.btnEditItem.Location = new System.Drawing.Point(300, 55);
  248. this.btnEditItem.Name = "btnEditItem";
  249. this.btnEditItem.Size = new System.Drawing.Size(90, 23);
  250. this.btnEditItem.TabIndex = 7;
  251. this.btnEditItem.Text = "Изменить";
  252. this.btnEditItem.UseVisualStyleBackColor = true;
  253. //
  254. // btnAddItem
  255. //
  256. this.btnAddItem.Location = new System.Drawing.Point(300, 30);
  257. this.btnAddItem.Name = "btnAddItem";
  258. this.btnAddItem.Size = new System.Drawing.Size(90, 23);
  259. this.btnAddItem.TabIndex = 6;
  260. this.btnAddItem.Text = "Добавить";
  261. this.btnAddItem.UseVisualStyleBackColor = true;
  262. //
  263. // lblStatus
  264. //
  265. this.lblStatus.AutoSize = true;
  266. this.lblStatus.Location = new System.Drawing.Point(300, 10);
  267. this.lblStatus.Name = "lblStatus";
  268. this.lblStatus.Size = new System.Drawing.Size(44, 13);
  269. this.lblStatus.TabIndex = 5;
  270. this.lblStatus.Text = "Статус:";
  271. //
  272. // lblTotal
  273. //
  274. this.lblTotal.AutoSize = true;
  275. this.lblTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
  276. this.lblTotal.Location = new System.Drawing.Point(10, 90);
  277. this.lblTotal.Name = "lblTotal";
  278. this.lblTotal.Size = new System.Drawing.Size(88, 17);
  279. this.lblTotal.TabIndex = 4;
  280. this.lblTotal.Text = "Сумма: 0 ₽";
  281. //
  282. // lblClient
  283. //
  284. this.lblClient.AutoSize = true;
  285. this.lblClient.Location = new System.Drawing.Point(10, 70);
  286. this.lblClient.Name = "lblClient";
  287. this.lblClient.Size = new System.Drawing.Size(46, 13);
  288. this.lblClient.TabIndex = 3;
  289. this.lblClient.Text = "Клиент:";
  290. //
  291. // lblOpenedAt
  292. //
  293. this.lblOpenedAt.AutoSize = true;
  294. this.lblOpenedAt.Location = new System.Drawing.Point(10, 50);
  295. this.lblOpenedAt.Name = "lblOpenedAt";
  296. this.lblOpenedAt.Size = new System.Drawing.Size(51, 13);
  297. this.lblOpenedAt.TabIndex = 2;
  298. this.lblOpenedAt.Text = "Открыт: ";
  299. //
  300. // lblWaiter
  301. //
  302. this.lblWaiter.AutoSize = true;
  303. this.lblWaiter.Location = new System.Drawing.Point(10, 30);
  304. this.lblWaiter.Name = "lblWaiter";
  305. this.lblWaiter.Size = new System.Drawing.Size(61, 13);
  306. this.lblWaiter.TabIndex = 1;
  307. this.lblWaiter.Text = "Официант:";
  308. //
  309. // lblTable
  310. //
  311. this.lblTable.AutoSize = true;
  312. this.lblTable.Location = new System.Drawing.Point(10, 10);
  313. this.lblTable.Name = "lblTable";
  314. this.lblTable.Size = new System.Drawing.Size(37, 13);
  315. this.lblTable.TabIndex = 0;
  316. this.lblTable.Text = "Стол: ";
  317. //
  318. // groupAddItem
  319. //
  320. this.groupAddItem.Controls.Add(this.btnAddDish);
  321. this.groupAddItem.Controls.Add(this.lblNotes);
  322. this.groupAddItem.Controls.Add(this.lblQuantity);
  323. this.groupAddItem.Controls.Add(this.lblDish);
  324. this.groupAddItem.Controls.Add(this.txtItemNotes);
  325. this.groupAddItem.Controls.Add(this.numQuantity);
  326. this.groupAddItem.Controls.Add(this.cmbDish);
  327. this.groupAddItem.Dock = System.Windows.Forms.DockStyle.Right;
  328. this.groupAddItem.Location = new System.Drawing.Point(697, 16);
  329. this.groupAddItem.Name = "groupAddItem";
  330. this.groupAddItem.Size = new System.Drawing.Size(400, 327);
  331. this.groupAddItem.TabIndex = 0;
  332. this.groupAddItem.TabStop = false;
  333. this.groupAddItem.Text = "Добавить блюдо";
  334. //
  335. // btnAddDish
  336. //
  337. this.btnAddDish.BackColor = System.Drawing.Color.LimeGreen;
  338. this.btnAddDish.Location = new System.Drawing.Point(20, 250);
  339. this.btnAddDish.Name = "btnAddDish";
  340. this.btnAddDish.Size = new System.Drawing.Size(120, 30);
  341. this.btnAddDish.TabIndex = 6;
  342. this.btnAddDish.Text = "Добавить в заказ";
  343. this.btnAddDish.UseVisualStyleBackColor = false;
  344. //
  345. // lblNotes
  346. //
  347. this.lblNotes.AutoSize = true;
  348. this.lblNotes.Location = new System.Drawing.Point(17, 150);
  349. this.lblNotes.Name = "lblNotes";
  350. this.lblNotes.Size = new System.Drawing.Size(73, 13);
  351. this.lblNotes.TabIndex = 5;
  352. this.lblNotes.Text = "Примечание:";
  353. //
  354. // lblQuantity
  355. //
  356. this.lblQuantity.AutoSize = true;
  357. this.lblQuantity.Location = new System.Drawing.Point(17, 90);
  358. this.lblQuantity.Name = "lblQuantity";
  359. this.lblQuantity.Size = new System.Drawing.Size(69, 13);
  360. this.lblQuantity.TabIndex = 4;
  361. this.lblQuantity.Text = "Количество:";
  362. //
  363. // lblDish
  364. //
  365. this.lblDish.AutoSize = true;
  366. this.lblDish.Location = new System.Drawing.Point(17, 30);
  367. this.lblDish.Name = "lblDish";
  368. this.lblDish.Size = new System.Drawing.Size(43, 13);
  369. this.lblDish.TabIndex = 3;
  370. this.lblDish.Text = "Блюдо:";
  371. //
  372. // txtItemNotes
  373. //
  374. this.txtItemNotes.Location = new System.Drawing.Point(20, 170);
  375. this.txtItemNotes.Multiline = true;
  376. this.txtItemNotes.Name = "txtItemNotes";
  377. this.txtItemNotes.Size = new System.Drawing.Size(360, 60);
  378. this.txtItemNotes.TabIndex = 2;
  379. //
  380. // numQuantity
  381. //
  382. this.numQuantity.Location = new System.Drawing.Point(20, 110);
  383. this.numQuantity.Minimum = new decimal(new int[] {
  384. 1,
  385. 0,
  386. 0,
  387. 0});
  388. this.numQuantity.Name = "numQuantity";
  389. this.numQuantity.Size = new System.Drawing.Size(100, 20);
  390. this.numQuantity.TabIndex = 1;
  391. this.numQuantity.Value = new decimal(new int[] {
  392. 1,
  393. 0,
  394. 0,
  395. 0});
  396. //
  397. // cmbDish
  398. //
  399. this.cmbDish.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  400. this.cmbDish.FormattingEnabled = true;
  401. this.cmbDish.Location = new System.Drawing.Point(20, 50);
  402. this.cmbDish.Name = "cmbDish";
  403. this.cmbDish.Size = new System.Drawing.Size(360, 21);
  404. this.cmbDish.TabIndex = 0;
  405. //
  406. // OrderForm
  407. //
  408. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  409. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  410. this.ClientSize = new System.Drawing.Size(1100, 700);
  411. this.Controls.Add(this.splitContainer);
  412. this.Name = "OrderForm";
  413. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  414. this.Text = "Управление заказами";
  415. this.splitContainer.Panel1.ResumeLayout(false);
  416. this.splitContainer.Panel2.ResumeLayout(false);
  417. ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
  418. this.splitContainer.ResumeLayout(false);
  419. this.groupOrders.ResumeLayout(false);
  420. ((System.ComponentModel.ISupportInitialize)(this.dgvOrders)).EndInit();
  421. this.panelOrdersTop.ResumeLayout(false);
  422. this.panelOrdersTop.PerformLayout();
  423. this.groupOrderDetails.ResumeLayout(false);
  424. ((System.ComponentModel.ISupportInitialize)(this.dgvOrderItems)).EndInit();
  425. this.panelOrderInfo.ResumeLayout(false);
  426. this.panelOrderInfo.PerformLayout();
  427. this.groupAddItem.ResumeLayout(false);
  428. this.groupAddItem.PerformLayout();
  429. ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).EndInit();
  430. this.ResumeLayout(false);
  431. }
  432. private System.Windows.Forms.SplitContainer splitContainer;
  433. private System.Windows.Forms.GroupBox groupOrders;
  434. private System.Windows.Forms.DataGridView dgvOrders;
  435. private System.Windows.Forms.Panel panelOrdersTop;
  436. private System.Windows.Forms.ComboBox cmbStatusFilter;
  437. private System.Windows.Forms.TextBox txtOrderSearch;
  438. private System.Windows.Forms.Button btnOrderSearch;
  439. private System.Windows.Forms.Button btnRefreshOrders;
  440. private System.Windows.Forms.Button btnNewOrder;
  441. private System.Windows.Forms.GroupBox groupOrderDetails;
  442. private System.Windows.Forms.DataGridView dgvOrderItems;
  443. private System.Windows.Forms.Panel panelOrderInfo;
  444. private System.Windows.Forms.Label lblTable;
  445. private System.Windows.Forms.Label lblWaiter;
  446. private System.Windows.Forms.Label lblOpenedAt;
  447. private System.Windows.Forms.Label lblClient;
  448. private System.Windows.Forms.Label lblTotal;
  449. private System.Windows.Forms.Label lblStatus;
  450. private System.Windows.Forms.Button btnCloseOrder;
  451. private System.Windows.Forms.Button btnPay;
  452. private System.Windows.Forms.Button btnRemoveItem;
  453. private System.Windows.Forms.Button btnEditItem;
  454. private System.Windows.Forms.Button btnAddItem;
  455. private System.Windows.Forms.GroupBox groupAddItem;
  456. private System.Windows.Forms.Button btnAddDish;
  457. private System.Windows.Forms.Label lblNotes;
  458. private System.Windows.Forms.Label lblQuantity;
  459. private System.Windows.Forms.Label lblDish;
  460. private System.Windows.Forms.TextBox txtItemNotes;
  461. private System.Windows.Forms.NumericUpDown numQuantity;
  462. private System.Windows.Forms.ComboBox cmbDish;
  463. }
  464. }