CIS4 and old CIS support

This commit is contained in:
Paolo
2024-12-11 17:15:18 +01:00
parent 83e74cbdaf
commit bfb3f09f79
7 changed files with 229 additions and 7 deletions
@@ -72,11 +72,11 @@ class Bank extends FHCAPI_Controller
array($loggedPersonId)
);
// If a db error occurred then terminate
if (isError($bankDataResult)) $this->terminateWithError('Database error while retrieving bank data', self::ERROR_TYPE_DB);
// Get the retrieved data or terminate
$data = $this->getDataOrTerminateWithError($bankDataResult);
// If everythin was fine then return the database results
$this->terminateWithSuccess(getData($bankDataResult));
// Anyway terminate it!
$this->terminateWithSuccess($data);
}
/**
@@ -120,7 +120,7 @@ class Bank extends FHCAPI_Controller
$writeDataResult = null; // it is considered as an error
// If at least a record exists
// If at least a record exists then update
if (hasData($bankDataResult))
{
// Then update
@@ -136,7 +136,7 @@ class Bank extends FHCAPI_Controller
)
);
}
else
else // otherwise insert
{
// Otherwise insert
$writeDataResult = $this->BankverbindungModel->insert(