@ -1,36 +1,38 @@ |
|||
#Workaround for Issue #60 |
|||
CONFIG += git_build |
|||
|
|||
load(qt_build_config) |
|||
|
|||
MODULE_VERSION = 0.3.0 |
|||
|
|||
QT += core gui xml |
|||
|
|||
#CONFIG += static |
|||
|
|||
RC_FILE = deltaproxmlgen.rc |
|||
|
|||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets |
|||
|
|||
TARGET = DeltaProXmlGen |
|||
TEMPLATE = app |
|||
|
|||
|
|||
SOURCES += main.cpp\ |
|||
mainwindow.cpp \ |
|||
about.cpp \ |
|||
genxml.cpp |
|||
|
|||
HEADERS += mainwindow.h \ |
|||
about.h \w \ |
|||
genxml.h \ |
|||
metainfo.h |
|||
mainwindow.h |
|||
|
|||
FORMS += mainwindow.ui \ |
|||
about.ui |
|||
|
|||
#RESOURCES += \ |
|||
# logo.qrc |
|||
|
|||
#Workaround for Issue #60 |
|||
CONFIG += git_build |
|||
|
|||
load(qt_build_config) |
|||
|
|||
MODULE_VERSION = 0.3.0 |
|||
|
|||
QT += core gui xml |
|||
QTPLUGIN += gif |
|||
|
|||
#CONFIG += static |
|||
|
|||
RC_FILE = deltaproxmlgen.rc |
|||
|
|||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets |
|||
|
|||
TARGET = DeltaProXmlGen |
|||
TEMPLATE = app |
|||
|
|||
|
|||
SOURCES += main.cpp\ |
|||
mainwindow.cpp \ |
|||
about.cpp \ |
|||
genxml.cpp |
|||
|
|||
HEADERS += mainwindow.h \ |
|||
about.h \w \ |
|||
genxml.h \ |
|||
metainfo.h |
|||
mainwindow.h |
|||
|
|||
FORMS += mainwindow.ui \ |
|||
about.ui |
|||
|
|||
RESOURCES += \ |
|||
graphics.qrc |
|||
|
|||
|
|||
|
After Width: | Height: | Size: 92 KiB |
@ -1,125 +1,131 @@ |
|||
#include "genxml.h" |
|||
|
|||
GenXML::GenXML( QVector<QVector<QString>> data, QString file ) |
|||
{ |
|||
tabledata = data; |
|||
xmlfile = file; |
|||
} |
|||
|
|||
|
|||
int GenXML::Convert () { |
|||
QDomDocument xmldoc; |
|||
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(QString(current_date()).toLatin1());
|
|||
|
|||
for( int i=1; i<tabledata.size()-1; i++) { |
|||
QString DocType; |
|||
|
|||
if(tabledata[i][0] == QString("Фактура")) { |
|||
DocType = "1"; |
|||
} |
|||
else if (tabledata[i][0] == QString("Дебитна нота")) { |
|||
DocType = "2"; |
|||
} |
|||
else if (tabledata[i][0] == QString("Кредитна нота")) { |
|||
DocType = "3"; |
|||
} |
|||
|
|||
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); |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
TransferData.appendChild(Accounts); |
|||
TransferData.appendChild(Accountings); |
|||
xmldoc.appendChild(TransferData); |
|||
|
|||
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; |
|||
} |
|||
#include "genxml.h" |
|||
|
|||
GenXML::GenXML( QVector<QVector<QString>> data, QString file ) |
|||
{ |
|||
tabledata = data; |
|||
xmlfile = file; |
|||
} |
|||
|
|||
|
|||
int GenXML::Convert () { |
|||
QDomDocument xmldoc; |
|||
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(QString(current_date()).toLatin1());
|
|||
|
|||
for( int i=1; i<tabledata.size()-1; i++) { |
|||
QString DocType; |
|||
|
|||
if(tabledata[i][0] == QString("Фактура")) { |
|||
DocType = "1"; |
|||
} |
|||
else if (tabledata[i][0] == QString("Дебитна нота")) { |
|||
DocType = "2"; |
|||
} |
|||
else if (tabledata[i][0] == QString("Кредитна нота")) { |
|||
DocType = "3"; |
|||
} |
|||
|
|||
QDomElement Accounting = xmldoc.createElement("Accounting"); |
|||
Accounting.setAttribute("AccountingDate", tabledata[i][1]); |
|||
Accounting.setAttribute("Term", "Продажба на СМЦ"); |
|||
Accounting.setAttribute("Reference", tabledata[i][3]); |
|||
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/4"; |
|||
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); |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
TransferData.appendChild(Accounts); |
|||
TransferData.appendChild(Accountings); |
|||
xmldoc.appendChild(TransferData); |
|||
|
|||
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(); |
|||
|
|||
QMessageBox *BoxDone = new QMessageBox; |
|||
BoxDone->setInformativeText("The file is converted!"); |
|||
BoxDone->setStandardButtons(QMessageBox::Ok); |
|||
BoxDone->exec(); |
|||
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; |
|||
} |
|||
|
@ -1,26 +1,27 @@ |
|||
#ifndef GENXML_H |
|||
#define GENXML_H |
|||
#include <QString> |
|||
#include <QVector> |
|||
#include <QtXml> |
|||
#include <QDomDocument> |
|||
#include <QDomElement> |
|||
#include <QFile> |
|||
#include <QTextStream> |
|||
|
|||
|
|||
|
|||
class GenXML |
|||
{ |
|||
public: |
|||
GenXML( QVector<QVector< QString>> data, QString file); |
|||
QVector<QVector<QString>> tabledata; |
|||
QString xmlfile; |
|||
int Convert(); |
|||
|
|||
private: |
|||
QString current_date(); |
|||
|
|||
}; |
|||
|
|||
#endif // GENXML_H
|
|||
#ifndef GENXML_H |
|||
#define GENXML_H |
|||
#include <QString> |
|||
#include <QVector> |
|||
#include <QtXml> |
|||
#include <QDomDocument> |
|||
#include <QDomElement> |
|||
#include <QFile> |
|||
#include <QTextStream> |
|||
#include <QMessageBox> |
|||
|
|||
|
|||
|
|||
class GenXML |
|||
{ |
|||
public: |
|||
GenXML( QVector<QVector< QString>> data, QString file); |
|||
QVector<QVector<QString>> tabledata; |
|||
QString xmlfile; |
|||
int Convert(); |
|||
|
|||
private: |
|||
QString current_date(); |
|||
|
|||
}; |
|||
|
|||
#endif // GENXML_H
|
|||
|
@ -0,0 +1,5 @@ |
|||
<RCC> |
|||
<qresource prefix="/graphics"> |
|||
<file>graphics/dancing_coffee.gif</file> |
|||
</qresource> |
|||
</RCC> |
Before Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.3 KiB |
@ -1,8 +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
|
|||
#ifndef METAINFO_H |
|||
#define METAINFO_H |
|||
#include <QString> |
|||
|
|||
const QString APP_VERSION = "0.1.4"; |
|||
const QString APP_RELEASE_DATE = "16 November 2017, 17:00 GMT+2"; |
|||
|
|||
#endif // METAINFO_H
|
|||
|