|
@@ -1974,6 +1974,15 @@ void CVtmLoaderFSM::CheckDeviceEntity(SpReqAnsContext<VtmLoaderService_CheckDevi
|
|
|
CEntityStaticInfo staticInfo;
|
|
|
ErrorCodeEnum eErrCode = Error_Unexpect;
|
|
|
CSimpleStringA csEntityName = ctx->Req.entityName;
|
|
|
+
|
|
|
+ //oiltmp@20240415 to be delete after x months
|
|
|
+ if (ctx->Req.entityName.Compare("CardIssuer") == 0)
|
|
|
+ {
|
|
|
+ if (m_sysInfo.strMachineType.Compare("RVC.CardStore") == 0 || m_sysInfo.strMachineType.Compare("RVC.CardPrinter") == 0)
|
|
|
+ csEntityName = "CardIssuerStore";
|
|
|
+ else
|
|
|
+ csEntityName = "CardIssuerStand";
|
|
|
+ }
|
|
|
|
|
|
if ((eErrCode = m_pEntity->GetFunction()->GetEntityStaticInfo(csEntityName.GetData(), staticInfo)) != Error_Succeed)
|
|
|
{
|