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 ,
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
0
mar 18
|
3658 | ||
|
3
ago 17
|
5267 | ||
|
1
mar 15
|
6767 | ||
|
2
mar 15
|
9669 | ||
|
0
may 23
|
1592 |