wumu
2024-04-23 191d62844bc548707e8a310af615f594b576ca29
0423
8个文件已修改
3个文件已添加
543 ■■■■■ 已修改文件
internal_system_v1/clientmainwindow.cpp 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/clientmainwindow.h 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/clientmainwindow.ui 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/converinfo2.cpp 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/converinfo2.h 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/converinfo2.ui 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/internal_system_v1.pro 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/problemrectstandingbook.ui 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/threemergeproblemlist.cpp 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/threemergeproblemlist.h 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/threemergeproblemlist.ui 459 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
internal_system_v1/clientmainwindow.cpp
@@ -124,6 +124,10 @@
    ui->tableWidget->setItemDelegateForColumn(1,m_tableItemDelegate);
    ui->tableWidget->setItemDelegateForColumn(2,m_tableItemDelegate);
    // 3和1
    m_threeMPList = new ThreeMergeProblemList(this);
    ui->tabWidget->addTab(m_threeMPList,"三合一问题处理");
    // 默认调用一下下拉框的触发操作
    on_comboBox_currentIndexChanged("企业(不含金融企业)");
internal_system_v1/clientmainwindow.h
@@ -21,6 +21,7 @@
#include "problemrectificationresult.h"
#include "tableitemdelegate.h"
#include <QItemDelegate>
#include "threemergeproblemlist.h"
namespace Ui {
class ClientMainWindow;
@@ -115,6 +116,9 @@
    TableItemDelegate *m_tableItemDelegate;
    QItemDelegate *m_editDelegate; // 可编辑
    // 3合一
    ThreeMergeProblemList *m_threeMPList;
};
#endif // CLIENTMAINWINDOW_H
internal_system_v1/clientmainwindow.ui
@@ -18,7 +18,7 @@
    <item row="0" column="0">
     <widget class="QTabWidget" name="tabWidget">
      <property name="currentIndex">
       <number>2</number>
       <number>0</number>
      </property>
      <widget class="QWidget" name="tab">
       <attribute name="title">
internal_system_v1/converinfo2.cpp
@@ -994,3 +994,8 @@
        }
    }
}
void ConverInfo2::on_pushButton_laodFile_clicked()
{
}
internal_system_v1/converinfo2.h
@@ -30,6 +30,8 @@
    void on_pushButton_commit_clicked();
    void on_pushButton_laodFile_clicked();
private:
    Ui::ConverInfo2 *ui;
    QMenu *m_menu;
internal_system_v1/converinfo2.ui
@@ -39,7 +39,7 @@
       <property name="geometry">
        <rect>
         <x>-115</x>
         <y>-637</y>
         <y>0</y>
         <width>1100</width>
         <height>1600</height>
        </rect>
@@ -3463,6 +3463,19 @@
         <string>修改后更新提交</string>
        </property>
       </widget>
       <widget class="QPushButton" name="pushButton_laodFile">
        <property name="geometry">
         <rect>
          <x>860</x>
          <y>50</y>
          <width>121</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>手动加载</string>
        </property>
       </widget>
       <zorder>label_70</zorder>
       <zorder>label_webSite</zorder>
       <zorder>label_townCode</zorder>
@@ -3656,6 +3669,7 @@
       <zorder>lineEdit_fillingDateTime</zorder>
       <zorder>label_129</zorder>
       <zorder>pushButton_commit</zorder>
       <zorder>pushButton_laodFile</zorder>
      </widget>
     </widget>
    </item>
internal_system_v1/internal_system_v1.pro
@@ -40,7 +40,8 @@
    converinfo2.cpp \
    problemlist.cpp \
    problemrectificationresult.cpp \
    tableitemdelegate.cpp
    tableitemdelegate.cpp \
    threemergeproblemlist.cpp
HEADERS += \
        clientmainwindow.h \
@@ -59,7 +60,8 @@
    struct_data.h \
    problemlist.h \
    problemrectificationresult.h \
    tableitemdelegate.h
    tableitemdelegate.h \
    threemergeproblemlist.h
FORMS += \
        clientmainwindow.ui \
@@ -76,7 +78,8 @@
    problemrectstandingbook.ui \
    converinfo2.ui \
    problemlist.ui \
    problemrectificationresult.ui
    problemrectificationresult.ui \
    threemergeproblemlist.ui
include(QXlsx/QXlsx.pri)
internal_system_v1/problemrectstandingbook.ui
@@ -6,8 +6,8 @@
   <rect>
    <x>0</x>
    <y>0</y>
    <width>1091</width>
    <height>657</height>
    <width>1097</width>
    <height>695</height>
   </rect>
  </property>
  <property name="windowTitle">
@@ -583,7 +583,7 @@
    <rect>
     <x>0</x>
     <y>0</y>
     <width>1091</width>
     <width>1097</width>
     <height>26</height>
    </rect>
   </property>
