Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/cashbox/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/cashbox/correctionbuycheck.php

<?php

namespace Bitrix\Sale\Cashbox;

use Bitrix\Main;

/**
 * Class CorrectionBuyCheck
 * @package Bitrix\Sale\Cashbox
 */
class CorrectionBuyCheck extends CorrectionCheck
{
	public static function getName()
	{
		return Main\Localization\Loc::getMessage('SALE_CASHBOX_CORRECTION_BUY_NAME');
	}

	/**
	 * @return string
	 */
	public static function getType()
	{
		return 'correction_buy';
	}

	/**
	 * @return string
	 */
	public static function getCalculatedSign()
	{
		return static::CALCULATED_SIGN_CONSUMPTION;
	}
}