Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
37066 amit 1
package com.spice.profitmandi.common.document.tax;
2
 
3
/**
4
 * Mutable running totals for the tax columns, accumulated line-by-line while the item table is
5
 * rendered and read back for the total row.
6
 */
7
public class TaxTotals {
8
    public float cgst;
9
    public float sgst;
10
    public float igst;
11
}