mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
Пофиксил неправильную распаковку репорта от Клиента
This commit is contained in:
@@ -181,11 +181,11 @@ void ProcessParser::clientUnityTaskFIMreport(QXmlStreamReader &xmlReader, Client
|
||||
for(int k = 0; k < malfOrReportNode.childNodes().count(); k++)
|
||||
{
|
||||
QDomNode reportItemNode = malfOrReportNode.childNodes().at(k);
|
||||
if(reportItemNode.nodeName() == "reportItem")
|
||||
if(reportItemNode.nodeName() == "item")
|
||||
{
|
||||
FIMReportItem reportItem;
|
||||
reportItem.id = 0; //reportItemNode.toElement().attribute("item_id").toInt();
|
||||
reportItem.text = reportItemNode.toElement().attribute("text");
|
||||
reportItem.text = reportItemNode.toElement().attribute("title");
|
||||
|
||||
if(reportItemNode.childNodes().count())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user