Hi,
I woud like to create a product in Odoo v8 via the API and PHP. Is there a tutorial out there on how to do that? I did not find anything in the forum or on google.
Thanks,
Michael
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
I woud like to create a product in Odoo v8 via the API and PHP. Is there a tutorial out there on how to do that? I did not find anything in the forum or on google.
Thanks,
Michael
You need to convert image data to base64
Ok i guess i was too impatient. Here is my solution:
<?php
require_once('ripcord.php');
$url = "http://yourodooserver.com";
$db = "yourodoodb";
$username = "youradminuser";
$password = "youradminpw";
$common = ripcord::client("$url/xmlrpc/2/common");
$uid = $common->authenticate($db, $username, $password, array());
$models = ripcord::client("$url/xmlrpc/2/object");
$im = file_get_contents('asdf.jpg');
$imdata = base64_encode($im);
// Product creation
$product_id = $models->execute_kw($db, $uid, $password,
'product.product', 'create',
array(
array(
'default_code'=>"test_default_code",
'name'=>"test_name",
'list_price'=>"100",
'image'=>$imdata,
)
)
);
?>
But I still need help, how can I also add an image to the product?
Thanks,
Michael
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 4 18
|
6691 | ||
|
1
thg 8 25
|
394 | ||
|
2
thg 7 25
|
2833 | ||
|
3
thg 7 25
|
638 | ||
|
1
thg 6 25
|
2109 |