ANTICIPO

Contents

ANTICIPO#

Grupo de campos para información relacionada con un anticipo, el cual es un pago que se hace antes de recibir el servicio o el producto adquirido, o antes de entregarlo en el caso del proveedor y se debe informar a nivel Global de la factura. Los anticipos serán indicados como valores informativos, estos valores no serán incluidos sobre la operación del elemento PayableAmount sobre el total del documento.

1. PaidDate (Anticipo)

Invoice.PrepaidPayments.PaidDate

/Invoice/cac:PrepaidPayment/cbc:PaidDate

Fecha en la cual el pago del anticipo fue realizado.

2. PaidAmount (Anticipo)

Invoice.PrepaidPayments.PaidAmount

/Invoice/cac:PrepaidPayment/cbc:PaidAmount

Valor del pago del anticipo NO puede ser superior al valor total de la factura.

3. PrePaidTotalAmount (Anticipo)

Invoice.Total.PrePaidTotalAmount

/Invoice/cac:LegalMonetaryTotal/cbc:PrepaidAmount

El Valor del Anticipo Total es igual a la suma de todos los anticipos o prepagos globales aplicados al total de la factura.

DTO ANTICIPOS#

JSON (DTO) - ANTICIPOS
{
    "Currency": "COP",
    "SeriePrefix": "SETP",
    "SerieNumber": "990040011",
    "IssueDate": "2023-11-27T12:12:12",
    "DueDate": "2023-11-27T12:12:12",
    "DeliveryDate": "2023-11-27T12:12:12",
    "CorrelationDocumentId": "POSTMAN-{{$timestamp}}",
    "SerieExternalKey": "{{serieexternalkeyFV}}",
    "IssuerParty": {
        "Identification": {
            "DocumentNumber": "{{nit}}",
            "DocumentType": "NIT",
            "CountryCode": "CO",
            "CheckDigit": "{{digitoverificacion}}"
        }
    },
    "OperationType": "10",
    "PaymentMeans": [
        {
            "Code": "20",
            "Mean": "1",
            "DueDate": "2023-11-27"
        }
    ],
    "CustomerParty": {
        "LegalType": "Legal",
        "Email": "correo@sovos.com",
        "TaxScheme": "ZZ",
        "ResponsabilityTypes": [
            "R-99-PN"
        ],
        "Identification": {
            "DocumentNumber": "{{nit}}",
            "DocumentType": "NIT",
            "CountryCode": "CO",
            "CheckDigit": "{{digitoverificacion}}"
        },
        "Name": "Saphety Transacciones Electrónicas S.A.S",
        "Address": {
            "DepartmentCode": "11",
            "CityCode": "11001",
            "AddressLine": "Calle 97a No. 9 - 45",
            "Country": "CO"
        }
    },
    "Lines": [
        {
            "Number": "1",
            "Quantity": "1",
            "QuantityUnitOfMeasure": "NAR",
            "TaxSubTotals": [
                {
                    "TaxCategory": "01",
                    "TaxPercentage": "19.00",
                    "TaxableAmount": "115000.00",
                    "TaxAmount": "21850.00"
                }
            ],
            "TaxTotals": [
                {
                    "TaxCategory": "01",
                    "TaxAmount": "21850.00",
                    "RoundingAmount": "0.00"
                }
            ],
            "UnitPrice": "115000.00",
            "GrossAmount": "115000.00",
            "NetAmount": "115000.00",
            "Item": {
                "Gtin": "987654321",
                "Description": "Descripcion del producto o servicio"
            }
        }
    ],
    "TaxSubTotals": [
        {
            "TaxCategory": "01",
            "TaxPercentage": "19.00",
            "TaxableAmount": "115000.00",
            "TaxAmount": "21850.00"
        }
    ],
    "TaxTotals": [
        {
            "TaxCategory": "01",
            "TaxAmount": "21850.00",
            "RoundingAmount": "0.00"
        }
    ],
    "Total": {
        "GrossAmount": "115000.00",
        "TotalBillableAmount": "136850.00",
        "PayableAmount": "136850.00",
        "TaxableAmount": "115000.00",
        "PrePaidTotalAmount": "136850.00" /*Campo Anticipo*/
    },
    "PrepaidPayments": [
        { /*Sección para informar Anticipos*/
            "PaidDate": "2023-11-27T12:12:12", /*Campo Anticipo*/
            "PaidAmount": "136850.00" /*Campo Anticipo*/
        }
    ]
}