Update api_orders.class.php

This commit is contained in:
Laurent Destailleur 2019-10-20 13:40:18 +02:00 committed by GitHub
parent 875918c8a7
commit 54b7886331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,24 +103,6 @@ class Orders extends DolibarrApi
return $this->_fetch('', '', $ref_ext, '', $contact_list);
}
/**
* Get properties of an order object by ref_int
*
* Return an array with order informations
*
* @param string $ref_int Internal reference of object
* @param int $contact_list 0: Returned array of contacts/addresses contains all properties, 1: Return array contains just id
* @return array|mixed data without useless information
*
* @url GET byRefInt/{ref_int}
*
* @throws RestException
*/
public function getByRefInt($ref_int, $contact_list = 1)
{
return $this->_fetch('', '', '', $ref_int, $contact_list);
}
/**
* Get properties of an order object
*