变更一下代码文目录名,防止qt编译中文路径出错。

This commit is contained in:
2020-07-14 11:17:31 +08:00
parent 05dacbfec4
commit fc2d04d57b
119 changed files with 41 additions and 13 deletions

View File

@@ -0,0 +1,33 @@
#include "QCarDealerAchievementWidget.h"
QCarDealerAchievementWidget::QCarDealerAchievementWidget(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
init();
}
QCarDealerAchievementWidget::~QCarDealerAchievementWidget()
{
}
void QCarDealerAchievementWidget::init()
{
initData();
initWidgets();
initSignal();
}
void QCarDealerAchievementWidget::initData()
{
}
void QCarDealerAchievementWidget::initWidgets()
{
setLayout(ui.pLayoutMain);
}
void QCarDealerAchievementWidget::initSignal()
{
}

View File

@@ -0,0 +1,22 @@
#pragma once
#include <QWidget>
#include "ui_QCarDealerAchievementWidget.h"
class QCarDealerAchievementWidget : public QWidget
{
Q_OBJECT
public:
QCarDealerAchievementWidget(QWidget *parent = Q_NULLPTR);
~QCarDealerAchievementWidget();
private:
void init();
void initData();
void initWidgets();
void initSignal();
private:
Ui::QCarDealerAchievementWidget ui;
};

View File

@@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>QCarDealerAchievementWidget</class>
<widget class="QWidget" name="QCarDealerAchievementWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>680</width>
<height>497</height>
</rect>
</property>
<property name="windowTitle">
<string>QCarDealerAchievementWidget</string>
</property>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>80</x>
<y>40</y>
<width>258</width>
<height>240</height>
</rect>
</property>
<layout class="QVBoxLayout" name="pLayoutMain">
<property name="leftMargin">
<number>5</number>
</property>
<property name="topMargin">
<number>5</number>
</property>
<property name="rightMargin">
<number>5</number>
</property>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QToolButton" name="toolButton">
<property name="text">
<string>导入</string>
</property>
<property name="icon">
<iconset>
<normalon>:/QMainFrame/Resources/excel.png</normalon>
</iconset>
</property>
<property name="iconSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QTableWidget" name="tableWidget">
<column>
<property name="text">
<string>年度</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>月份</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>车商代码</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>车商名称</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>店内双签产值(万元)</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>店内新车开票数</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>我司新车签单台次</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>人保新车签单台次</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>平安新车签单台次</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
<column>
<property name="text">
<string>其他保险公司新车签单台次</string>
</property>
<property name="textAlignment">
<set>AlignCenter</set>
</property>
</column>
</widget>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="../../../resource.qrc"/>
</resources>
<connections/>
</ui>

View File

@@ -0,0 +1,33 @@
#include "QCarDealerSchemaWidget.h"
QCarDealerSchemaWidget::QCarDealerSchemaWidget(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
init();
}
QCarDealerSchemaWidget::~QCarDealerSchemaWidget()
{
}
void QCarDealerSchemaWidget::init()
{
initData();
initWidgets();
initSignal();
}
void QCarDealerSchemaWidget::initData()
{
}
void QCarDealerSchemaWidget::initWidgets()
{
}
void QCarDealerSchemaWidget::initSignal()
{
}

View File

@@ -0,0 +1,22 @@
#pragma once
#include <QWidget>
#include "ui_QCarDealerSchemaWidget.h"
class QCarDealerSchemaWidget : public QWidget
{
Q_OBJECT
public:
QCarDealerSchemaWidget(QWidget *parent = Q_NULLPTR);
~QCarDealerSchemaWidget();
private:
void init();
void initData();
void initWidgets();
void initSignal();
private:
Ui::QCarDealerSchemaWidget ui;
};

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>QCarDealerSchemaWidget</class>
<widget class="QWidget" name="QCarDealerSchemaWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>725</width>
<height>508</height>
</rect>
</property>
<property name="windowTitle">
<string>QCarDealerSchemaWidget</string>
</property>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>

View File

@@ -0,0 +1,33 @@
#include "QDataManagementWidget.h"
QDataManagementWidget::QDataManagementWidget( QWidget * parent )
: QWidget( parent )
{
ui.setupUi( this );
init();
}
QDataManagementWidget::~QDataManagementWidget()
{
}
void QDataManagementWidget::init()
{
initData();
initWidgets();
initSignal();
}
void QDataManagementWidget::initData()
{
}
void QDataManagementWidget::initWidgets()
{
setLayout( ui.pLayoutMain );
}
void QDataManagementWidget::initSignal()
{
}

View File

@@ -0,0 +1,22 @@
#pragma once
#include <QWidget>
#include "ui_QDataManagementWidget.h"
class QDataManagementWidget : public QWidget
{
Q_OBJECT
public:
QDataManagementWidget(QWidget *parent = Q_NULLPTR);
~QDataManagementWidget();
private:
void init();
void initData();
void initWidgets();
void initSignal();
private:
Ui::QDataManagementWidget ui;
};

View File

