export interface EntryTotals {
  totalPrice: number;
  revenue: number;
  commission: number;
  margin: number;
  profit: number;
}
