This commit is contained in:
2026-02-19 12:26:46 +03:00
parent 517515e94e
commit a1f3e04fad
4 changed files with 274 additions and 394 deletions

View File

@@ -31,7 +31,7 @@ void RecognizeSystem::initialize(UpdateController *updateController,DataParser*
connect(this,&RecognizeSystem::sigCopyVersion,updateController,&UpdateController::createCopyVersion,Qt::AutoConnection);
connect(this,&RecognizeSystem::sigXmlParser,dataParser->getProcessParser(),&ProcessParser::slot_read,Qt::AutoConnection);
//connect(this,&RecognizeSystem::sigRecalculateDocs,server,&ServerLMSWidget::slot_UpdateDocs,Qt::AutoConnection);
connect(this,&RecognizeSystem::sigSendDocs,sendSystem,&SendSystem::sendDocs,Qt::AutoConnection);
connect(this,&RecognizeSystem::sigSendDocs,sendSystem,&SendSystem::slot_sendDocs,Qt::AutoConnection);
}
void RecognizeSystem::recognize()
@@ -405,7 +405,7 @@ void RecognizeSystem::recognize()
if (updateController->checkDuplicate(result[1]))
{
sendSystem->sendNotify(commandDuplicateVerName);
sendSystem->slot_sendNotify(commandDuplicateVerName);
packetType = PacketType::TYPE_NONE;
break;
}
@@ -427,11 +427,11 @@ void RecognizeSystem::recognize()
if (versionName == baseNameVersion)
{
sendSystem->sendNotify(commandTryBaseDelete);
sendSystem->slot_sendNotify(commandTryBaseDelete);
}
else if (versionName == updateController->getCurrentVersionName())
{
sendSystem->sendNotify(commandTryActiveDelete);
sendSystem->slot_sendNotify(commandTryActiveDelete);
}
else
{