obuchmann / odoo-jsonrpc

PHP Odoo Json-RPC connector, prepared for laravel integration
MIT License
34 stars 11 forks source link

Update Odoo.php #16

Closed MElkmeshi closed 1 month ago

MElkmeshi commented 1 month ago

add a way I can send like $odoo->callOdooMethod($odoo, 'account.payment', 'action_post', [[42564]]); just like await odoo.action('account.move', 'action_post', [126996, 126995]); in https://github.com/fernandoslim/odoo-jsonrpc

obuchmann commented 1 month ago

Nice idea, i made some improvements and added a test for this. see this commit

The latest release v1.6.0 covers your Idea but i called it "executeKw" because thats the base odoo naming for the base rpc call.

MElkmeshi commented 1 month ago

Thaank You!!