internal_system_v1/threemergeproblemlist.cpp
New file
@@ -0,0 +1,14 @@
#include "threemergeproblemlist.h"
#include "ui_threemergeproblemlist.h"
ThreeMergeProblemList::ThreeMergeProblemList(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::ThreeMergeProblemList)
{
    ui->setupUi(this);
}
ThreeMergeProblemList::~ThreeMergeProblemList()
{
    delete ui;
}
internal_system_v1/threemergeproblemlist.h
New file
@@ -0,0 +1,22 @@
#ifndef THREEMERGEPROBLEMLIST_H
#define THREEMERGEPROBLEMLIST_H
#include <QMainWindow>
namespace Ui {
class ThreeMergeProblemList;
}
class ThreeMergeProblemList : public QMainWindow
{
    Q_OBJECT
public:
    explicit ThreeMergeProblemList(QWidget *parent = 0);
    ~ThreeMergeProblemList();
private:
    Ui::ThreeMergeProblemList *ui;
};
#endif // THREEMERGEPROBLEMLIST_H
internal_system_v1/threemergeproblemlist.ui
New file
@@ -0,0 +1,459 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>ThreeMergeProblemList</class>
 <widget class="QMainWindow" name="ThreeMergeProblemList">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>1181</width>
    <height>1019</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>MainWindow</string>
  </property>
  <widget class="QWidget" name="centralwidget">
   <layout class="QGridLayout" name="gridLayout">
    <item row="0" column="0">
     <widget class="QScrollArea" name="scrollArea">
      <property name="widgetResizable">
       <bool>true</bool>
      </property>
      <widget class="QWidget" name="scrollAreaWidgetContents">
       <property name="geometry">
        <rect>
         <x>0</x>
         <y>0</y>
         <width>1157</width>
         <height>944</height>
        </rect>
       </property>
       <widget class="QTableWidget" name="tableWidget">
        <property name="geometry">
         <rect>
          <x>10</x>
          <y>70</y>
          <width>1075</width>
          <height>142</height>
         </rect>
        </property>
        <column>
         <property name="text">
          <string>问题描述</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>问题描述佐证资料</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>问题定性法规依据</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>涉及金额(万元)</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改金额(万元)</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改情况1</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改佐证资料1</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改类型</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改结果</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改时间</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>尚未整改到位的原因</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>尚未整改到位问题整改期限</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改情况2</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改情况佐证资料2</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改类型</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改结果</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>整改时间</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>尚未整改到位的原因</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>尚未整改到位问题整改期限</string>
         </property>
        </column>
       </widget>
       <widget class="QTableWidget" name="tableWidget_2">
        <property name="geometry">
         <rect>
          <x>33</x>
          <y>288</y>
          <width>989</width>
          <height>271</height>
         </rect>
        </property>
        <attribute name="horizontalHeaderVisible">
         <bool>false</bool>
        </attribute>
        <attribute name="verticalHeaderVisible">
         <bool>false</bool>
        </attribute>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
       </widget>
       <widget class="QPushButton" name="pushButton_addRow">
        <property name="geometry">
         <rect>
          <x>23</x>
          <y>250</y>
          <width>93</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>增加一行</string>
        </property>
       </widget>
       <widget class="QLabel" name="label">
        <property name="geometry">
         <rect>
          <x>123</x>
          <y>250</y>
          <width>210</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>要删除某一行直接右击删除即可</string>
        </property>
       </widget>
       <widget class="QPushButton" name="pushButton_save">
        <property name="geometry">
         <rect>
          <x>917</x>
          <y>250</y>
          <width>93</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>保存</string>
        </property>
       </widget>
       <widget class="QComboBox" name="comboBox_company">
        <property name="geometry">
         <rect>
          <x>20</x>
          <y>20</y>
          <width>989</width>
          <height>21</height>
         </rect>
        </property>
        <property name="editable">
         <bool>true</bool>
        </property>
       </widget>
       <widget class="QPushButton" name="pushButton_save_2">
        <property name="geometry">
         <rect>
          <x>927</x>
          <y>600</y>
          <width>93</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>保存</string>
        </property>
       </widget>
       <widget class="QTableWidget" name="tableWidget_3">
        <property name="geometry">
         <rect>
          <x>23</x>
          <y>638</y>
          <width>1009</width>
          <height>471</height>
         </rect>
        </property>
        <attribute name="horizontalHeaderVisible">
         <bool>false</bool>
        </attribute>
        <attribute name="verticalHeaderVisible">
         <bool>false</bool>
        </attribute>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <row>
         <property name="text">
          <string>新建行</string>
         </property>
        </row>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
        <column>
         <property name="text">
          <string>新建列</string>
         </property>
        </column>
       </widget>
       <widget class="QLabel" name="label_2">
        <property name="geometry">
         <rect>
          <x>143</x>
          <y>600</y>
          <width>210</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>要删除某一行直接右击删除即可</string>
        </property>
       </widget>
       <widget class="QPushButton" name="pushButton_addRow_2">
        <property name="geometry">
         <rect>
          <x>43</x>
          <y>600</y>
          <width>93</width>
          <height>28</height>
         </rect>
        </property>
        <property name="text">
         <string>增加一行</string>
        </property>
       </widget>
      </widget>
     </widget>
    </item>
   </layout>
  </widget>
  <widget class="QMenuBar" name="menubar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>1181</width>
     <height>26</height>
    </rect>
   </property>
  </widget>
  <widget class="QStatusBar" name="statusbar"/>
 </widget>
 <resources/>
 <connections/>
</ui>