taxesLogic = new TaxesLogic(tax.getTaxList());
TicketInfo obj = ticket.getTicket(ticketId);
ProductInfo productObj = product.findProductById(productId);
TicketLineInfo line = new TicketLineInfo(productObj, productObj.getPriceSell(), taxesLogic.getTaxInfo(productObj.getTaxcat()));
obj.addLine(line);
ticket.updateTicket(ticketId, obj);
refreshTax(obj);
}
public void updateLineFromTicket(String ticketId, TicketInfo aticket) {