In db the field is type decimal and is saved like this 0.5
In Entity the field
/** @ORM\Column(name="precio_x_ticket", type="decimal", scale=2) */
In FormType the field is configure like this
->add('precio_x_ticket','money', array(
//'grouping' => true,
'currency' => false,
'label' => 'Precio por ticket',
))
When saving from the form I can save numbers like in this format 0.5 or 0,5 but after saving the number always return this format 0,5 and I wanted to show it like 0.5
My locale is es
Any idea how to solve this using just symfony2.5?