Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
4190 Ansichten

hi am trying to read data from odoo using php xmlrpc and i don't know which are the arguments (parameters ) that report.pos.order takes 

my example :

<?php

$url = 'http://262930-10-0-6fa705.runbot13.odoo.com';

$db = '262930-10-0-6fa705-all';

$username = 'admin';

$password = 'admin';

require_once('ripcord/ripcord.php');

$common = ripcord::client($url.'/xmlrpc/2/common');

$uid = $common->authenticate($db, $username, $password, array());

$models = ripcord::client("$url/xmlrpc/2/object");

$result = $models->execute_kw(

    $db,

    $uid,

    $password,

    'report.pos.order',

    'read',

    array( )

          );

echo('RESULT:<br/>');

foreach ($results as $result) {

    echo $result.'<br/>';

}

?>

Avatar
Verwerfen
Autor

the problem is search criteria and i solved it

Verknüpfte Beiträge Antworten Ansichten Aktivität
0
Dez. 17
3106
0
Jan. 16
7016
0
Sept. 24
1422
1
Aug. 24
9590
0
Sept. 23
1338