Skip to content

Instantly share code, notes, and snippets.

@jdmr
Created January 23, 2012 22:51
Show Gist options
  • Select an option

  • Save jdmr/1666039 to your computer and use it in GitHub Desktop.

Select an option

Save jdmr/1666039 to your computer and use it in GitHub Desktop.
ProductoController
def nuevo() {
def producto = new Producto(params)
producto.iva = new BigDecimal(params.iva)
producto.save()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment