Ok. I found a simple solution to convert Scientific Notation To Decimal Notation.
I used ExecuteScript processor and i writed a simple script in JavaScript .
The code is below:
var flowFile = session.get();
if (flowFile != null) {
var date = flowFile.getAttribute('date');
var valueDate= Number(date);
flowFile = session.putAttribute(flowFile, 'date', valueDate);
}
session.transfer(flowFile, REL_SUCCESS)