mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-22 20:54:34 +00:00
Удалёно всё, что связано со схемами
This commit is contained in:
parent
3ffab562f8
commit
12e0e49c9b
@ -1,23 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace AtolOnline\Api;
|
|
||||||
|
|
||||||
abstract class AtolSchema
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public static function get()
|
|
||||||
{
|
|
||||||
return static::$json
|
|
||||||
?? static::$json = json_decode(file_get_contents(static::$URL));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return false|string
|
|
||||||
*/
|
|
||||||
public static function json()
|
|
||||||
{
|
|
||||||
return json_encode(static::get());
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace AtolOnline\Api;
|
|
||||||
|
|
||||||
class CorrectionSchema extends AtolSchema
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var
|
|
||||||
*/
|
|
||||||
protected static $json;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Адрес схемы
|
|
||||||
*/
|
|
||||||
protected static $URL = 'https://online.atol.ru/possystem/v4/schema/correction';
|
|
||||||
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace AtolOnline\Api;
|
|
||||||
|
|
||||||
class SellSchema extends AtolSchema
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var
|
|
||||||
*/
|
|
||||||
protected static $json;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Адрес схемы
|
|
||||||
*/
|
|
||||||
protected static $URL = 'https://online.atol.ru/possystem/v4/schema/sell';
|
|
||||||
|
|
||||||
}
|
|
@ -1,30 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Unit;
|
|
||||||
|
|
||||||
use AtolOnline\Api\CorrectionSchema;
|
|
||||||
use AtolOnline\Api\SellSchema;
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
|
|
||||||
class SchemaTest extends TestCase
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Тестирует корректность работы объекта схемы документа
|
|
||||||
* прихода, возврата прихода, расхода, возврата расхода
|
|
||||||
*/
|
|
||||||
public function testSellSchema()
|
|
||||||
{
|
|
||||||
$this->assertIsObject(SellSchema::get());
|
|
||||||
$this->assertJson(SellSchema::json());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Тестирует корректность работы объекта схемы документа
|
|
||||||
* коррекции прихода, коррекции расхода
|
|
||||||
*/
|
|
||||||
public function testCorrectionSchema()
|
|
||||||
{
|
|
||||||
$this->assertIsObject(CorrectionSchema::get());
|
|
||||||
$this->assertJson(CorrectionSchema::json());
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user