Generates XML files for DeltaPro from Amazon invoices
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
840 B

#include "genxml.h"
GenXML::GenXML( QVector<QVector<QString>> data, QString file )
{
tabledata = data;
xmlfile = file;
}
int GenXML::Convert () {
QDomDocument xmldoc;
xmldoc.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"utf-8\"");
QDomElement TransferData = xmldoc.createElement("TransferData");
TransferData.setAttribute("xmlns", "urn:Transfer");
QDomElement Accountings = xmldoc.createElement("Accountings");
// qDebug("RAZMER: %i", tabledata[1].size());
// for( int i=0; i<tabledata.size(); i++) {
// if(tabledata[i][0] == QString("Фактура")) {
// qDebug("FAKTURA");
// }
// else {
// qDebug("NE E FAKTURA");
// }
// qDebug("%s", tabledata[i][1]);
// }
qDebug(tabledata[2][0].toLatin1());
return 0;
}