write method , for Update , can any one explain these to me ??!
code :-
$models->execute_kw($db, $uid, $password,'sale.order', 'write',array(array(0), array('state'=>'sale')));
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
write method , for Update , can any one explain these to me ??!
code :-
$models->execute_kw($db, $uid, $password,'sale.order', 'write',array(array(0), array('state'=>'sale')));
$models->execute_kw($db, $uid, $password,'sale.order', 'write',array(array(0), array('state'=>'sale')));
$url = <insert server URL>; $db = <insert database name>; $username = "admin"; $password = <insert password for your admin user (default: admin)>;
'sale.order' - module that to perform action (object of module )
'write' - write method (updation)
array(array(ids), - passing record id to update
array('state'=>'sale' - updating state field to 'sale'$models->execute_kw($db, $uid, $password, 'res.partner', 'write', array(array($id), array('name'=>"Newer partner"))); // get record name after having changed it $models->execute_kw($db, $uid, $password, 'res.partner', 'name_get', array(array($id)));
Thank you ,
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
0
3月 18
|
3674 | ||
|
3
8月 17
|
5273 | ||
|
1
3月 15
|
6774 | ||
|
2
3月 15
|
9676 | ||
|
0
5月 23
|
1601 |