-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtabtechreports.cpp
144 lines (113 loc) · 5.03 KB
/
tabtechreports.cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include "tabtechreports.h"
#include "ui_tabtechreports.h"
#include "tabprintdialog.h"
tabTechReports* tabTechReports::p_instance = nullptr;
tabTechReports *tabTechReports::getInstance(MainWindow *parent)
{
if( !p_instance )
p_instance = new tabTechReports(parent);
return p_instance;
}
tabTechReports::tabTechReports(MainWindow *parent) :
tabCommon(parent),
ui(new Ui::tabTechReports)
{
logUserActivity();
ui->setupUi(this);
ui->comboBoxCompany->setModel(companiesModel);
this->setAttribute(Qt::WA_DeleteOnClose);
tableUpdateDelay = new QTimer(this);
connect(tableUpdateDelay, &QTimer::timeout, this, &tabTechReports::buttonRefreshClicked);
tableUpdateDelay->setSingleShot(true);
m_tableModel = new STableTechReportsModel(this);
ui->tableView->setModel(m_tableModel);
ui->tableView->setQuery(QUERY_SEL_TECH_REPORTS_STATIC, QSqlDatabase::database("connMain"));
ui->tableView->setUniqueIdColumn(STableTechReportsModel::Columns::Id);
connect(ui->pushButtonRefresh, &QPushButton::clicked, this, &tabTechReports::buttonRefreshClicked);
connect(ui->pushButtonPrint, &QPushButton::clicked, this, &tabTechReports::buttonPrintClicked);
connect(ui->lineEditSearch, &QLineEdit::textChanged, this, &tabTechReports::lineEditSearchTextChanged);
ui->widgetPeriodSelector->setMovingInterval(SPeriodSelector::Year);
ui->widgetPeriodSelector->setDefaultPeriod();
connect(ui->widgetPeriodSelector, &SPeriodSelector::refreshButtonClicked, this, &tabTechReports::buttonRefreshClicked);
refreshTable();
}
tabTechReports::~tabTechReports()
{
delete ui;
p_instance = nullptr;
}
QString tabTechReports::tabTitle()
{
return tr("Акты тех. состояния");
}
QList<STechReportModel *> tabTechReports::reportsListFromSelection()
{
QList<STechReportModel*> list;
QList<int> *idsList = ui->tableView->selectedReportsList();
STechReportModel *report;
for(int i = 0; i < idsList->count(); i++)
{
report = new STechReportModel();
report->load(idsList->at(i));
list.append(report);
}
delete idsList;
return list;
}
void tabTechReports::buttonRefreshClicked()
{
refreshTable(STableViewBase::ScrollPosReset, STableViewBase::SelectionReset);
}
void tabTechReports::lineEditSearchTextChanged(QString)
{
ui->tableView->clearSelection();
ui->tableView->resetVScrollPos();
constructQueryClause();
ui->tableView->delayedRefresh(350);
}
void tabTechReports::constructQueryClause()
{
FilterList list;
list.op = FilterList::And;
list.fields.append(STableViewBase::initFilterField("`company`", FilterField::Equals, companiesModel->databaseIDByRow(ui->comboBoxCompany->currentIndex())));
if(!ui->lineEditSearch->text().isEmpty())
{
FilterList search;
search.op = FilterList::Or;
FilterField::Op matchFlag;
if(userDbData->useRegExpSearch)
matchFlag = FilterField::RegExp;
else
matchFlag = FilterField::Contains;
search.fields.append(STableViewBase::initFilterField("t1.`num`", matchFlag, ui->lineEditSearch->text()));
search.fields.append(STableViewBase::initFilterField("t1.`device`", matchFlag, ui->lineEditSearch->text(), Qt::CaseInsensitive));
search.fields.append(STableViewBase::initFilterField("t1.`inventory_number`", matchFlag, ui->lineEditSearch->text(), Qt::CaseInsensitive));
search.fields.append(STableViewBase::initFilterField("t1.`serial_number`", matchFlag, ui->lineEditSearch->text(), Qt::CaseInsensitive));
search.fields.append(STableViewBase::initFilterField("CONCAT_WS(' ', t2.`short_name`, t2.`ur_name`)", matchFlag, ui->lineEditSearch->text(), Qt::CaseInsensitive));
search.fields.append(STableViewBase::initFilterField("CONCAT_WS(' ', t2.`surname`, t2.`name`, t2.`patronymic`)", matchFlag, ui->lineEditSearch->text(), Qt::CaseInsensitive));
list.childs.append(search);
}
FilterList period;
period.op = FilterList::And;
period.fields.append(STableViewBase::initFilterField("t1.`created`", FilterField::MoreEq, ui->widgetPeriodSelector->periodBegin()));
period.fields.append(STableViewBase::initFilterField("t1.`created`", FilterField::Less, ui->widgetPeriodSelector->periodEnd()));
list.childs.append(period);
query_group.clear();
ui->tableView->setFilter(list);
ui->tableView->setGrouping(query_group);
}
void tabTechReports::refreshTable(bool preserveScrollPos, bool preserveSelection)
{
constructQueryClause();
ui->tableView->refresh(preserveScrollPos, preserveSelection);
// if(!preserveSelection) // при обновлении модели сигнал QItemSelectionModel::selectionChanged не генерируется
// updateWidgets();
}
void tabTechReports::buttonPrintClicked()
{
QList<STechReportModel*> list = reportsListFromSelection();
tabPrintDialog::printTechReports(list, true);
// tabPrintDialog *tab = tabPrintDialog::create(Global::Reports::tech_report);
// tab->addDataModel(m_tableModel);
// tab->startRender();
}