Exemplo n.º 1
0
 public static Result index() {
   List<NotaFiscal> notasCompra =
       NotaFiscal.query().where().eq("tipo", ETipoOperacao.VENDA).findList();
   return ok(index.render(notasCompra));
 }