Hi, I build sale module, it has some fields in numeric(12, 5). I can't use float(inadequate accuracy) or currency(save with currency symbol). How I do? Should add numeric type. Thanks
No support for native Numeric type in the RB. You could try to define it as a float number, then change it's type in the database to numeric or just varchar. I'm not sure is this going to work. On the other hand you can add a text field in the RB and define qffield callback to Utils_RecordBrowserCommon::QFfield_float - actually it creates a text field and adds a QuickForm rule to force numeric format.
Thank for your reply. Database applications need many field types to meet complex business requirement. Today, I spend only two hours to add many types: numeric, bigint,... . EPESI help me more and easy. Why EPESI not support more than types?