Files
yookassa-sdk-php/lib/Helpers/FiscalizationProvider.php
T
2025-07-15 13:11:12 +03:00

100 lines
4.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/*
* The MIT License
*
* Copyright (c) 2025 "YooMoney", NBСO LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace YooKassa\Helpers;
use YooKassa\Common\AbstractEnum;
/**
* Класс, представляющий модель FiscalizationProvider.
*
* Решение ЮKassa, которое магазин использует для отправки чеков.
* Возможные значения:
* - [Чеки для самозанятых](https://yookassa.ru/developers/payment-acceptance/receipts/self-employed/basics) — `fns`
* - [54-ФЗ: Чеки от ЮKassa](https://yookassa.ru/developers/payment-acceptance/receipts/54fz/yoomoney/basics) — `avanpost`
* - [54-ФЗ: сторонняя онлайн-касса](https://yookassa.ru/developers/payment-acceptance/receipts/54fz/other-services/basics) (наименование онлайн-кассы) — ~`a_qsi` (aQsi online), ~`atol` (АТОЛ Онлайн), ~`business_ru` (Бизнес.ру), ~`digital_kassa` (digitalkassa), ~`evotor` (Эвотор), ~`first_ofd` (Первый ОФД), ~`kit_invest` (Кит Инвест), ~`komtet` (КОМТЕТ Касса), ~`life_pay` (LIFE PAY), ~`mertrade` (Mertrade), ~`modul_kassa` (МодульКасса), ~`rocket` (RocketR), ~`shtrih_m` (Orange Data).
*
* @category Class
* @package YooKassa\Model
* @author cms@yoomoney.ru
* @link https://yookassa.ru/developers/api
*/
class FiscalizationProvider extends AbstractEnum
{
/** АТОЛ Онлайн */
const ATOL = 'atol';
/** Бизнес.ру */
const BUSINESS_RU = 'business_ru';
/** Orange Data */
const SHTRIH_M = 'shtrih_m';
/** МодульКасса */
const MODUL_KASSA = 'modul_kassa';
/** Эвотор */
const EVOTOR = 'evotor';
/** Кит Инвест */
const KIT_INVEST = 'kit_invest';
/** aQsi online */
const A_QSI = 'a_qsi';
/** Чеки для самозанятых */
const FNS = 'fns';
/** 54-ФЗ: Чеки от ЮKassa */
const AVANPOST = 'avanpost';
/** Mertrade */
const MERTRADE = 'mertrade';
/** Первый ОФД */
const FIRST_OFD = 'first_ofd';
/** LIFE PAY */
const LIFE_PAY = 'life_pay';
/** RocketR */
const ROCKET = 'rocket';
/** digitalkassa */
const DIGITAL_KASSA = 'digital_kassa';
/** КОМТЕТ Касса */
const KOMTET = 'komtet';
/**
* Возвращает список доступных значений
* @return string[]
*/
protected static $validValues = array(
self::ATOL => true,
self::BUSINESS_RU => true,
self::SHTRIH_M => true,
self::MODUL_KASSA => true,
self::EVOTOR => true,
self::KIT_INVEST => true,
self::A_QSI => true,
self::FNS => true,
self::AVANPOST => true,
self::MERTRADE => true,
self::FIRST_OFD => true,
self::LIFE_PAY => true,
self::ROCKET => true,
self::DIGITAL_KASSA => true,
self::KOMTET => true,
);
}