Discount invoice aggregate DTO
| name | data type | description |
|---|---|---|
| discountPlanItemCode | string | The discount plan item code. |
| discountPercent | number | The discount percent. |
| itemNumber | number | The item number. |
| accountingCode | string | The accounting code. |
| description | string | The description. |
| taxCode | string | The taxes code |
| taxPercent | number | The tax percent applied |
| |
|
|
| amountWithoutTax | number | The amount without tax. |
| amountTax | number | The amount tax. |
| amountWithTax | number | The amount with tax. |
| invoiceSubCategoryCode | string | The invoice sub category code. |
| userAccountCode | string | The user account code |
| ratedTransaction | array of RatedTransactionDto | The rated transactions. |
Example
{
"discountPlanItemCode" : "...",
"discountPercent" : 12345.0,
"itemNumber" : 12345,
"accountingCode" : "...",
"description" : "...",
"taxCode" : "...",
"taxPercent" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountTax" : 12345.0,
"amountWithTax" : 12345.0,
"invoiceSubCategoryCode" : "...",
"userAccountCode" : "...",
"ratedTransaction" : [ {
"usageDate" : 12345,
"unitAmountWithoutTax" : 12345.0,
"unitAmountWithTax" : 12345.0,
"unitAmountTax" : 12345.0,
"quantity" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"code" : "...",
"description" : "...",
"unityDescription" : "...",
"priceplanCode" : "...",
"doNotTriggerInvoicing" : true,
"startDate" : 12345,
"endDate" : 12345,
"parameter1" : "...",
"parameter2" : "...",
"parameter3" : "...",
"userAccountCode" : "...",
"taxCode" : "...",
"taxPercent" : 12345.0,
"invoiceSubCategoryCode" : "...",
"sellerCode" : "...",
"billingAccountCode" : "..."
}, {
"usageDate" : 12345,
"unitAmountWithoutTax" : 12345.0,
"unitAmountWithTax" : 12345.0,
"unitAmountTax" : 12345.0,
"quantity" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"code" : "...",
"description" : "...",
"unityDescription" : "...",
"priceplanCode" : "...",
"doNotTriggerInvoicing" : true,
"startDate" : 12345,
"endDate" : 12345,
"parameter1" : "...",
"parameter2" : "...",
"parameter3" : "...",
"userAccountCode" : "...",
"taxCode" : "...",
"taxPercent" : 12345.0,
"invoiceSubCategoryCode" : "...",
"sellerCode" : "...",
"billingAccountCode" : "..."
} ]
}