Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@JsonPropertyOrder( {
"invoiceId", "subscriptionId", "product", "distributor", "reseller", "vendor", "customer", "email", "address",
"fiscalCode", "taxCode", "purchased", "lineId", "type", "description", "quantity", "vendorIncome", "cloudCosts",
"wholesale"
"wholesale", "sellin", "sellout"
} )
public class ParentProceedsCsvDTO extends CustomerDetailsProceedsCsvDTO
{
Expand All @@ -21,6 +21,10 @@ public class ParentProceedsCsvDTO extends CustomerDetailsProceedsCsvDTO

private BigDecimal wholesale;

private BigDecimal sellin;

private BigDecimal sellout;

// region Auto-generated codess
public String getDistributor()
{
Expand Down Expand Up @@ -71,5 +75,25 @@ public void setWholesale( BigDecimal wholesale )
{
this.wholesale = wholesale;
}

public BigDecimal getSellin()
{
return sellin;
}

public void setSellin( BigDecimal sellin )
{
this.sellin = sellin;
}

public BigDecimal getSellout()
{
return sellout;
}

public void setSellout( BigDecimal sellout )
{
this.sellout = sellout;
}
// endregion
}