Details | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.document.tax;
/**
* Mutable running totals for the tax columns, accumulated line-by-line while the item table is
* rendered and read back for the total row.
*/
public class TaxTotals {
public float cgst;
public float sgst;
public float igst;
}