Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
4053 Weergaven

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
Annuleer
Auteur

the problem is search criteria and i solved it

Gerelateerde posts Antwoorden Weergaven Activiteit
0
dec. 17
2965
0
jan. 16
6842
0
sep. 24
1261
1
aug. 24
9392
0
sep. 23
1238