Tax (AccounTax)

Taxes

Description

Taxes à appliquer sur les ventes

Import AS400 : non

Job : TaxStream

Odoo : account_tax

Structure

{
    "_id": "string", //Identifiant technique
    "name": "string",
    "amount": "bigdecimal", //Montant de la taxe
    "amountType": "string", //Identifiant technique
    "priceInclude": "boolean", //Identifiant technique
    "odooId": { /* Odoo Id */},
    "description": "string",
    "taxGroupId": "string",
    "typeTaxUse": "string",
    "accountId": "string",
    "refundAccountId": "string",
}

La TGC normale est définie avec :

{
    "amountType": "percent",
    "amount": 11,
    "priceInclude": false
}

Si amountType != percent ou priceInclude != false, le cas n’est pas supporté (pour l’instant).