@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>QDataManagementWidget</class>
<widget class="QWidget" name="QDataManagementWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>759</width>
<height>487</height>
</rect>
</property>
<property name="windowTitle">
<string>QDataManagementWidget</string>
</property>
<widget class="QWidget" name="gridLayoutWidget">
<property name="geometry">
<rect>
<x>30</x>
<y>20</y>
<width>681</width>
<height>431</height>
</rect>
</property>
<layout class="QGridLayout" name="pLayoutMain">
<property name="leftMargin">
<number>5</number>
</property>
<property name="topMargin">
<number>5</number>
</property>
<property name="rightMargin">
<number>5</number>
</property>
<item row="0" column="0">
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="tab">
<attribute name="title">
<string>车商业绩表</string>
</attribute>
</widget>
<widget class="QWidget" name="tab_2">
<attribute name="title">
<string>车商方案表</string>
</attribute>
</widget>
<widget class="QWidget" name="tab_3">
<attribute name="title">
<string>送返修工单</string>
</attribute>
</widget>
<widget class="QWidget" name="tab_4">
<attribute name="title">
<string>新送返修监控报表</string>
</attribute>
</widget>
<widget class="QWidget" name="tab_5">
<attribute name="title">
<string>送返修推荐表</string>
</attribute>
</widget>
</widget>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>

View File

@@ -0,0 +1,11 @@
#include "QRepairOrderWidget.h"
QRepairOrderWidget::QRepairOrderWidget(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
}
QRepairOrderWidget::~QRepairOrderWidget()
{
}

View File

@@ -0,0 +1,16 @@
#pragma once
#include <QWidget>
#include "ui_QRepairOrderWidget.h"
class QRepairOrderWidget : public QWidget
{
Q_OBJECT
public:
QRepairOrderWidget(QWidget *parent = Q_NULLPTR);
~QRepairOrderWidget();
private:
Ui::QRepairOrderWidget ui;
};

View File

@@ -0,0 +1,23 @@
<UI version="4.0" >
<class>QRepairOrderWidget</class>
<widget class="QWidget" name="QRepairOrderWidget" >
<property name="objectName" >
<string notr="true">QRepairOrderWidget</string>
</property>
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle" >
<string>QRepairOrderWidget</string>
</property>
</widget>
<layoutDefault spacing="6" margin="11" />
<pixmapfunction></pixmapfunction>
<resources/>
<connections/>
</UI>

View File

@@ -0,0 +1,92 @@
#include <iostream>
#include "QLoginDialog.h"
#include "../../system/system_util.h"
#include "../../data/Datastructure/UserInfo/UserInfo.h"
#include "../../data/query/query_user.h"
#include "../../data/AppParameters/AppParameters.h"
#include <QMessageBox>
using namespace std;
QLoginDialog::QLoginDialog( QWidget * parent )
: QDialog( parent )
{
ui.setupUi( this );
init();
}
QLoginDialog::~QLoginDialog()
{
}
void QLoginDialog::init()
{
initData();
initWidgets();
initSignal();
}
void QLoginDialog::initData()
{
returnCode = EXIT;
systemUserName = QString::fromStdWString( getUserName() );
}
void QLoginDialog::initSignal()
{
connect( ui.pButtonOK, SIGNAL( clicked() ), this, SLOT( onOK() ));
connect( ui.pButtonExit, SIGNAL( clicked() ), this, SLOT( onExit() ));
}
void QLoginDialog::initWidgets()
{
setLayout( ui.pLayoutMain );
ui.pEditSystemUserName->setText( systemUserName );
try
{
queryStaffInfo( systemUserName );
}
catch ( runtime_error & error )
{
//如果出现异常,就不让用户继续登录
QMessageBox::critical( nullptr,
"错误,请联系管理员!",
QString::fromLocal8Bit( error.what() ) );
ui.pButtonOK->setEnabled( false );
}
}
void QLoginDialog::onOK()
{
returnCode = OK;
this->close();
}
void QLoginDialog::onExit()
{
returnCode = EXIT;
this->close();
}
void QLoginDialog::queryStaffInfo( const QString & systemUserName )
{
string userName = "car_dealer";
string password = "cpic123456";
string tnsName = "xmcx1";
string staffP13 = systemUserName.toLocal8Bit();
UserInfo && info = queryUserInfo( userName,
password,
tnsName,
staffP13 );
pStaffInfo = new UserInfo( info );
}

View File

@@ -0,0 +1,39 @@
#pragma once
#include <QDialog>
#include "ui_QLoginDialog.h"
class QLoginDialog : public QDialog
{
Q_OBJECT
public:
QLoginDialog(QWidget *parent = Q_NULLPTR);
~QLoginDialog();
typedef enum { OK, EXIT } ReturnCode;
ReturnCode getReturnCode() const
{
return returnCode;
}
protected Q_SLOTS:
void init();
void initData();
void initSignal();
void initWidgets();
void onOK();
void onExit();
private:
void queryStaffInfo( const QString & systemUserName );
private:
Ui::QLoginDialog ui;
ReturnCode returnCode;
QString systemUserName;
QString cpicUserName;
QString cpicP13;
};

View File

