-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddorders.h
More file actions
46 lines (33 loc) · 875 Bytes
/
addorders.h
File metadata and controls
46 lines (33 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef ADDORDERS_H
#define ADDORDERS_H
#include <QMainWindow>
#include <QTableView>
#include <QStandardItemModel>
#include <QStandardItem>
#include <checkdiscount.h>
#include <registercustomer.h>
namespace Ui {
class AddOrders;
}
class AddOrders : public QMainWindow
{
Q_OBJECT
public:
explicit AddOrders(QWidget *parent = nullptr);
~AddOrders();
private slots:
void on_check_discount_btn_clicked();
void on_ADD_Row_clicked();
void on_Del_Row_clicked();
void on_customer_id_textChanged(const QString &arg1);
void on_product_id_textChanged(const QString &arg1);
void on_add_orders_btn_clicked();
void on_addCustomer_btn_clicked();
private:
Ui::AddOrders *ui;
QTableView *tableView;
QStandardItemModel *model;
CheckDiscount *checkdiscount;
RegisterCustomer * Register_Customer;
};
#endif // ADDORDERS_H