2024-04-25 14:37:38 +08:00
|
|
|
#ifndef SYSTEMCORRECTIONFORM_H
|
|
|
|
|
#define SYSTEMCORRECTIONFORM_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
2024-05-09 16:33:57 +08:00
|
|
|
class QLabel;
|
|
|
|
|
|
2024-04-25 14:37:38 +08:00
|
|
|
class SystemCorrectionForm : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit SystemCorrectionForm(QWidget* aParent = nullptr);
|
|
|
|
|
~SystemCorrectionForm();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void init();
|
2024-05-09 16:33:57 +08:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void updateEmptyScanDate();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QLabel* mCurrentEmptyScanDate;
|
|
|
|
|
QLabel* mExpirationEmptyScanDate;
|
2024-04-25 14:37:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // SYSTEMCORRECTIONFORM_H
|