Browse Source

Version 0.1.2

master
Blagovest Petrov 7 years ago
parent
commit
420577de37
  1. 3
      DeltaProXmlGen.pro
  2. 6
      DeltaProXmlGen.pro.user
  3. 4
      about.cpp
  4. 1
      about.h
  5. 28
      about.ui
  6. 115
      genxml.cpp
  7. 5
      genxml.h
  8. 1
      main.cpp
  9. 7
      mainwindow.cpp
  10. 3
      mainwindow.h
  11. 11
      mainwindow.ui
  12. 8
      metainfo.h

3
DeltaProXmlGen.pro

@ -24,7 +24,8 @@ SOURCES += main.cpp\
HEADERS += mainwindow.h \
about.h \w \
genxml.h
genxml.h \
metainfo.h
mainwindow.h
FORMS += mainwindow.ui \

6
DeltaProXmlGen.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.4.1, 2017-11-09T20:19:34. -->
<!-- Written by QtCreator 4.4.1, 2017-11-13T18:56:21. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
@ -62,7 +62,7 @@
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.9.2 MinGW 32bit</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.9.2 MinGW 32bit</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.592.win32_mingw53_kit</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
@ -292,7 +292,7 @@
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.ProFile">DeltaProXmlGen.pro</value>
<value type="bool" key="Qt4ProjectManager.Qt4RunConfiguration.UseDyldImageSuffix">false</value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory"></value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory.default">C:/Users/user/Desktop/build-DeltaProXmlGen-Desktop_Qt_5_9_2_MinGW_32bit-Debug</value>
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory.default">C:/Users/user/Desktop/build-DeltaProXmlGen-Desktop_Qt_5_9_2_MinGW_32bit-Release</value>
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>

4
about.cpp

@ -6,13 +6,15 @@ About::About(QWidget *parent) :
ui(new Ui::About)
{
ui->setupUi(this);
this->setWindowTitle("NeboPassGen::About");
this->setWindowTitle("About DP XML Generator " + APP_VERSION);
this->setGeometry(QStyle::alignedRect(
Qt::LeftToRight,
Qt::AlignCenter,
this->size(),
qApp->desktop()->availableGeometry()
));
ui->label_version->setText(QString("Version: ") + APP_VERSION);
ui->label_releasedate->setText(QString("Released on: ") + APP_RELEASE_DATE);
}
About::~About()

1
about.h

@ -4,6 +4,7 @@
#include <QDialog>
#include <QDesktopWidget>
#include <QStyle>
#include "metainfo.h"
namespace Ui {
class About;

28
about.ui

@ -79,7 +79,7 @@ p, li { white-space: pre-wrap; }
<property name="geometry">
<rect>
<x>0</x>
<y>230</y>
<y>260</y>
<width>341</width>
<height>91</height>
</rect>
@ -88,6 +88,32 @@ p, li { white-space: pre-wrap; }
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;For contacts and support:&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://petrovs.info&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;https://petrovs.info&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;mailto:blagovest@petrovs.info&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;blagovest@petrovs.info&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
<widget class="QWidget" name="verticalLayoutWidget">
<property name="geometry">
<rect>
<x>20</x>
<y>210</y>
<width>281</width>
<height>51</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label_version">
<property name="text">
<string>Version: </string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_releasedate">
<property name="text">
<string>Released on: </string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<resources/>
<connections/>

115
genxml.cpp

@ -9,34 +9,117 @@ GenXML::GenXML( QVector<QVector<QString>> data, QString file )
int GenXML::Convert () {
QDomDocument xmldoc;
xmldoc.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"utf-8\"");
QString direction;
QString detail_number;
QString sum;
xmldoc.appendChild(xmldoc.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"utf-8\""));
QDomElement TransferData = xmldoc.createElement("TransferData");
TransferData.setAttribute("xmlns", "urn:Transfer");
QDomElement Accounts = xmldoc.createElement("Accounts");
QDomElement Accountings = xmldoc.createElement("Accountings");
// qDebug (xmldoc.toString().toLatin1());
qDebug("RAZMER: %i", tabledata[1].size());
// qDebug("RAZMER: %i", tabledata[1].size());
// qDebug(QString(current_date()).toLatin1());
for( int i=0; i<tabledata.size(); i++) {
for( int i=1; i<tabledata.size()-1; i++) {
QString DocType;
if(tabledata[i][0] == QString("Фактура").toUtf8()) {
qDebug("FAKTURA");
if(tabledata[i][0] == QString("Фактура")) {
DocType = "1";
}
else if (tabledata[i][0] == QString("Дебитна нота")) {
DocType = "2";
}
else if (tabledata[i][0] == QString("Кредитна нота")) {
DocType = "3";
}
else {
qDebug("NE E FAKTURA");
QDomElement Accounting = xmldoc.createElement("Accounting");
Accounting.setAttribute("AccountingDate", tabledata[i][1]);
Accounting.setAttribute("Term", "Продажба на СМЦ");
Accountings.appendChild(Accounting);
QDomElement Document = xmldoc.createElement("Document");
Document.setAttribute("DocumentType", DocType);
Document.setAttribute("Number", tabledata[i][2]);
Document.setAttribute("Date", tabledata[i][1]);
Accounting.appendChild(Document);
QDomElement Company = xmldoc.createElement("Company");
Company.setAttribute("Name", "НАСЕЛЕНИЕ");
Accounting.appendChild(Company);
QDomElement AccountingDetails = xmldoc.createElement("AccountingDetails");
Accounting.appendChild(AccountingDetails);
for( int j=0; j<=2; j++){
if (j == 0){
detail_number = "702";
direction = "Credit";
sum = tabledata[i][7].replace(",", ".");
// qDebug(tabledata[i][7].toLatin1());
}
else if(j == 1) {
detail_number = "453/5";
direction = "Credit";
sum = tabledata[i][8].replace(",", ".");
// qDebug(tabledata[i][8].toLatin1());
}
else if (j == 2){
detail_number = "411";
direction = "Debit";
sum = tabledata[i][6].replace(",", ".");
}
QDomElement AccountingDetail = xmldoc.createElement("AccountingDetail");
AccountingDetail.setAttribute("AccountNumber", detail_number);
AccountingDetail.setAttribute("Direction", direction);
AccountingDetail.setAttribute("Amount", sum);
AccountingDetails.appendChild(AccountingDetail);
}
qDebug("%s", tabledata[i][1]);
}
// if(tabledata[1][0] == QString("Фактура").toUtf8())
// qDebug("FAKTURA E");
TransferData.appendChild(Accounts);
TransferData.appendChild(Accountings);
xmldoc.appendChild(TransferData);
// QMessageBox msgBox;
// msgBox.setWindowTitle("foo");
// msgBox.setText(tabledata[1][0]);
// msgBox.exec();
//// qDebug(tabledata[1][0].toLatin1());
QFile outfile(xmlfile);
if( !outfile.open( QIODevice::WriteOnly | QIODevice::Text ) )
{
qDebug( "Failed to open file for reading." );
return 0;
}
QTextStream stream( &outfile );
stream.setCodec("UTF-8");
stream << xmldoc.toString();
outfile.close();
return 0;
}
QString GenXML::current_date(){
QString current_day;
QString current_month;
QString current_year;
QDate date = QDate::currentDate();
if (date.day() < 10) {
current_day = QString("0") + QString::number(date.day());
}
else {
current_day = QString::number(date.day());
}
if (date.month() < 10 ) {
current_month = QString("0") + QString::number(date.month());
}
else {
current_month = QString::number(date.month());
}
current_year = QString::number(date.year());
return current_year + QString("-") + current_month + QString("-") + current_day;
}

5
genxml.h

@ -5,7 +5,9 @@
#include <QtXml>
#include <QDomDocument>
#include <QDomElement>
#include <QMessageBox>
#include <QFile>
#include <QTextStream>
class GenXML
@ -17,6 +19,7 @@ public:
int Convert();
private:
QString current_date();
};

1
main.cpp

@ -1,6 +1,7 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);

