complete parsing

This commit is contained in:
2024-08-20 02:38:40 +03:00
parent 984102fd64
commit dfa98f758b
8 changed files with 146 additions and 44 deletions

View File

@@ -2,7 +2,7 @@
#include "./ui_mainwindow.h"
#include "goods/goods.h"
#include "check/check.h"
#include "settings.h"
#include <iostream>
MainWindow::MainWindow(QWidget *parent)
@@ -17,9 +17,11 @@ void MainWindow::setupStoresList() {
// Make file format that is a regeeex which parse check, load these files
// here
parser = *(new Parser());
#ifdef DEBUG
for (auto module : parser.search_modules()) {
std::cout << module << std::endl;
std::cout << "Module: " << module << std::endl;
}
#endif
}
void MainWindow::on_checkType_currentIndexChanged(int index) {
@@ -34,5 +36,15 @@ void MainWindow::on_checkType_currentIndexChanged(int index) {
}
void MainWindow::on_parseButton_clicked() {
std::cout << ui->checkContent->toPlainText().toStdString() << std::endl;
QString s(ui->checkContent->toPlainText());
std::wstring check_plaintext = s.toStdWString();
parser.set_module(parser.search_modules()[0]);
std::vector<Goods> c = parser.parse(check_plaintext);
Check check;
for (auto g : c) {
check.add_goods(g);
}
}