Hi, everyone,
Here my requirement is let different user has their own calculation formula.
As different country has diff business logic.
For example,
Table:
ID,
Name,
Period,
Insurance,
Tax,
Discount,
Price
Country A user: Price = Period*3*Tax + Insurance
Country B user: Price = Period*Discount + Tax
How can I let user to define their own formula and do the calculation?
Regards,