Charlie W

Results 19 comments of Charlie W

Tried with multiple keyfiles, including all recommendations above. Getting `Unable to process request due to missing initial state. This may happen if browser sessionStorage is inaccessible or accidentally cleared.` error...

That's not currently built into the library. You could try using the ` execute_kw(model, method, params)` method as a work around. something like: ```js await odoo.execute_kw('product.template', 'update', [ [222 ,...

@DonsWayo the "marshal none" error is actually just odoo not returning anything, which is not actually usually an error. It's because the XML RPC settings in odoo by default are...

Here is an example I did recently: ```typescript let paymentId = 0; try{ paymentId = await odoo.create("account.payment", payment); await odoo.execute_kw("account.payment", "action_post", [[paymentId]]); return paymentId; }catch(e){ if(e instanceof Error){ // Odoo...

If you would like to propose a solution I would definitely consider it.

Thanks for the suggestion, looking into this. But yeah, back when I first published the library I did some research and couldn't find any suitable replacements. Not sure if things...

I discovered a new package here: https://www.npmjs.com/package/@foxglove/xmlrpc It is meant to support one of the company's software products, but I think it would work as a general XML RPC client....

I removed some tests in version 3.1.0 that would only work on an empty odoo isntance. I believe it should work now with the instructions provided. Let me know if...

To take it a step further, there could be a threshold interest rate at which it only offers the max amount below it, but above the threshold rate there is...

you need to use the "create" action. See documentation here: https://github.com/vettloffah/odoo-await/blob/master/README.md#many2many-and-one2many-fields