stdnum.do.ncf

NCF (Números de Comprobante Fiscal, Dominican Republic receipt number).

The NCF is used to number invoices and other documents for the purposes of tax filing. The number is 19 digits long and consists of a letter (A or P) to indicate that the number was assigned by the taxpayer or the DGIT, followed a 2-digit business unit number, a 3-digit location number, a 3-digit mechanism identifier, a 2-digit document type and a 8-digit serial number.

More information:

>>> validate('B0100000005')  # format since 2018-05-01
'B0100000005'
>>> validate('A020010210100000005')  # format before 2018-05-01
'A020010210100000005'
>>> validate('Z0100000005')
Traceback (most recent call last):
    ...
InvalidFormat: ...
stdnum.do.ncf.check_dgii(rnc, ncf, timeout=30)

Validate the RNC, NCF combination on using the DGII online web service.

This uses the validation service run by the the Dirección General de Impuestos Internos, the Dominican Republic tax department to check whether the combination of RNC and NCF is valid. The timeout is in seconds.

Returns a dict with the following structure:

{
    'name': 'The registered name',
    'status': 'VIGENTE',
    'type': 'FACTURAS DE CREDITO FISCAL',
    'rnc': '123456789',
    'ncf': 'A020010210100000005',
    'validation_message': 'El NCF digitado es válido.',
}

Will return None if the number is invalid or unknown.

stdnum.do.ncf.compact(number)

Convert the number to the minimal representation. This strips the number of any valid separators and removes surrounding whitespace.

stdnum.do.ncf.is_valid(number)

Check if the number provided is a valid NCF.

stdnum.do.ncf.validate(number)

Check if the number provided is a valid NCF.