模具进度主要用来展示不同的模具类别加工进度,表格的形式展示,显示内容包括模具编号、版本号、类型、状态、产品名称、计划交期、当前进度,其中进度条采用自定义控件三态进度条,有三种状态显示进度;右侧有两个小模块分别是模具状态统计、加工中模具数量,其中模具状态统计分别显示正常交付比例、加工中比例、延期比例;加工中模具数量采用自定义控件仪表盘显示数量值。
由于之前就编写过接近200个自定义控件,所以对自定义控件这块非常熟悉,在整个大屏系统中好多控件直接利用现成的,部分需求直接改改换个代码就能用,不得不感谢Qt在这方面封装的特别好。
子模块表名对应表:
子模块标题 | 子模块表名 |
---|---|
模具进度 | t_4_1_mold_progress |
模具状态统计 | t_4_2_mold_status_parcent |
加工中模具数量 | t_4_3_mold_processing_num |
表名:t_3_2_oee
字段名 | 中文名 | 类型 | 长度 | 说明 |
---|---|---|---|---|
internal_id | 序号 | INTEGER | 11 | 主键自增 |
mold_no | 模具编号 | VARCHAR | 11 | |
tn_no | 版本号 | VARCHAR | 11 | |
type | 类型 | VARCHAR | 255 | |
status | 状态 | VARCHAR | 255 | |
product_name | 产品名称 | VARCHAR | 255 | |
plan_date | 计划交期 | VARCHAR | 255 | |
green | 当前进度绿色 | INTEGER | 11 | |
yellow | 当前进度黄色 | INTEGER | 11 | |
red | 当前进度红色 | INTEGER | 11 |
默认数据:
internal_id | mold_no | tn_no | type | status | product_name | plan_date | green | yellow | red |
---|---|---|---|---|---|---|---|---|---|
1 | IK19001 | T0 | 新模 | 加工中 | 后盖 | 2019/3/29 | 60 | 20 | 20 |
2 | IK19002 | T1 | 修模 | 加工中 | 前盖 | 2019/4/3 | 50 | 50 | 0 |
3 | IK29003 | T2 | 修模 | 加工中 | 外壳 | 2019/4/8 | 30 | 70 | 0 |
4 | IK19004 | T0 | 新模 | 加工中 | 侧边 | 2019/4/18 | 90 | 5 | 5 |
5 | IK19005 | T3 | 修模 | 加工中 | 边框 | 2019/4/3 | 60 | 40 | 0 |
6 | IK19006 | T0 | 新模 | 加工中 | 后盖 | 2019/4/26 | 70 | 25 | 5 |
7 | IK19007 | T0 | 新模 | 加工中 | 面板 | 2019/4/7 | 25 | 25 | 50 |
8 | IK19008 | T0 | 新模 | 加工中 | 插件 | 2019/3/31 | 20 | 40 | 40 |
9 | IK19009 | T1 | 修模 | 加工中 | 面板 | 2019/3/12 | 10 | 60 | 30 |
10 | IK19010 | T2 | 修模 | 加工中 | 后盖 | 2019/2/12 | 0 | 100 | 0 |
表名:t_4_2_mold_status_parcent
字段名 | 中文名 | 类型 | 长度 | 说明 |
---|---|---|---|---|
internal_id | 序号 | INTEGER | 11 | 主键自增 |
finished | 正常交付百分比 | INTEGER | 11 | 不为空 |
processing | 加工中百分比 | INTEGER | 11 | 不为空 |
delay | 延期百分比 | INTEGER | 11 | 不为空 |
默认数据:1 60 25 15
表名:t_4_3_mold_processing_num
字段名 | 中文名 | 类型 | 长度 | 说明 |
---|---|---|---|---|
internal_id | 序号 | INTEGER | 11 | 主键自增 |
mold_processing_number | 加工中数量 | INTEGER | 11 | 不为空 |
默认数据:87
#include "frmmodule4.h"
#include "ui_frmmodule4.h"
#include "quihelper.h"
#include "progressthree.h"
frmModule4::frmModule4(QWidget *parent) : QWidget(parent), ui(new Ui::frmModule4)
{
ui->setupUi(this);
this->initForm();
this->initPie();
this->initGauge();
this->initTable();
}
frmModule4::~frmModule4()
{
delete ui;
}
void frmModule4::initForm()
{
//设置对应的属性应用特定样式
ui->labTitle1->setProperty("flag", "title");
ui->labTitle2->setProperty("flag", "title");
ui->labTitle3->setProperty("flag", "title");
ui->widgetSub1->setProperty("flag", "sub");
ui->widgetSub2->setProperty("flag", "sub");
ui->widgetSub3->setProperty("flag", "sub");
#ifdef qchart
pie = new CustomChart;
#else
pie = new CustomPie;
#endif
pie->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
ui->widgetSub1->layout()->addWidget(pie);
//定时器模拟数据
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(loadPie()));
connect(timer, SIGNAL(timeout()), this, SLOT(loadGauge()));
connect(timer, SIGNAL(timeout()), this, SLOT(loadTable()));
//绑定信号槽处理接收的数据+发送执查询语句
connect(DbData::DbLocal, SIGNAL(receiveData(QString, QStringList, int)),
this, SLOT(receiveData(QString, QStringList, int)));
connect(DbData::DbHttp, SIGNAL(receiveData(QString, QStringList, int)),
this, SLOT(receiveData(QString, QStringList, int)));
}
void frmModule4::receiveData(const QString &tag, const QStringList &data, int mesc)
{
int count = data.count();
if (tag == "t_4_2_mold_status_parcent") {
if (count == 3) {
int value1 = data.at(0).toDouble();
int value2 = data.at(1).toDouble();
int value3 = data.at(2).toDouble();
loadPie(value1, value2, value3);
}
} else if (tag == "t_4_3_mold_processing_num") {
if (count == 1) {
int value1 = data.at(0).toDouble();
loadGauge(value1);
}
} else if (tag == "t_4_1_mold_progress") {
if (count % 10 == 0) {
lstringl values;
ui->tableWidget->setRowCount(count / 10);
for (int i = 0; i < count; i = i + 10) {
QStringList value;
value << data.at(i);
value << data.at(i + 1);
value << data.at(i + 2);
value << data.at(i + 3);
value << data.at(i + 4);
value << data.at(i + 5);
value << data.at(i + 6);
int green = data.at(i + 7).toInt();
int yellow = data.at(i + 8).toInt();
int red = data.at(i + 9).toInt();
value << QString("%1|%2|%3").arg(green).arg(yellow).arg(red);
values << value;
}
loadTable(values);
}
}
}
void frmModule4::initPie()
{
lcolor colors;
colors << QColor(0, 176, 80) << QColor(65, 176, 255) << QColor(255, 192, 0) << QColor(255, 0, 0);
pie->setColors(colors);
pie->setDefaultColor(false);
pie->initPie();
}
void frmModule4::loadPie()
{
QString tableName = "t_4_2_mold_status_parcent";
QString columnName = "finished,processing,delay";
if (AppConfig::WorkMode == "timer") {
int value1 = QUIHelper::getRandValue(30, 60);
int value2 = QUIHelper::getRandValue(30, 60);
int value3 = QUIHelper::getRandValue(30, 60);
loadPie(value1, value2, value3);
} else if (AppConfig::WorkMode == "db") {
DbData::DbLocal->select(tableName, columnName, true);
} else if (AppConfig::WorkMode == "http") {
DbData::DbHttp->select(tableName, columnName, true);
}
}
void frmModule4::loadPie(int value1, int value2, int value3)
{
pie->clearPie();
pie->appendPie("正常交付", value1);
pie->appendPie("加工中", value2);
pie->appendPie("延期", value3);
pie->loadPercent();
}
void frmModule4::initGauge()
{
ui->gaugeSpeed->setUnit("");
ui->gaugeSpeed->setText("模具数");
ui->gaugeSpeed->setPrecision(0);
ui->gaugeSpeed->setRange(0, 100);
}
void frmModule4::loadGauge()
{
QString tableName = "t_4_3_mold_processing_num";
QString columnName = "mold_processing_number";
if (AppConfig::WorkMode == "timer") {
loadGauge(QUIHelper::getRandValue(30, 100));
} else if (AppConfig::WorkMode == "db") {
DbData::DbLocal->select(tableName, columnName, true);
} else if (AppConfig::WorkMode == "http") {
DbData::DbHttp->select(tableName, columnName, true);
}
}
void frmModule4::loadGauge(int value)
{
//最大值=值往上取百整数
int max = (value / 100 + 1) * 100;
ui->gaugeSpeed->setDigitCount(QString::number(max).length());
ui->gaugeSpeed->setRange(0, max);
ui->gaugeSpeed->setValue(value);
}
void frmModule4::initTable()
{
QStringList headText;
headText << "序号" << "模具编号" << "版本号" << "类型" << "状态" << "产品名称" << "计划交期" << "当前进度";
int columnCount = headText.count();
ui->tableWidget->setColumnCount(columnCount);
ui->tableWidget->setHorizontalHeaderLabels(headText);
ui->tableWidget->horizontalHeader()->setMinimumHeight(AppConfig::HeadHeight);
ui->tableWidget->verticalHeader()->setDefaultSectionSize(AppConfig::RowHeight);
QList widths;
widths << 50 << 80 << 60 << 70 << 70 << 80 << 130 << 80;
for (int i = 0; i < columnCount; i++) {
ui->tableWidget->setColumnWidth(i, widths.at(i));
}
ui->tableWidget->setFocusPolicy(Qt::NoFocus);
ui->tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows);
ui->tableWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);
ui->tableWidget->setSelectionMode(QAbstractItemView::SingleSelection);
ui->tableWidget->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
ui->tableWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
//ui->tableWidget->setAlternatingRowColors(true);
ui->tableWidget->verticalHeader()->setVisible(false);
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
ui->tableWidget->horizontalHeader()->setHighlightSections(false);
}
void frmModule4::loadTable()
{
QString tableName = "t_4_1_mold_progress";
QString columnName = "internal_id,mold_no,tn_no,type,status,product_name,plan_date,green,yellow,red";
if (AppConfig::WorkMode == "timer") {
lstringl values;
int rowCount = 21;
ui->tableWidget->setRowCount(rowCount);
for (int i = 0; i < rowCount; i++) {
QStringList value;
value << QString::number(i + 1);
value << QString("FK%1").arg(i + 1);
value << QString("V%1").arg(i + 1);
value << (QUIHelper::getRandValue(1, 3) == 1 ? "修模" : "新模");
value << QString("加工中");
value << (QUIHelper::getRandValue(1, 3) == 1 ? "后盖" : "面板");
value << QString("2019-04-%1").arg(i + 10);
QStringList list;
for (int i = 0; i < 3; ++i) {
list << QString::number(QUIHelper::getRandValue(10, 50));
}
value << list.join("|");
values << value;
}
loadTable(values);
} else if (AppConfig::WorkMode == "db") {
DbData::DbLocal->select(tableName, columnName, true);
} else if (AppConfig::WorkMode == "http") {
DbData::DbHttp->select(tableName, columnName, true);
}
}
void frmModule4::loadTable(const lstringl &values)
{
int rowCount = values.count();
for (int i = 0; i < rowCount; i++) {
QStringList value = values.at(i);
int columnCount = value.count();
for (int j = 0; j < columnCount; j++) {
//末尾数据为进度条
if (j == columnCount - 1) {
QString data = value.at(j);
QStringList list = data.split("|");
if (list.count() != 3) {
continue;
}
//自定义多态进度条
ProgressThree *progress = new ProgressThree;
progress->setValue1(list.at(0).toInt());
progress->setValue2(list.at(1).toInt());
progress->setValue3(list.at(2).toInt());
progress->setFixedHeight(15);
//增加widget+布局巧妙实现居中
QWidget *widget = new QWidget;
QHBoxLayout *layout = new QHBoxLayout;
layout->setSpacing(0);
layout->setContentsMargins(0, 0, 0, 0);
layout->addWidget(progress);
widget->setLayout(layout);
ui->tableWidget->setCellWidget(i, j, widget);
} else {
QTableWidgetItem *item = new QTableWidgetItem(value.at(j));
item->setTextAlignment(Qt::AlignCenter);
ui->tableWidget->setItem(i, j, item);
}
}
}
}
void frmModule4::start(int interval)
{
this->loadGauge();
this->loadPie();
this->loadTable();
//如果间隔太短表示不需要刷新,执行一次即可
if (interval > 2000) {
timer->start(interval);
}
}
void frmModule4::stop()
{
if (timer->isActive()) {
timer->stop();
}
}