How to deal with binary field in odoo 10 by web service ripcord php to upload attachment files in ir.attachment table
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
To upload file with web service, you can convert file in base64.
You can write as following :
<?php
$url = 'your odoo url';
$db = 'your database name';
$username = 'admin';
$password = 'admin';
require_once 'ripcord/ripcord.php';
$info = ripcord::client('https://demo.odoo.com/start')->start();
$common = ripcord::client($url . '/xmlrpc/2/common');
$models = ripcord::client("$url/xmlrpc/2/object");
$b64image = base64_encode(file_get_contents('your image path'));
$uid = $common->authenticate($db, $username, $password, array());
$created_image_id = $models->execute_kw($db, $uid, $password,'ir.attachment','create',
array(
array(
'name'=>'test.png',
'datas'=> $b64image,
'datas_fname'=> 'test.png',
'res_model'=> 'res.partner',
'type'=> 'binary'
)
)
);
echo $created_image_id;
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
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 | |
---|---|---|---|---|
|
2
thg 7 20
|
27724 | ||
|
1
thg 6 23
|
3294 | ||
|
5
thg 5 23
|
15283 | ||
|
2
thg 12 23
|
5256 | ||
|
1
thg 5 22
|
2484 |