Skip to main content

UNKNOWN

Project description

https://img.shields.io/badge/Django-CC-ee66dd.svg https://img.shields.io/pypi/v/django-vies.svg Iontinuous Integration Code Health Test Coverage MIT License Join the chat at https://gitter.im/codingjoe/django-vies

Django-VIES

Django-VIES is a django extension that allows storing VAT Information Exchange System (VIES) data in django models and validation. Provided are a VATIN object, a ModelField and a FormField.

Installation

Current Stable

pip install django-vies

Latest Development

pip install -e git://github.com/codingjoe/django-vies.git#egg=django-vies

Usage

VATINField for models

from django.db import models
from vies.models import VATINField

class Company(models.Model):
    name = models.CharField(max_length=100)
    vat = VATINField(blank=True, null=True)

VATIN wrapper class, allows access to result.

>>> from vies.types import VATIN
>>> vat = VATIN('NL', '124851903B01')
>>> vat.is_valid()
True
>>> vat.result
(reply){
   countryCode = "NL"
   vatNumber = "124851903B01"
   requestDate = 2014-03-25
   valid = True
   name = "JIETER"
   address = "(...)"
 }

You can also use the classmethod VATIN.from_str to create VATIN from str.

>>> from vies.types import VATIN
>>> vat = VATIN.from_str('NL124851903B01')
>>> vat.is_valid()
True

The VIES API endpoint can be very unreliable and seems to have an IP based access limit. Therefore the VATINField does NOT perform API based validation by default. It needs to be explicitly turned on or performed in a separate task.

e.g.

from vies.models import VATINField
from vies.validators import VATINValidator


class Company(models.Model):
    name = models.CharField(max_length=100)
    vat = VATINField(validators=[VATINValidator(verify=True, validate=True)])

validate=True will tell the validator to validate against the VIES API. verify is enabled on by default and will only verify that the VATIN matches the countries specifications.

It is recommended to perform VIES API validation inside an asynchronous task.

e.g. using celery

from celery import shared_task
from vies.models import VATINField
from vies.validators import VATINValidator


class Company(models.Model):
    name = models.CharField(max_length=100)
    vat = VATINField()
    vat_is_valid = models.BooleanField(default=False)

    def __init__(self, *args, **kwargs):
        self.__vat = self.vat
        super(Company, self).__init__(*args, **kwargs)

    def save(self, *args, **kwargs):
        if self.__vat != self.vat:
            validate_vat_field.delay(self)
        super(Company, self).save(*args, **kwargs)
        self.__vat = self.vat

    def refresh_from_db(self)
        super(Company, self).refresh_from_db()
        self.__vat = self.vat

@shared_task
def validate_vat_field(company):
    try:
        company.vat.validate()
    except ValidationError:
        self.vat_is_valid = False
    else:
        self.vat_is_valid = False
    finally:
        self.save()

Translations

Feel free to contribute translations, it’s simple!

cd vies
django-admin makemessages -l $YOUR_COUNTRY_CODE

Just edit the generated PO file. Pull-Requests are welcome!

License

The MIT License (MIT)

Copyright (c) 2014-2016 Johannes Hoppe

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-vies-3.1.0.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

django_vies-3.1.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file django-vies-3.1.0.tar.gz.

File metadata

File hashes

Hashes for django-vies-3.1.0.tar.gz
Algorithm Hash digest
SHA256 2ed94c078136d3de7c0815db25a7420fb0df6c14430a3b0d1e807f1fa16f4fd1
MD5 3b7c60fdec689794ebf749a78de85a2d
BLAKE2b-256 93d94025561d66224a51431cb5c966681a806ae5f9a4ece8ca974c48f8ca87cb

See more details on using hashes here.

File details

Details for the file django_vies-3.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_vies-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 be66ba9fd8014a3927fd0d1cd2aad01655953d07b419cc2cbd7cee2bbfa3d8bf
MD5 40797b72c5d30766079b90b10eee0a06
BLAKE2b-256 724b5615858fffb531c29ca9a77302965b8732335105a1919977bfbb8c54e5bf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page