Is there anything wrong with using AbstractModel instead of Model when I want "static class" functionality?
I've read that AbstractModels are just like Models, just without the ORM. But, I've also read that they are not meant to be used directly, which is why I am hesitant and ask this question.
My use case is this:
I'm calling Odoo functionality from PHP through XMLRPC. I'm only calling Odoo model methods which do various tasks. These Odoo models don't really need do store anything in its own db table, I just want to use their methods to do something with other models. In other languages this functionality is "static classes".