Examples of Venda


Examples of com.loja.model.Venda

    this.record();
    ItemVenda itemVenda = new ItemVenda();
    itemVenda.setProduto(produtoSalvo);
    itemVenda.setQtde(new BigDecimal(900.00));
   
    Venda venda = new Venda();
    venda.setColaborador(colaboradorSalvo);
    venda.setData(new Date());
    venda.setCliente(clienteSalvo);
    vendaService.setVenda(venda);
    vendaService.getVenda().adicionaProduto(itemVenda);
    vendaService.save();
    vendaService.setVenda(vendaSalva);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.