YetiForceCompany/YetiForceCRM

View on GitHub
modules/PaymentsIn/models/FinvoicePaymentStatus.php

Summary

Maintainability
A
3 hrs
Test Coverage
D
66%
<?php
/**
 * The file contains: Class to change the payment status of a sales invoice.
 *
 * @package Model
 *
 * @copyright YetiForce S.A.
 * @license YetiForce Public License 6.5 (licenses/LicenseEN.txt or yetiforce.com)
 * @author Arkadiusz Adach <a.adach@yetiforce.com>
 */

/**
 * Class to change the payment status of a sales invoice.
 */
class PaymentsIn_FinvoicePaymentStatus_Model extends PaymentsIn_PaymentStatus_Model
{
    /** {@inheritdoc} */
    protected static $moduleName = 'FInvoice';

    /** {@inheritdoc} */
    protected static $fieldPaymentStatusName = 'payment_status';

    /** {@inheritdoc} */
    protected static $fieldPaymentSumName = 'payment_sum';

    /** {@inheritdoc} */
    protected static $relatedRecordIdName = 'finvoiceid';

    /** {@inheritdoc} */
    protected static function canUpdatePaymentStatus(Vtiger_Record_Model $recordModel): bool
    {
        $returnValue = parent::canUpdatePaymentStatus($recordModel);
        if (($returnValue || false !== $recordModel->getPreviousValue(static::$relatedRecordIdName)) && (int) $recordModel->get('currency_id') !== \App\Record::getCurrencyIdFromInventory($recordModel->get(static::$relatedRecordIdName), static::$moduleName)
        ) {
            \App\Log::warning('The payment is in a different currency than the related record: ' . $recordModel->get(static::$relatedRecordIdName));
            $returnValue = false;
        }
        return $returnValue;
    }
}