YetiForceCompany/YetiForceCRM

View on GitHub
app/Integrations/Wapro/Synchronizer/BankAccounts.php

Summary

Maintainability
A
3 hrs
Test Coverage
F
0%
<?php

/**
 * WAPRO ERP company bank accounts synchronizer file.
 *
 * @package Integration
 *
 * @copyright YetiForce S.A.
 * @license   YetiForce Public License 6.5 (licenses/LicenseEN.txt or yetiforce.com)
 * @author    Mariusz Krzaczkowski <m.krzaczkowski@yetiforce.com>
 */

namespace App\Integrations\Wapro\Synchronizer;

/**
 * WAPRO ERP company bank accounts synchronizer class.
 */
class BankAccounts extends \App\Integrations\Wapro\Synchronizer
{
    /** {@inheritdoc} */
    const NAME = 'LBL_COMPANY_BANK_ACCOUNTS';

    /** {@inheritdoc} */
    const SEQUENCE = 1;

    /** {@inheritdoc} */
    protected $fieldMap = [
        'NAZWA' => 'name',
        'NUMER_RACHUNKU' => 'account_number',
        'bankName' => 'bank_name',
        'SWIFT' => 'swift',
        'SYM_WALUTY' => ['fieldName' => 'currency_id', 'fn' => 'convertCurrency'],
    ];

    /** {@inheritdoc} */
    public function process(): int
    {
        $dataReader = (new \App\Db\Query())->select(['dbo.RACHUNEK_FIRMY.*', 'dbo.BANKI.SWIFT', 'bankName' => 'dbo.BANKI.NAZWA'])
            ->from('dbo.RACHUNEK_FIRMY')
            ->leftJoin('dbo.BANKI', 'dbo.RACHUNEK_FIRMY.ID_BANKU = dbo.BANKI.ID_BANKU')
            ->createCommand($this->controller->getDb())->query();
        $e = $s = $i = $u = 0;
        while ($row = $dataReader->read()) {
            $this->waproId = $row['ID_RACHUNKU'];
            $this->row = $row;
            $this->skip = false;
            try {
                switch ($this->importRecord()) {
                    default:
                    case 0:
                        ++$s;
                        break;
                    case 1:
                        ++$u;
                        break;
                    case 2:
                        ++$i;
                        break;
                }
            } catch (\Throwable $th) {
                $this->logError($th);
                ++$e;
            }
        }
        $this->log("Create {$i} | Update {$u} | Skipped {$s} | Error {$e}");
        return $i + $u;
    }

    /** {@inheritdoc} */
    public function importRecord(): int
    {
        $multiCompanyId = $this->findInMapTable($this->row['ID_FIRMY'], 'FIRMA');
        if (!$multiCompanyId) {
            return 0;
        }
        if ($id = $this->findInMapTable($this->waproId, 'RACHUNEK_FIRMY')) {
            $this->recordModel = \Vtiger_Record_Model::getInstanceById($id, 'BankAccounts');
        } else {
            $this->recordModel = \Vtiger_Record_Model::getCleanInstance('BankAccounts');
            $this->recordModel->setDataForSave([\App\Integrations\Wapro::RECORDS_MAP_TABLE_NAME => [
                'wtable' => 'RACHUNEK_FIRMY',
            ]]);
        }
        $this->recordModel->set('bankaccount_status', $this->row['AKTYWNY'] ? 'PLL_ACTIVE' : 'PLL_INACTIVE');
        $this->recordModel->set('wapro_id', $this->waproId);
        $this->recordModel->set('multicompanyid', $multiCompanyId);
        $this->loadFromFieldMap();
        $this->recordModel->save();
        \App\Cache::save('WaproMapTable', "{$this->waproId}|RACHUNEK_FIRMY", $this->recordModel->getId());
        if ($id) {
            return $this->recordModel->getPreviousValue() ? 1 : 3;
        }
        return 2;
    }

    /** {@inheritdoc} */
    public function getCounter(): int
    {
        return (new \App\Db\Query())->from('dbo.RACHUNEK_FIRMY')->count('*', $this->controller->getDb());
    }
}