Create a table using Json in Jasper Reports

0

I have the following JSON

[
  {
    "numCtaAnterior": "001",
    "nombre": "Gerardo",
    "meses": [
      {
        "mes": "Enero",
        "quincenas": [
          {
            "quincena": "1",
            "comision": "0.00"
          },
          {
            "quincena": "2",
            "comision": "0.00"
          }
        ]
      },
      {
        "mes": "Febrero",
        "quincenas": [
          {
            "quincena": "1",
            "comision": "0.00"
          },
          {
            "quincena": "2",
            "comision": "0.00"
          }
        ]
      }
    ]
  }
]

Is there a way in which I can generate a data table similar to this?

I'm still new using Jasper studio

    
asked by Gabriel Hernandez 15.11.2018 в 01:33
source

0 answers