Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dividir DetalleIVA en diferents Detalles d'IVA segons el tipus impositiu #17

Closed
gdalmau opened this issue May 16, 2017 · 1 comment
Closed
Assignees

Comments

@gdalmau
Copy link
Contributor

gdalmau commented May 16, 2017

Posar d'una de les dues formes:

  1. Fent que DetalleIVA tingui una llista de tots els IVA
"DesgloseIVA":{
    "DetalleIVA":[
    {
        "TipoImpositivo":21,
        "BaseImponible":22.07,
        "CuotaRepercutida":4.63
    },
    {
        "TipoImpositivo":10,
        "BaseImponible":1.10,
        "CuotaRepercutida":0.10
    }]
}
  1. Fent que DesgloseIVA tingui una llista de DetalleIVA
"DesgloseIVA":[
    {
        "DetalleIVA":{
            "TipoImpositivo":21,
            "BaseImponible":22.07,
            "CuotaRepercutida":4.63
        }
    },
    {
        "DetalleIVA":{
            "TipoImpositivo":10,
            "BaseImponible":1.10,
            "CuotaRepercutida":0.10
        }
    }
]
@gdalmau
Copy link
Contributor Author

gdalmau commented May 16, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant