├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── example ├── __init__.py └── mock_ofd.py ├── ofd ├── __init__.py ├── protocol.py └── version.py ├── schemas ├── 1.0 │ ├── closeArchive.schema.json │ ├── closeShift.schema.json │ ├── currentStateReport.schema.json │ ├── dictionary.schema.json │ ├── document.schema.json │ ├── fiscalReport.schema.json │ ├── fiscalReportCorrection.schema.json │ ├── openShift.schema.json │ ├── receipt.schema.json │ └── receiptCorrection.schema.json ├── 1.05 │ ├── closeArchive.schema.json │ ├── closeShift.schema.json │ ├── currentStateReport.schema.json │ ├── dictionary.schema.json │ ├── document.schema.json │ ├── fiscalReport.schema.json │ ├── fiscalReportCorrection.schema.json │ ├── openShift.schema.json │ ├── receipt.schema.json │ └── receiptCorrection.schema.json └── 1.1 │ ├── closeArchive.schema.json │ ├── closeShift.schema.json │ ├── currentStateReport.schema.json │ ├── dictionary.schema.json │ ├── document.schema.json │ ├── fiscalReport.schema.json │ ├── fiscalReportCorrection.schema.json │ ├── openShift.schema.json │ ├── receipt.schema.json │ └── receiptCorrection.schema.json ├── setup.py └── tests ├── __init__.py ├── example_test.py └── ofd_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/README.md -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/example/__init__.py -------------------------------------------------------------------------------- /example/mock_ofd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/example/mock_ofd.py -------------------------------------------------------------------------------- /ofd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/ofd/__init__.py -------------------------------------------------------------------------------- /ofd/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/ofd/protocol.py -------------------------------------------------------------------------------- /ofd/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/ofd/version.py -------------------------------------------------------------------------------- /schemas/1.0/closeArchive.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/closeArchive.schema.json -------------------------------------------------------------------------------- /schemas/1.0/closeShift.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/closeShift.schema.json -------------------------------------------------------------------------------- /schemas/1.0/currentStateReport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/currentStateReport.schema.json -------------------------------------------------------------------------------- /schemas/1.0/dictionary.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/dictionary.schema.json -------------------------------------------------------------------------------- /schemas/1.0/document.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/document.schema.json -------------------------------------------------------------------------------- /schemas/1.0/fiscalReport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/fiscalReport.schema.json -------------------------------------------------------------------------------- /schemas/1.0/fiscalReportCorrection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/fiscalReportCorrection.schema.json -------------------------------------------------------------------------------- /schemas/1.0/openShift.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/openShift.schema.json -------------------------------------------------------------------------------- /schemas/1.0/receipt.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/receipt.schema.json -------------------------------------------------------------------------------- /schemas/1.0/receiptCorrection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.0/receiptCorrection.schema.json -------------------------------------------------------------------------------- /schemas/1.05/closeArchive.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/closeArchive.schema.json -------------------------------------------------------------------------------- /schemas/1.05/closeShift.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/closeShift.schema.json -------------------------------------------------------------------------------- /schemas/1.05/currentStateReport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/currentStateReport.schema.json -------------------------------------------------------------------------------- /schemas/1.05/dictionary.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/dictionary.schema.json -------------------------------------------------------------------------------- /schemas/1.05/document.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/document.schema.json -------------------------------------------------------------------------------- /schemas/1.05/fiscalReport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/fiscalReport.schema.json -------------------------------------------------------------------------------- /schemas/1.05/fiscalReportCorrection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/fiscalReportCorrection.schema.json -------------------------------------------------------------------------------- /schemas/1.05/openShift.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/openShift.schema.json -------------------------------------------------------------------------------- /schemas/1.05/receipt.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/receipt.schema.json -------------------------------------------------------------------------------- /schemas/1.05/receiptCorrection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.05/receiptCorrection.schema.json -------------------------------------------------------------------------------- /schemas/1.1/closeArchive.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/closeArchive.schema.json -------------------------------------------------------------------------------- /schemas/1.1/closeShift.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/closeShift.schema.json -------------------------------------------------------------------------------- /schemas/1.1/currentStateReport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/currentStateReport.schema.json -------------------------------------------------------------------------------- /schemas/1.1/dictionary.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/dictionary.schema.json -------------------------------------------------------------------------------- /schemas/1.1/document.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/document.schema.json -------------------------------------------------------------------------------- /schemas/1.1/fiscalReport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/fiscalReport.schema.json -------------------------------------------------------------------------------- /schemas/1.1/fiscalReportCorrection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/fiscalReportCorrection.schema.json -------------------------------------------------------------------------------- /schemas/1.1/openShift.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/openShift.schema.json -------------------------------------------------------------------------------- /schemas/1.1/receipt.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/receipt.schema.json -------------------------------------------------------------------------------- /schemas/1.1/receiptCorrection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/schemas/1.1/receiptCorrection.schema.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/example_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/tests/example_test.py -------------------------------------------------------------------------------- /tests/ofd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/ofd/HEAD/tests/ofd_test.py --------------------------------------------------------------------------------