@@ -0,0 +1,286 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>QLoginDialog</class>
<widget class="QDialog" name="QLoginDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>350</width>
<height>160</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>350</width>
<height>160</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>350</width>
<height>160</height>
</size>
</property>
<property name="windowTitle">
<string>猜猜你是谁~~~~</string>
</property>
<property name="windowIcon">
<iconset>
<normalon>:/QMainFrame/Resources/CPIC透明.png</normalon>
</iconset>
</property>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>349</width>
<height>158</height>
</rect>
</property>
<layout class="QVBoxLayout" name="pLayoutMain">
<property name="leftMargin">
<number>5</number>
</property>
<property name="topMargin">
<number>5</number>
</property>
<property name="rightMargin">
<number>5</number>
</property>
<property name="bottomMargin">
<number>5</number>
</property>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resource.qrc">:/QMainFrame/Resources/cat.png</pixmap>
</property>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>人员信息:</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="label_2">
<property name="minimumSize">
<size>
<width>85</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>85</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>系统用户名:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="pEditSystemUserName">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">border: 1px solid silver;</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_3">
<property name="minimumSize">
<size>
<width>85</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>85</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>人员名称:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="pEditUserName">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">border: 1px solid silver;</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_4">
<property name="minimumSize">
<size>
<width>85</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>85</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>岗位:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="pEditStaffPost">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">border: 1px solid silver;</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QToolButton" name="pButtonExit">
<property name="text">
<string>退出</string>
</property>
<property name="icon">
<iconset>
<normalon>:/QMainFrame/Resources/quit.png</normalon>
</iconset>
</property>
<property name="iconSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="pButtonOK">
<property name="text">
<string>确认</string>
</property>
<property name="icon">
<iconset>
<normalon>:/QMainFrame/Resources/ok.png</normalon>
</iconset>
</property>
<property name="iconSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="../../resource.qrc"/>
</resources>
<connections/>
</ui>

View File

@@ -0,0 +1,34 @@

#include "QMainFrame.h"
QMainFrame::QMainFrame(QWidget* parent)
: QMainWindow(parent)
{
ui.setupUi(this);
init();
}
void QMainFrame::init()
{
initData();
initWidgets();
initSignal();
}
void QMainFrame::initData()
{
pStackedWidget = new QStackedWidget(this);
pWidgetDataManagement = new QDataManagementWidget(pStackedWidget);
}
void QMainFrame::initWidgets()
{
pStackedWidget->addWidget(pWidgetDataManagement);
setCentralWidget(pStackedWidget);
}
void QMainFrame::initSignal()
{
}

View File

@@ -0,0 +1,25 @@
#pragma once
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QStackedWidget>
#include "QDataManagementWidget.h"
#include "ui_QMainFrame.h"
class QMainFrame : public QMainWindow
{
Q_OBJECT
public:
QMainFrame( QWidget * parent = Q_NULLPTR );
private:
void init();
void initData();
void initWidgets();
void initSignal();
private:
Ui::QMainFrameClass ui;
QStackedWidget * pStackedWidget;
QDataManagementWidget * pWidgetDataManagement;
};

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>QMainFrameClass</class>
<widget class="QMainWindow" name="QMainFrameClass">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>796</width>
<height>558</height>
</rect>
</property>
<property name="windowTitle">
<string>QMainFrame</string>
</property>
<widget class="QWidget" name="centralWidget"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>796</width>
<height>23</height>
</rect>
</property>
<widget class="QMenu" name="menu">
<property name="title">
<string>系统</string>
</property>
<addaction name="pActionExit"/>
</widget>
<widget class="QMenu" name="menu_2">
<property name="title">
<string>帮助</string>
</property>
<addaction name="pActionAbout"/>
</widget>
<addaction name="menu"/>
<addaction name="menu_2"/>
</widget>
<widget class="QToolBar" name="mainToolBar">
<property name="iconSize">
<size>
<width>36</width>
<height>36</height>
</size>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="pActionDataManagement"/>
<addaction name="pActionParamentersManagement"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="pActionExit">
<property name="icon">
<iconset resource="../../resource.qrc">
<normaloff>:/QMainFrame/Resources/quit.png</normaloff>:/QMainFrame/Resources/quit.png</iconset>
</property>
<property name="text">
<string>退出</string>
</property>
</action>
<action name="pActionAbout">
<property name="icon">
<iconset resource="../../resource.qrc">
<normaloff>:/QMainFrame/Resources/cat.png</normaloff>:/QMainFrame/Resources/cat.png</iconset>
</property>
<property name="text">
<string>关于</string>
</property>
</action>
<action name="pActionDataManagement">
<property name="icon">
<iconset resource="../../resource.qrc">
<normaloff>:/QMainFrame/Resources/excel.png</normaloff>:/QMainFrame/Resources/excel.png</iconset>
</property>
<property name="text">
<string>数据管理</string>
</property>
</action>
<action name="pActionParamentersManagement">
<property name="icon">
<iconset resource="../../resource.qrc">
<normaloff>:/QMainFrame/Resources/option.png</normaloff>:/QMainFrame/Resources/option.png</iconset>
</property>
<property name="text">
<string>参数管理</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="../../resource.qrc"/>
</resources>
<connections/>
</ui>