Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
6286 Widoki

I've been struggeling around with a magento-odoo-synchronization (base module by webkul) and got most of it working except tax sync. From Magento to Odoo it's done on Magento site in php...

The fields in Odoo are named taxes_id and supplier_taxes_id but when stating something like this in the product array:

For mapping have this code:

if($product->getTaxClassId() == 1){
$taxclass1 = 12;
$taxclass2 = 14;
}
if($product->getTaxClassId() == 2){
$taxclass1 = 13;
$taxclass2 = 15;
}

in the array this:

'taxes_id'=>new xmlrpcval($taxclass1, "string"),
'supplier_taxes_id'=>new xmlrpcval($taxclass2, "string"),

but nothing happens in Odoo...

Any ideas in this?

Awatar
Odrzuć
Autor

Thank you Serpent Consulting, but how do I implement that in the xmlrpcval?

Autor

so, would this be correct then? $tax1 = array(new xmlrpcval( array( new xmlrpcval(6, "int"),// 6 : id link new xmlrpcval(0, "int"), new xmlrpcval(array(new xmlrpcval($taxclass1, "int")),"array") ),"array" ) ); in the following array this: 'taxes_id'=>new xmlrpcval($tax1, "string"), Didn't get it working so far... any help appreciated

Autor

Answer can be found here: http://stackoverflow.com/questions/18851680/how-to-send-many2many-into-openerp-through-xmlrpc/21013324#21013324

Najlepsza odpowiedź

Hello,

To update the x2many(one2many/many2many) fields, you will have to follow the 3-element tuple syntax.

It is: [(6,0,[IDs])] for your case.

Thanks.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
maj 16
7899
3
mar 15
6958
1
maj 17
3557
3
sie 22
41211
1
gru 19
3855