Skip to content

Instantly share code, notes, and snippets.

@trico
Created February 26, 2021 13:52
Show Gist options
  • Save trico/f2683c619b4ebb3ba26425146138ff66 to your computer and use it in GitHub Desktop.
Save trico/f2683c619b4ebb3ba26425146138ff66 to your computer and use it in GitHub Desktop.
{
"operations": [
{
"operationAmount": {
"totalWithDiscount": 1,
"totalWithoutDiscount": 1
},
"operationTaxes": [
{
"percentage": 6
}
]
},
{
"operationAmount": {
"totalWithDiscount": 1.2,
"totalWithoutDiscount": 1.2
},
"operationTaxes": [
{
"percentage": 23
}
]
}
]
}
}
# PASA A SER
{
"operations": [
{
"operationAmount": {
"totalWithDiscount": 1,
"totalWithoutDiscount": 1
},
"operationTaxes": [
{
"tax": 0.06,
"base": 0.94,
"calculated": true,
"percentage": 6
}
]
},
{
"operationAmount": {
"totalWithDiscount": 1.2,
"totalWithoutDiscount": 1.2
},
"operationTaxes": [
{
"tax": 0.28,
"base": 0.92,
"calculated": true,
"percentage": 23
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment