I made my comments, I kindly ask you to find it below, this can help in your case.
: , .
ODOO fields_get, , .
, list of all the field res.partner.
ODOO fields_get .
require_once('ripcord-master/ripcord.php');
$url = "http://localhost:8059";
$db ="ripcord_test_db";
$username = "prakasharmacs24@gmail.com";
$password = "7959884833";
$common = ripcord::client("$url/xmlrpc/2/common");
$uid = $common->authenticate($db, $username, $password, array());
echo $uid;
$models = ripcord::client("$url/xmlrpc/2/object");
$partner_field = array();
$partner_field=$models->execute_kw($db, $uid, $password,
'res.partner', 'fields_get',array(),
array('attributes' => array('string', 'help', 'type')));
.
, print_r($partner_field);
, .
, .
:
function getfieldtype($field){
return $field['type'];
}
print_r(array_map("getfieldtype",$partner_field));
, .