7
mainwindow.cpp

@ -6,7 +6,7 @@ MainWindow::MainWindow(QWidget *parent) :
ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->setWindowTitle("DeltaPro XML Generator");
this->setWindowTitle("DP XML Generator " + APP_VERSION);
this->setFixedSize(500,260);
this->setGeometry(QStyle::alignedRect(
Qt::LeftToRight,
@ -49,7 +49,8 @@ void MainWindow::on_actionAbout_triggered()
int MainWindow::ReadExcel(QString file)
{
QString xmlfile = file.left(file.length()-1) + QString(".xml");
QString xmlfile = file.left(file.length()-3) + QString("xml");
qDebug (xmlfile.toLatin1());
QVector<QVector<QString>> xlsdata;
QFile csvf(file);
if (!csvf.open(QIODevice::ReadOnly)) {
@ -63,7 +64,7 @@ int MainWindow::ReadExcel(QString file)
while(!csvstr.atEnd())
{
QString line = csvstr.readLine();
xlsdata.push_back(line.split(',').toVector());
xlsdata.push_back(line.split(':').toVector());
}
csvf.close();

3
mainwindow.h

@ -17,6 +17,7 @@
#include <QDomDocument>
#include <QDateTime>
#include "genxml.h"
#include "metainfo.h"
namespace Ui {
class MainWindow;
@ -38,7 +39,7 @@ private slots:
private:
Ui::MainWindow *ui;
QString filename = "";
QString filename;
int ReadExcel(QString file);
int WriteXML();
QVector<QVector<QString>> *tabledata = new QVector<QVector<QString>>;

11
mainwindow.ui

@ -14,7 +14,7 @@
<string>MainWindow</string>
</property>
<property name="windowOpacity">
<double>0.500000000000000</double>
<double>1.000000000000000</double>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QWidget" name="horizontalLayoutWidget">
@ -27,13 +27,6 @@
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="BtnGenPass">
<property name="text">
<string>Save As..</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="BtnSaveAs">
<property name="text">
@ -54,7 +47,7 @@
<property name="geometry">
<rect>
<x>10</x>
<y>0</y>
<y>40</y>
<width>469</width>
<height>89</height>
</rect>

8
metainfo.h

@ -0,0 +1,8 @@
#ifndef METAINFO_H
#define METAINFO_H
#include <QString>
const QString APP_VERSION = "0.1.2";
const QString APP_RELEASE_DATE = "14 November 2017, 17:00 GMT+2";
#endif // METAINFO_H
Loading…
Cancel
Save