Merged
Conversation
8565249 to
81cfc5b
Compare
Member
Author
|
DEPLOYED |
Member
Author
|
Deployed 17d26cb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces the initial implementation of the SII ATC module, which adapts the existing SII library for the Canarian Tax Agency (ATC) and the IGIC tax regime. The main changes are the addition of new files for constants, schemas, and documentation, all tailored to support IGIC instead of IVA. The changes include detailed Marshmallow schemas for XML validation, IGIC-specific constants and validation logic, module versioning, and comprehensive documentation in Catalan.
IGIC-specific support and constants:
sii/atc/constants.pywith IGIC tax rates, historical rates, mappings, and validation functions, as well as ATC-specific codes and enums. Includes logic to validate IGIC rates according to operation date.Marshmallow schemas for IGIC XML structures:
sii/atc/models/invoices_record.pydefining Marshmallow schemas for validating ATC invoice XML structures, including IGIC-specific fields and validation logic.sii/atc/models/__init__.pyto initialize the models subpackage.Module versioning:
sii/atc/__init__.pywith the ATC SII module version constant (__ATC_SII_VERSION__).Documentation and usage:
sii/atc/README.md) explaining module features, usage examples, IGIC differences from AEAT, constants, validation, endpoints, technical notes, and TODOs.