You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
694 B
C++
41 lines
694 B
C++
#ifndef PAYDVOUCHERSDIALOG_H
|
|
#define PAYDVOUCHERSDIALOG_H
|
|
|
|
#include <autotablemodel.h>
|
|
#include "data/voucher.h"
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class PaydVouchersDialog;
|
|
}
|
|
|
|
class PaydVouchersDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PaydVouchersDialog(QWidget *parent = 0);
|
|
~PaydVouchersDialog();
|
|
|
|
private slots:
|
|
|
|
void on_btnPrint_clicked();
|
|
|
|
void on_btnSave_clicked();
|
|
|
|
void on_btnEetNotSen_clicked(bool checked);
|
|
|
|
void on_btnSendEet_clicked();
|
|
|
|
void on_btnReports_clicked();
|
|
|
|
private:
|
|
Ui::PaydVouchersDialog *ui;
|
|
|
|
AutoTableModel<Voucher> *m_voucherModel;
|
|
AutoTableModel<VoucherItem> *m_itemModel;
|
|
};
|
|
|
|
#endif // PAYDVOUCHERSDIALOG_H
|